/* ==========================================================================
   DARSHITECT SKEUOMORPHIC DESIGN SYSTEM
   Visual Identity: Digital Architecture + Tactile Physical Hardware
   Colors: Deep Charcoal, Silver, Brand Purple (#8c2bb3)
   ========================================================================== */

/* --- GOOGLE FONTS IMPORTED IN HTML --- */

/* --- CORE CUSTOM VARIABLES --- */
:root {
    /* Color Palette */
    --bg-base: #08090b;          /* Darkest charcoal base */
    --bg-panel-raised: #12141a;  /* Raised skeuomorphic surface */
    --bg-panel-recessed: #0a0b0e;/* Sunk skeuomorphic cavity */
    --bg-header: rgba(10, 11, 14, 0.85);
    
    --accent: #8c2bb3;           /* Primary brand script purple */
    --accent-glow: rgba(140, 43, 179, 0.4);
    --accent-light: #b55fe6;     /* Highlight purple for hover states */
    
    --led-green: #22c55e;
    --led-green-glow: rgba(34, 197, 94, 0.5);
    --led-red: #ef4444;
    
    /* Font Colors */
    --text-primary: #e2e8f0;     /* Crisp light silver */
    --text-muted: #8e9cae;        /* Mid-toned slate grey */
    --text-dark: #475569;        /* Sunk labels and borders */
    
    /* Bevels & Highlights */
    --border-highlight: rgba(255, 255, 255, 0.05); /* Highlight line at the top-left of raised panels */
    --border-shadow: rgba(0, 0, 0, 0.5);           /* Shadow line at the bottom-right of panels */
    --border-flat: #1f232d;                         /* Direct border color */
    
    /* Animations */
    --transition-fast: 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- BASE RESETS & SCROLLBAR --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

/* Custom Tactile Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--bg-panel-recessed);
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.8);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #252834, #171921);
    border: 1px solid #2e3242;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #323747, #1e212b);
}

/* Anchor Links Reset */
a {
    color: inherit;
    text-decoration: none;
}

/* Generic Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
    position: relative;
    z-index: 2;
}

/* --- MONOSPACE LABEL SYSTEMS (Architectural Blueprint Style) --- */
.mono-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mono-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.mono-section-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--accent-light);
    display: block;
    margin-bottom: 12px;
}

/* --- AMBIENT GLOW EFFECTS --- */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.bg-glow-purple {
    width: 600px;
    height: 600px;
    background-color: var(--accent);
    top: -100px;
    right: -100px;
}

.bg-glow-silver {
    width: 500px;
    height: 500px;
    background-color: #64748b;
    bottom: -100px;
    left: -100px;
}

/* ==========================================================================
   SKEUOMORPHIC STYLING UTILITIES (THE ENGINE CORE)
   ========================================================================== */

/* 1. Raised Physical Card/Panel */
.skeuo-card-raised {
    background: linear-gradient(145deg, #161821, #0f1014);
    border: 1px solid var(--border-flat);
    border-radius: 12px;
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.65), 
        -4px -4px 16px rgba(255, 255, 255, 0.015),
        inset 1px 1px 0px rgba(255, 255, 255, 0.05), 
        inset -1px -1px 0px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.skeuo-card-raised:hover {
    transform: translateY(-2px);
    box-shadow: 
        16px 16px 32px rgba(0, 0, 0, 0.75), 
        -4px -4px 16px rgba(255, 255, 255, 0.02),
        inset 1px 1px 0px rgba(255, 255, 255, 0.08), 
        inset -1px -1px 0px rgba(0, 0, 0, 0.3);
}

/* 2. Recessed Physically Countersunk Cavity */
.skeuo-panel-recessed {
    background-color: var(--bg-panel-recessed);
    border: 1px solid #14161d;
    border-radius: 8px;
    box-shadow: 
        inset 3px 3px 8px rgba(0, 0, 0, 0.85),
        inset -1px -1px 2px rgba(255, 255, 255, 0.02),
        1px 1px 1px rgba(255, 255, 255, 0.03);
}

/* 3. Tactile Action Button */
.skeuo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
    user-select: none;
    transition: all var(--transition-fast);
    outline: none;
    border: none;
    text-transform: uppercase;
    font-family: 'Share Tech Mono', monospace;
}

.btn-inner {
    padding: 12px 24px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid transparent;
}

/* Tactile Button Colors: Primary Raised */
.btn-primary {
    background: linear-gradient(180deg, #252834, #15171d);
    border: 1px solid var(--border-flat);
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.5), 
        inset 1px 1px 0px rgba(255, 255, 255, 0.08),
        inset -1px -1px 0px rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
}

.btn-primary .btn-inner {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-primary:hover {
    border-color: #2b303d;
    background: linear-gradient(180deg, #2a2e3b, #191c23);
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.6), 
        inset 1px 1px 0px rgba(255, 255, 255, 0.12),
        inset -1px -1px 0px rgba(0, 0, 0, 0.3);
}

/* Mechanical Travel (Button Pressed state) */
.btn-primary:active, 
.btn-primary.active {
    transform: translate(1px, 1px);
    background: linear-gradient(180deg, #0e1014, #15171d);
    box-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.8), 
        inset 2px 2px 4px rgba(0, 0, 0, 0.7),
        inset -1px -1px 1px rgba(255, 255, 255, 0.02);
}

/* Secondary Button (Sunk Frame look) */
.btn-secondary {
    background-color: var(--bg-panel-recessed);
    border: 1px solid #14171f;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.8),
        1px 1px 1px rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--border-flat);
    box-shadow: 
        inset 1px 1px 2px rgba(0, 0, 0, 0.9),
        1px 1px 2px rgba(255, 255, 255, 0.05);
}

.btn-secondary:active {
    background-color: #06070a;
}

/* Premium Purple Backlight Glowing Button */
.btn-accent-glow {
    background: linear-gradient(180deg, #a855f7, #6b21a8);
    border: 1px solid #7e22ce;
    box-shadow: 
        0px 4px 16px rgba(140, 43, 179, 0.35),
        inset 1px 1px 1px rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.btn-accent-glow:hover {
    background: linear-gradient(180deg, #b55fe6, #7a22cf);
    box-shadow: 
        0px 6px 20px rgba(140, 43, 179, 0.5),
        inset 1px 1px 1px rgba(255, 255, 255, 0.35);
}

.btn-accent-glow:active {
    transform: translate(1px, 1px);
    background: linear-gradient(180deg, #581c87, #7e22ce);
    box-shadow: 
        0px 2px 6px rgba(140, 43, 179, 0.3),
        inset 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Button Sizing */
.btn-large {
    font-size: 1rem;
}
.btn-large .btn-inner {
    padding: 16px 36px;
}
.btn-full {
    width: 100%;
}
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.btn-icon .btn-inner {
    padding: 0;
}

/* 4. Physical LED Glow Indicators */
.led-indicator, .led-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: #3b3f4c;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Active LED colors */
.lit-green, .status-led-pulse-green {
    background-color: var(--led-green);
    box-shadow: 
        0 0 8px var(--led-green),
        inset 1px 1px 1px rgba(255, 255, 255, 0.5);
}

.lit-purple {
    background-color: #b55fe6;
    box-shadow: 
        0 0 8px #b55fe6,
        inset 1px 1px 1px rgba(255, 255, 255, 0.5);
}

/* Pulsing LEDs */
.pulse-purple {
    background-color: #a855f7;
    animation: pulse-purple-anim 2s infinite;
}

@keyframes pulse-purple-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7), inset 1px 1px 1px rgba(255, 255, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(168, 85, 247, 0), inset 1px 1px 1px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0), inset 1px 1px 1px rgba(255, 255, 255, 0.5);
    }
}

.status-led-pulse-green {
    animation: pulse-green-anim 2.5s infinite;
}

@keyframes pulse-green-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7), inset 1px 1px 1px rgba(255, 255, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0), inset 1px 1px 1px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0), inset 1px 1px 1px rgba(255, 255, 255, 0.5);
    }
}

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 24px;
    pointer-events: none; /* Make overlay container click-through */
}

.navbar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    pointer-events: auto; /* Re-enable clicks for navbar */
    transition: all var(--transition-smooth);
}

.skeuo-panel-navbar {
    background: var(--bg-header);
    border: 1px solid var(--border-flat);
    border-radius: 40px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 1px 1px 0px rgba(255, 255, 255, 0.05),
        inset -1px -1px 0px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

/* Brand Logo (Playball/Pacifico text style that matches user's script logo) */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 24px;
}

.logo-script {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #e9d5ff 0%, var(--accent) 70%, #6b21a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
}

/* Navigation Menu Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.nav-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    transition: all var(--transition-fast);
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-item:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.02);
}

.nav-item.active {
    color: var(--text-primary);
    background: linear-gradient(180deg, #1b1d24, #0f1014);
    box-shadow: 
        inset 1px 1px 3px rgba(0, 0, 0, 0.8),
        1px 1px 0 rgba(255, 255, 255, 0.03);
}

/* Hamburger toggle for mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-smooth);
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Hamburger active transform script */
.hamburger-menu.active .hamburger-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger-menu.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .hamburger-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile drawer panel */
.mobile-nav-drawer {
    position: absolute;
    top: 96px;
    right: 24px;
    width: calc(100% - 48px);
    max-width: 360px;
    padding: 24px;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    pointer-events: none;
    transition: all var(--transition-smooth);
    z-index: 999;
}

.mobile-nav-drawer.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-item {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: 8px;
    transition: all var(--transition-fast);
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
}

.mobile-nav-item:hover, .mobile-nav-item:active {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
}

.mobile-cta-link {
    color: var(--accent-light);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 8px;
    padding-top: 16px;
}

/* ==========================================================================
   1. HERO SECTION & WORKSTATION MOCK
   ========================================================================== */
.hero-section {
    padding-top: 140px; /* Offset fixed header */
    padding-bottom: 96px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Status Badge layout */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.text-accent-gradient {
    background: linear-gradient(90deg, #d8b4fe, var(--accent) 80%, #6b21a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
}

.credibility-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    width: 100%;
    color: var(--text-muted);
}

.bullet-dot {
    color: var(--accent);
}

/* --- THE DIGITAL WORKSTATION CONTAINER --- */
.hero-visual {
    width: 100%;
}

.workstation-frame {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #1b1e26, #0e1014);
}

.workstation-header {
    height: 48px;
    background-color: #12141a;
    border-bottom: 1px solid #1c1e26;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: inset 1px 1px 1px rgba(0,0,0,0.5);
}
.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.window-title {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    border-radius: 12px;
    width: 200px;
    justify-content: center;
}

.lock-icon {
    color: var(--text-muted);
    display: flex;
}

.window-url {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: 'Share Tech Mono', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Device select toggles on window */
.device-selectors {
    display: flex;
    padding: 2px;
    border-radius: 6px;
}

.device-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 4px 6px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.device-btn:hover {
    color: var(--text-muted);
}

.device-btn.active {
    color: var(--accent-light);
    background-color: #181b22;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Viewport content */
.workstation-viewport {
    height: 320px;
    margin: 16px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    width: 100%;
    height: 100%;
    background-color: #101216;
    color: #e2e8f0;
    padding: 16px;
    font-size: 0.75rem;
    overflow-y: auto;
    transition: all var(--transition-smooth);
}

/* Desktop display styles inside viewport */
.screen-content.desktop-view {
    max-width: 100%;
}

.screen-content.tablet-view {
    max-width: 320px;
    margin: 0 auto;
    border-left: 1px solid #1e293b;
    border-right: 1px solid #1e293b;
}

.screen-content.mobile-view {
    max-width: 200px;
    margin: 0 auto;
    border-left: 1px solid #1e293b;
    border-right: 1px solid #1e293b;
}

/* Mock Web Content Styles */
.mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
    margin-bottom: 16px;
}
.mock-logo {
    font-weight: 700;
    color: #c084fc;
}
.mock-links {
    display: flex;
    gap: 8px;
    color: #94a3b8;
}
.mock-links span {
    font-size: 0.6rem;
}
.mock-cta {
    background-color: #7e22ce;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.55rem;
    color: #fff;
}

.mock-hero {
    text-align: center;
    margin-bottom: 16px;
    padding: 12px 8px;
    background-color: rgba(255,255,255,0.01);
    border-radius: 8px;
}
.mock-badge {
    display: inline-block;
    font-size: 0.55rem;
    padding: 2px 6px;
    background-color: rgba(126,34,206,0.15);
    color: #c084fc;
    border-radius: 10px;
    margin-bottom: 8px;
}
.mock-hero h3 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 6px;
}
.mock-hero p {
    font-size: 0.6rem;
    color: #94a3b8;
    margin-bottom: 8px;
}
.mock-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.mock-btn-primary {
    background-color: #7e22ce;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.55rem;
    cursor: pointer;
}
.mock-btn-wa {
    border: 1px solid rgba(255,255,255,0.1);
    color: #e2e8f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.55rem;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}
.mock-card {
    background-color: #161a22;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 8px;
    border-radius: 6px;
}
.mock-card h4 {
    font-size: 0.7rem;
    margin: 4px 0 2px;
}
.mock-card p {
    font-size: 0.55rem;
    color: #94a3b8;
}

.mock-location {
    display: flex;
    gap: 12px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
}
.mock-map {
    width: 60px;
    height: 45px;
    background-color: #1e293b;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.mock-map .map-pin {
    font-size: 0.8rem;
    z-index: 2;
}
.mock-map .mono-label {
    font-size: 0.35rem;
    position: absolute;
    bottom: 2px;
    color: #64748b;
    width: 100%;
    text-align: center;
}
.mock-address h5 {
    font-size: 0.65rem;
}
.mock-address p {
    font-size: 0.55rem;
    color: #94a3b8;
}

/* System Controls underneath viewport */
.workstation-footer {
    height: 60px;
    border-top: 1px solid #1c1e26;
    background-color: #101216;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.panel-dial-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.panel-dial-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    color: var(--text-dark);
}

.panel-gauge {
    width: 130px;
    height: 18px;
    position: relative;
    overflow: hidden;
    padding: 2px;
}

.gauge-bar {
    height: 100%;
    background: linear-gradient(90deg, #6b21a8, #a855f7);
    border-radius: 4px;
    box-shadow: 0 0 4px var(--accent);
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    color: #fff;
    white-space: nowrap;
    text-shadow: 1px 1px 1px #000;
}

.status-indicator-group {
    display: flex;
    gap: 12px;
}

.status-led-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tiny-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.55rem;
    color: var(--text-muted);
}

/* ==========================================================================
   2. WHAT WE DO (SERVICES)
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
}

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

.service-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.service-icon-box svg {
    color: var(--text-muted);
}

.icon-accent {
    color: var(--accent-light) !important;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    width: 100%;
}

.bullet-item {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.card-footer-cta {
    margin-top: auto;
    width: 100%;
}

.card-footer-cta .skeuo-btn {
    width: 100%;
}

/* Prominent Healthcare Service Card Layout overrides */
.featured-service {
    grid-column: span 2;
    border-color: rgba(140, 43, 179, 0.25);
    background: linear-gradient(145deg, #1d1726, #0e0d11);
    position: relative;
}

.featured-service:hover {
    border-color: rgba(140, 43, 179, 0.4);
}

/* Custom indicator edge glow */
.card-edge-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #d8b4fe);
    border-radius: 12px 12px 0 0;
}

.badge-featured {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 12px;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    padding: 20px;
    width: 100%;
    margin-bottom: 28px;
}

.feature-tag {
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-tag .bullet-dot {
    font-size: 0.8rem;
}

/* ==========================================================================
   3. WHY DARSHITECT (VALUES)
   ========================================================================== */
.values-section {
    border-radius: 24px;
    margin: 48px auto;
    padding: 80px 24px;
    max-width: calc(100% - 48px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 150px);
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
}

/* Make value cards look like physical plates */
.value-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.value-index-label {
    color: var(--accent-light);
    margin-bottom: 16px;
    display: block;
}

.value-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.value-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Overriding grid columns for values so they flow nice */
.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

/* ==========================================================================
   4. HOW IT WORKS (PROCESS)
   ========================================================================== */
.process-interactive-panel {
    background: linear-gradient(180deg, #171922, #0d0f14);
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.process-controls-row {
    display: flex;
    align-items: center;
    padding: 6px;
    margin-bottom: 16px;
}

.process-step-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.process-step-btn .step-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.process-step-btn .step-name {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.process-step-btn:hover {
    color: var(--text-primary);
}

/* Switch Button Active State */
.process-step-btn.active {
    color: var(--text-primary);
    background: linear-gradient(180deg, #222530, #13151c);
    box-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.4),
        inset 1px 1px 0px rgba(255, 255, 255, 0.05),
        inset -1px -1px 0px rgba(0, 0, 0, 0.3);
}

.process-step-btn.active .step-num {
    color: var(--accent-light);
}

.control-divider {
    width: 1px;
    height: 24px;
    background-color: #1c202d;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.02);
}

/* Detail Display Frame */
.process-details-viewport {
    min-height: 200px;
    padding: 40px;
}

.step-detail-card {
    display: none;
    align-items: center;
    gap: 40px;
}

.step-detail-card.active {
    display: flex;
}

.step-graphics {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #1b1e28, #10121a);
    border: 1px solid var(--border-flat);
    border-radius: 20px;
    box-shadow: 
        inset 1px 1px 0 rgba(255, 255, 255, 0.05),
        8px 8px 16px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.step-icon-big {
    font-size: 2.2rem;
}

.led-indicator-group {
    display: flex;
    gap: 4px;
}

.led-dot.dark {
    background-color: #1e2230;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.6);
}

.step-text-content {
    flex: 1;
}

.step-indicator-tag {
    color: var(--accent-light);
    margin-bottom: 8px;
    display: block;
}

.step-text-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.step-paragraph {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Banner alignment */
.process-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px dashed var(--border-flat);
    border-radius: 12px;
}

.banner-text {
    font-size: 1rem;
    color: var(--text-primary);
}

/* ==========================================================================
   5. FEATURED WORK / DEMO CONCEPTS
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 24px;
}

.portfolio-card {
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.portfolio-visual-slot {
    width: 100%;
    margin-bottom: 20px;
}

.concept-board {
    height: 200px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.board-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.font-xs {
    font-size: 0.6rem !important;
}

.board-preview-sketch {
    text-align: center;
    margin: auto 0;
}

.sketch-icon {
    font-size: 2rem;
    margin-bottom: 6px;
    display: block;
}

.sketch-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.sketch-wireframe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.wire-block {
    height: 3px;
    background-color: #1e2230;
    border-radius: 2px;
}

.portfolio-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.concept-tag {
    color: var(--accent-light);
}

.concept-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.concept-summary {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    min-height: 68px;
}

/* LIGHTBOX / PREVIEW MODAL STYLING */
.concept-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 5, 6, 0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.concept-modal-overlay.active {
    display: flex;
}

.concept-modal {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-flat);
}

.modal-header h3 {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-family: 'Share Tech Mono', monospace;
    color: var(--text-primary);
}

.modal-close-btn {
    border-radius: 50%;
}

.modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
    margin: 20px;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-flat);
    display: flex;
    justify-content: flex-end;
}

/* Modal inside structural layout mock components */
.modal-concept-desc {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.modal-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.modal-feat-item {
    background-color: rgba(255,255,255,0.01);
    border: 1px solid #1c202a;
    border-radius: 6px;
    padding: 12px;
}

.modal-feat-item h5 {
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--accent-light);
}

.modal-feat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.preview-mock-screen-panel {
    border-radius: 8px;
    padding: 16px;
    background-color: #101216;
}

/* ==========================================================================
   6. WEBSITE FEATURES (TACTILE DASHBOARD)
   ========================================================================== */
.features-dashboard {
    width: 100%;
    padding: 16px;
    background: linear-gradient(180deg, #191b24, #0e0f14);
}

.dashboard-header-bar {
    height: 48px;
    background-color: #101217;
    border: 1px solid var(--border-flat);
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator-glow {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.pulse-green {
    background-color: var(--led-green);
    animation: pulse-green-anim 1.8s infinite;
}

.status-readout {
    color: var(--text-muted);
}

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

/* Skeuomorphic Switches */
.dashboard-switch-item {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.switch-ui {
    width: 44px;
    height: 24px;
    background-color: #13151c;
    border: 1px solid #1f232e;
    border-radius: 12px;
    position: relative;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.8);
    transition: background-color var(--transition-fast);
    flex-shrink: 0;
}

.switch-nob {
    width: 16px;
    height: 16px;
    background: linear-gradient(180deg, #2b303e, #181a22);
    border: 1px solid #363d4e;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    transition: transform var(--transition-fast);
}

.dashboard-switch-item.active .switch-ui {
    background-color: var(--accent);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.3);
}

.dashboard-switch-item.active .switch-nob {
    transform: translateX(20px);
    background: linear-gradient(180deg, #ffffff, #d8b4fe);
    border-color: #c084fc;
}

.switch-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.switch-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   7. SIMPLE PRICING POSITIONING
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 24px;
}

.pricing-card {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-top-tag {
    color: var(--text-dark);
    display: block;
    margin-bottom: 12px;
}

.pricing-tier-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-tier-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    min-height: 48px;
}

.pricing-rate-box {
    padding: 16px 20px;
    margin: 24px 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.rate-prefix {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
}

.rate-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Share Tech Mono', monospace;
}

.text-size-medium {
    font-size: 1.4rem !important;
}

.pricing-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    width: 100%;
}

.price-bullet {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.pricing-action-btn {
    margin-top: auto;
    width: 100%;
}

/* Recommended Pricing Override layout */
.featured-pricing {
    border-color: rgba(140, 43, 179, 0.25);
    background: linear-gradient(185deg, #1c1626, #0f0d12);
}

.featured-pricing .badge-featured {
    top: 24px;
    right: 24px;
}

/* ==========================================================================
   8. ABOUT DARSHITECT
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    width: 100%;
}

.portrait-skeuo-frame {
    padding: 12px;
    max-width: 320px;
    margin: 0 auto;
}

.portrait-slot {
    padding: 16px;
    background-color: #0b0c0f;
}

/* ID Badge styling */
.mock-id-badge {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}

.badge-logo-mark {
    font-family: 'Pacifico', cursive;
    color: var(--accent-light);
    font-size: 1.1rem;
}

.portrait-avatar-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: #12141a;
    border: 1px solid var(--border-flat);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-svg {
    width: 100%;
    height: 100%;
}

.badge-footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-dark);
    letter-spacing: 0.1em;
}

.badge-name {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.badge-id {
    font-size: 0.6rem !important;
    color: var(--text-muted);
}

/* About text content */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-p {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.signature-block {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.founder-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   9. FINAL CTA PANEL
   ========================================================================== */
.final-cta-section {
    padding: 0;
}

.final-cta-wrapper {
    padding: 48px 24px;
}

.cta-inner-panel {
    width: 100%;
    padding: 80px 48px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bg-glow-panel {
    width: 400px;
    height: 400px;
    background-color: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content .mono-label {
    color: var(--accent-light);
    display: block;
    margin-bottom: 20px;
}

.cta-headline {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.cta-subtext {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   10. CONTACT SECTION & DIRECT ENTRIES
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-subtext {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.direct-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
}

.interactive-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    background-color: var(--bg-panel-recessed);
    border: 1px solid var(--border-flat);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.muted-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.text-green {
    color: #22c55e;
}

/* --- THE SKEUOMORPHIC FORM PANEL --- */
.contact-form-panel {
    padding: 32px;
    position: relative;
    overflow: hidden;
}

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

.skeuo-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group .mono-label {
    color: var(--text-muted);
}

.input-wrapper {
    width: 100%;
    padding: 2px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-primary);
    border-radius: 7px;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-dark);
}

/* Custom Dropdown/Select design overrides */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-color: var(--bg-panel-recessed);
}

.select-wrapper::after {
    content: "▼";
    font-size: 0.6rem;
    color: var(--text-muted);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-actions-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    margin-top: 12px;
}

/* Success Overlay window inside form */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-panel-recessed);
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: 12px;
}

.form-success-overlay.active {
    display: flex;
}

.success-card {
    text-align: center;
    padding: 32px 24px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    background-color: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--led-green);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.success-card h3 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.success-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.success-card .skeuo-btn {
    width: 100%;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer-container {
    padding: 64px 24px 32px;
    border-radius: 24px 24px 0 0;
    max-width: 100%;
    margin-top: 64px;
    border-bottom: none;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    font-size: 2rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-motto-plate {
    padding: 8px 16px;
    border-radius: 12px;
}

.footer-motto-plate .mono-label {
    font-size: 0.6rem !important;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section-title {
    color: var(--text-dark);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-contact-col a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 24px;
    color: var(--text-dark);
}

.bottom-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 0.75rem;
}

.system-status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.system-status-indicator .mono-label {
    color: var(--text-dark);
    font-size: 0.65rem;
}

/* ==========================================================================
   MEDIA QUERIES & RESPONSIVE LAYOUTS
   ========================================================================== */

/* Desktop Narrow & Tablet Landscape (under 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        gap: 32px;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-service {
        grid-column: span 2;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1.5fr 1.5fr;
        justify-content: center;
        gap: 20px;
    }
    
    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* Tablet Portrait (under 768px) */
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .credibility-divider {
        justify-content: center;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 32px;
    }
    
    /* Show Hamburger Menu Toggle */
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links, .nav-cta-wrapper {
        display: none; /* Hide desktop links */
    }
    
    .navbar-wrapper {
        padding: 0 20px;
    }
    
    .process-step-btn .step-name {
        display: none; /* Save space on steps list */
    }
    
    .step-detail-card {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .step-text-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile Screens (under 480px) */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .navbar-container {
        padding: 8px 12px;
    }
    
    .navbar-wrapper {
        height: 60px;
    }
    
    .window-title {
        display: none !important; /* Hide URL bar on mobile to fit the screen */
    }
    
    .workstation-header {
        justify-content: space-between;
    }
    
    .workstation-frame {
        max-width: 100%;
    }
    
    .workstation-viewport {
        margin: 8px; /* Reduce viewport margins on mobile */
    }
    
    .theme-switch-label-sys {
        display: none !important; /* Hide the text "MODE" next to switch on mobile to save space */
    }
    
    .status-indicator-group .tiny-label {
        display: none !important; /* Hide status text on small mobile screens to prevent overflow */
    }
    
    .workstation-footer {
        padding: 0 8px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subtext {
        font-size: 0.95rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .skeuo-btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-service {
        grid-column: span 1;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card:last-child {
        grid-column: span 1;
    }
    
    .contact-form-panel {
        padding: 20px 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .bottom-bar-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .process-controls-row {
        gap: 4px;
    }
    
    .process-step-btn {
        padding: 10px 8px;
    }
    
    .process-step-btn .step-num {
        font-size: 0.95rem;
    }
    
    .process-cta-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-inner-panel {
        padding: 48px 24px;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .cta-buttons-group .skeuo-btn {
        width: 100%;
    }
}

/* ==========================================================================
   PORTRAIT PHOTOGRAPH STYLES
   ========================================================================== */
.portrait-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-flat);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.4);
}

/* ==========================================================================
   THEME SWITCHER LAYOUTS
   ========================================================================== */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 12px;
}

.theme-switch-container {
    height: 28px;
    width: 96px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    cursor: pointer;
    border-radius: 14px;
    user-select: none;
    transition: all var(--transition-smooth);
}

.theme-switch-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    height: 22px;
    width: 44px;
    background: linear-gradient(180deg, #252834, #15171d);
    border: 1px solid var(--border-flat);
    border-radius: 11px;
    transition: transform var(--transition-smooth), background var(--transition-smooth);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.theme-switch-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-dark);
    z-index: 2;
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.theme-switch-label.active {
    color: #ffffff;
}

/* ==========================================================================
   LIGHT MODE DESIGN SYSTEM VARIABLES & OVERRIDES
   ========================================================================== */
body.light-theme {
    /* Base Overrides */
    --bg-base: #e6ebf0;
    --bg-panel-raised: #f0f4f8;
    --bg-panel-recessed: #dae2ea;
    --bg-header: rgba(230, 235, 241, 0.9);
    
    --accent: #8c2bb3;
    --accent-glow: rgba(140, 43, 179, 0.15);
    --accent-light: #7e22ce;
    
    --text-primary: #1e293b;
    --text-muted: #475569;
    --text-dark: #64748b;
    
    --border-highlight: rgba(255, 255, 255, 0.95);
    --border-shadow: rgba(165, 180, 200, 0.45);
    --border-flat: #cad4df;
}

/* Light Theme Skeuomorphic Shadow Adjustments */
body.light-theme .skeuo-card-raised {
    background: linear-gradient(145deg, #f5f8fa, #edf2f6);
    border-color: #cbd5e1;
    box-shadow: 
        8px 8px 20px rgba(160, 175, 192, 0.5), 
        -6px -6px 15px rgba(255, 255, 255, 0.95),
        inset 1px 1px 0px rgba(255, 255, 255, 0.95), 
        inset -1px -1px 0px rgba(0, 0, 0, 0.05);
}

body.light-theme .skeuo-card-raised:hover {
    box-shadow: 
        12px 12px 28px rgba(160, 175, 192, 0.6), 
        -6px -6px 15px rgba(255, 255, 255, 0.98),
        inset 1px 1px 0px rgba(255, 255, 255, 0.98), 
        inset -1px -1px 0px rgba(0, 0, 0, 0.05);
}

body.light-theme .skeuo-panel-recessed {
    background-color: var(--bg-panel-recessed);
    border-color: #cbd5e1;
    box-shadow: 
        inset 2px 2px 5px rgba(160, 175, 192, 0.65),
        inset -1px -1px 2px rgba(255, 255, 255, 0.9),
        1px 1px 1px rgba(255, 255, 255, 0.8);
}

/* Navbar overrides in Light Mode */
body.light-theme .skeuo-panel-navbar {
    background: var(--bg-header);
    border-color: #cbd5e1;
    box-shadow: 
        0 8px 24px rgba(160, 175, 192, 0.3),
        inset 1px 1px 0px rgba(255, 255, 255, 0.9),
        inset -1px -1px 0px rgba(0, 0, 0, 0.05);
}

body.light-theme .nav-item.active {
    color: var(--text-primary);
    background: linear-gradient(180deg, #dae2ea, #f0f4f8);
    box-shadow: 
        inset 1px 1px 2px rgba(160, 175, 192, 0.7),
        1px 1px 0 rgba(255, 255, 255, 0.8);
}

/* Light Theme Button Adjustments */
body.light-theme .btn-primary {
    background: linear-gradient(180deg, #ffffff, #e2e8f0);
    border-color: #cbd5e1;
    box-shadow: 
        3px 3px 6px rgba(160, 175, 192, 0.4), 
        inset 1px 1px 0px rgba(255, 255, 255, 0.9),
        inset -1px -1px 0px rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

body.light-theme .btn-primary:hover {
    border-color: #94a3b8;
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
    box-shadow: 
        4px 4px 8px rgba(160, 175, 192, 0.45), 
        inset 1px 1px 0px rgba(255, 255, 255, 0.9),
        inset -1px -1px 0px rgba(0, 0, 0, 0.05);
}

body.light-theme .btn-primary:active,
body.light-theme .btn-primary.active {
    transform: translate(1px, 1px);
    background: linear-gradient(180deg, #cbd5e1, #f1f5f9);
    box-shadow: 
        1px 1px 2px rgba(160, 175, 192, 0.5), 
        inset 2px 2px 4px rgba(160, 175, 192, 0.6),
        inset -1px -1px 1px rgba(255, 255, 255, 0.5);
}

/* Light Theme secondary button (inset frame look) */
body.light-theme .btn-secondary {
    background-color: var(--bg-panel-recessed);
    border-color: #cbd5e1;
    box-shadow: 
        inset 2px 2px 4px rgba(160, 175, 192, 0.5),
        1px 1px 1px rgba(255, 255, 255, 0.8);
    color: var(--text-muted);
}

body.light-theme .btn-secondary:hover {
    color: var(--text-primary);
    border-color: #94a3b8;
    box-shadow: 
        inset 1px 1px 2px rgba(160, 175, 192, 0.6),
        1px 1px 2px rgba(255, 255, 255, 0.9);
}

body.light-theme .btn-secondary:active {
    background-color: #dae2ea;
}

/* Light Theme Switch Slider Shift */
body.light-theme .theme-switch-slider {
    transform: translateX(44px);
    background: linear-gradient(180deg, #ffffff, #edf2f7);
    border-color: #cbd5e1;
    box-shadow: 1px 1px 3px rgba(160, 175, 192, 0.5);
}

body.light-theme .theme-switch-label.label-dark {
    color: var(--text-dark);
}

body.light-theme .theme-switch-label.label-light {
    color: #000000;
}

/* Workstation screen & dials overrides for Light Mode */
body.light-theme .window-title {
    background-color: #e2e8f0;
}

body.light-theme .device-selectors {
    background-color: #e2e8f0;
}

body.light-theme .device-btn.active {
    background-color: #dae2ea;
    box-shadow: inset 1px 1px 2px rgba(160, 175, 192, 0.6);
}

body.light-theme .workstation-header {
    background-color: #edf2f7;
    border-bottom-color: #cbd5e1;
}

body.light-theme .workstation-footer {
    background-color: #edf2f7;
    border-top-color: #cbd5e1;
}

body.light-theme .workstation-viewport {
    background-color: #dae2ea;
}

body.light-theme .screen-content {
    background-color: #f8fafc;
    color: #1e293b;
    border-color: #cbd5e1;
}

body.light-theme .mock-nav {
    border-bottom-color: #cbd5e1;
}

body.light-theme .mock-links {
    color: #64748b;
}

body.light-theme .mock-hero {
    background-color: rgba(0,0,0,0.01);
}

body.light-theme .mock-hero p {
    color: #64748b;
}

body.light-theme .mock-btn-wa {
    border-color: #cbd5e1;
    color: #1e293b;
}

body.light-theme .mock-card {
    background-color: #ffffff;
    border-color: #cbd5e1;
}

body.light-theme .mock-card p {
    color: #64748b;
}

body.light-theme .mock-location {
    border-top-color: #cbd5e1;
}

body.light-theme .mock-map {
    background-color: #e2e8f0;
}

body.light-theme .mock-address p {
    color: #64748b;
}

body.light-theme .panel-gauge {
    background-color: #dae2ea;
}

body.light-theme .gauge-value {
    color: #1e293b;
    text-shadow: none;
}

body.light-theme .tiny-label {
    color: #64748b;
}

body.light-theme .process-step-btn.active {
    background: linear-gradient(180deg, #e2e8f0, #f8fafc);
    box-shadow: 
        2px 2px 4px rgba(160, 175, 192, 0.4),
        inset 1px 1px 0px rgba(255, 255, 255, 0.9),
        inset -1px -1px 0px rgba(0, 0, 0, 0.05);
}

body.light-theme .control-divider {
    background-color: #cbd5e1;
}

body.light-theme .step-detail-card p {
    color: var(--text-muted);
}

body.light-theme .step-graphics {
    background: linear-gradient(145deg, #ffffff, #edf2f7);
    border-color: #cbd5e1;
    box-shadow: 
        inset 1px 1px 0 rgba(255, 255, 255, 0.9),
        4px 4px 8px rgba(160, 175, 192, 0.3);
}

body.light-theme .led-dot.dark {
    background-color: #e2e8f0;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
}

body.light-theme .process-cta-banner {
    border-color: #cbd5e1;
}

/* Light Theme Switch Items */
body.light-theme .switch-ui {
    background-color: #dae2ea;
    border-color: #cbd5e1;
}

body.light-theme .switch-nob {
    background: linear-gradient(180deg, #ffffff, #edf2f7);
    border-color: #cbd5e1;
}

body.light-theme .dashboard-switch-item.active .switch-ui {
    background-color: var(--accent);
}

body.light-theme .dashboard-switch-item.active .switch-nob {
    background: linear-gradient(180deg, #ffffff, #d8b4fe);
    border-color: #c084fc;
}

body.light-theme .dashboard-header-bar {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

/* Light Theme Form Controls */
body.light-theme .input-wrapper input,
body.light-theme .input-wrapper select,
body.light-theme .input-wrapper textarea {
    background-color: var(--bg-panel-recessed);
    color: var(--text-primary);
}

body.light-theme .input-wrapper input::placeholder,
body.light-theme .input-wrapper textarea::placeholder {
    color: #94a3b8;
}

body.light-theme .form-success-overlay {
    background-color: var(--bg-panel-recessed);
}

/* Light Theme ID Badge polaroid look */
body.light-theme .mock-id-badge {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 2px 2px 6px rgba(160, 175, 192, 0.3);
    padding: 12px;
    border-radius: 8px;
}

body.light-theme .badge-header {
    border-bottom-color: #e2e8f0;
}

body.light-theme .portrait-avatar-placeholder {
    background-color: #f8fafc;
    border-color: #e2e8f0;
}

body.light-theme .avatar-svg circle,
body.light-theme .avatar-svg path {
    fill: #e2e8f0;
    stroke: #cbd5e1;
}

body.light-theme .badge-name {
    color: #1e293b;
}

/* Light Theme Footer adjustments */
body.light-theme .footer-bottom-bar {
    border-top-color: #cbd5e1;
}

