/* ==========================================================================
   IMERSIVE DUALITY GRAPHIC DESIGN SYSTEM - WWW.NOLKIDO.ONLINE
   Curated Aesthetics: Cyber-Neon Tech, Volcanic Fitness Energetics
   ========================================================================== */

/* 1. Global Reset & Interactive Elements */
:root {
    /* Base */
    --bg-dark: #05060a;
    --bg-card: rgba(13, 16, 27, 0.7);
    --bg-card-hover: rgba(22, 27, 46, 0.8);
    --text-white: #ffffff;
    --text-muted: #8fa0b5;
    --border-color: rgba(255, 255, 255, 0.05);

    /* Tech Theme - Neon Cyan / Electric Blue / Deep Purple */
    --color-tech-primary: #00f2fe;
    --color-tech-secondary: #4facfe;
    --color-tech-accent: #7f00ff;
    --glow-tech: 0 0 25px rgba(0, 242, 254, 0.4);

    /* Fitness Theme - Volcanic Orange / Golden Amber / Acid Lime */
    --color-fit-primary: #ff9900;
    --color-fit-secondary: #ff3300;
    --color-fit-accent: #33cc33;
    --glow-fitness: 0 0 25px rgba(255, 153, 0, 0.4);

    /* Dynamic Bindings (Harmony defaults) */
    --primary: #00f2fe;
    --secondary: #ff9900;
    --accent: #ff3300;
    --active-glow: var(--glow-tech);
    --gradient-harmony: linear-gradient(135deg, var(--color-tech-primary), var(--color-fit-primary));

    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-sub: 'Outfit', sans-serif;

    /* Settings */
    --transition-pane: width 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease, opacity 0.7s ease;
    --transition-card: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --transition-quick: all 0.2s ease;
}

/* Dynamic Classes applied to body */
body.tech-mode {
    --primary: var(--color-tech-primary);
    --secondary: var(--color-tech-secondary);
    --accent: var(--color-tech-accent);
    --active-glow: var(--glow-tech);
}

body.fitness-mode {
    --primary: var(--color-fit-primary);
    --secondary: var(--color-fit-secondary);
    --accent: var(--color-fit-accent);
    --active-glow: var(--glow-fitness);
}

body.harmony-mode {
    --primary: #00f2fe;
    --secondary: #ff9900;
    --accent: #ff3300;
    --active-glow: 0 0 20px rgba(0, 242, 254, 0.2), 0 0 20px rgba(255, 153, 0, 0.2);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Custom Interactive Cursor Follower */
.custom-cursor {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.1s, height 0.1s, background-color 0.4s ease;
}

.custom-cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s ease-out, width 0.2s, height 0.2s, border-color 0.4s ease;
}

/* Morphing hover states */
.custom-cursor.hovered {
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
}

.custom-cursor-follower.hovered {
    width: 50px;
    height: 50px;
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.02);
}

/* HTML5 Particles Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

/* Ambient Radial Glows */
.ambient-glow {
    position: fixed;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -3;
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 1s ease;
}

.bg-glow-tech {
    background: radial-gradient(circle, var(--color-tech-primary) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.bg-glow-fitness {
    background: radial-gradient(circle, var(--color-fit-primary) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
}

/* 2. Sticky Glassmorphism Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 10, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: var(--transition-quick);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(5, 6, 10, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-bracket {
    color: var(--primary);
    transition: color 0.5s ease;
}

.logo-mid {
    color: var(--text-white);
}

.logo-text {
    font-family: var(--font-sub);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-left: 6px;
    background: linear-gradient(90deg, var(--text-white), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-quick);
}

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

.nav-link.active::after {
    width: 100%;
}

/* Advanced Duality Selector */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 24px;
}

.duality-control {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 40px;
    position: relative;
}

.duality-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: var(--transition-quick);
}

.duality-btn:hover {
    color: var(--text-white);
}

.duality-btn.active {
    color: var(--bg-dark);
    background: var(--text-white);
}

body.tech-mode #mode-btn-tech { background: var(--color-tech-primary); color: var(--bg-dark); box-shadow: var(--glow-tech); }
body.fitness-mode #mode-btn-fitness { background: var(--color-fit-primary); color: var(--bg-dark); box-shadow: var(--glow-fitness); }
body.harmony-mode #mode-btn-harmony { background: var(--gradient-harmony); color: var(--bg-dark); }

/* Language selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-quick);
}

.lang-btn.active, .lang-btn:hover {
    color: var(--text-white);
}

.lang-divider {
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-quick);
}


/* ==========================================================================
   3. IMMERSIVE SPLIT SCREEN HERO SECTION
   ========================================================================== */
.hero-split-container {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.split-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.split-pane {
    position: relative;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 8vw;
    overflow: hidden;
    transition: var(--transition-pane);
    z-index: 1;
}

.pane-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 6, 10, 0.7);
    z-index: 1;
    transition: opacity 0.7s ease;
}

.pane-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Background graphics */
.pane-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    background-size: 30px 30px;
    background-image: linear-gradient(to right, rgba(0, 242, 254, 0.15) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0, 242, 254, 0.15) 1px, transparent 1px);
    transition: opacity 0.7s ease;
}

.pane-bg-flames {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 0;
    background: radial-gradient(circle at 80% 80%, rgba(255, 153, 0, 0.4) 0%, transparent 60%);
    transition: opacity 0.7s ease;
}

/* Left Pane: Tech specifics */
.split-left {
    background: linear-gradient(135deg, #090e18 0%, #05060a 100%);
    border-right: 1px solid rgba(0, 242, 254, 0.08);
}

/* Right Pane: Fitness specifics */
.split-right {
    background: linear-gradient(135deg, #0f0b07 0%, #05060a 100%);
    border-left: 1px solid rgba(255, 153, 0, 0.08);
}

/* Pane Badges */
.pane-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.badge-cyan { background: rgba(0, 242, 254, 0.04); border-color: rgba(0, 242, 254, 0.2); color: var(--color-tech-primary); }
.badge-orange { background: rgba(255, 153, 0, 0.04); border-color: rgba(255, 153, 0, 0.2); color: var(--color-fit-primary); }

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    animation: pulse 1.8s infinite;
}

.pane-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.text-glow-cyan { text-shadow: 0 0 20px rgba(0, 242, 254, 0.2); }
.text-glow-orange { text-shadow: 0 0 20px rgba(255, 153, 0, 0.2); }

.pane-title .accent-text {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-white);
}

.split-left .accent-text {
    background: linear-gradient(90deg, var(--color-tech-primary), var(--color-tech-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.split-right .accent-text {
    background: linear-gradient(90deg, var(--color-fit-primary), var(--color-fit-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pane-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 440px;
}

/* Creative floating labels in background */
.tech-lines-graphics, .fit-lines-graphics {
    margin-top: 40px;
    display: flex;
    gap: 12px;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--border-glow-light);
    opacity: 0.4;
}

/* Interactive Split Panes Hover Mechanics */
.split-wrapper.hover-left #pane-left {
    width: 66%;
}
.split-wrapper.hover-left #pane-right {
    width: 34%;
    filter: grayscale(40%) blur(1px);
}
.split-wrapper.hover-left #pane-right .pane-overlay {
    background-color: rgba(5, 6, 10, 0.85);
}

.split-wrapper.hover-right #pane-right {
    width: 66%;
}
.split-wrapper.hover-right #pane-left {
    width: 34%;
    filter: grayscale(40%) blur(1px);
}
.split-wrapper.hover-right #pane-left .pane-overlay {
    background-color: rgba(5, 6, 10, 0.85);
}

/* Expand scale factors */
.split-pane:hover .pane-content {
    transform: scale(1.02);
}
.split-pane:hover .pane-bg-grid { opacity: 0.2; }
.split-pane:hover .pane-bg-flames { opacity: 0.18; }
.split-pane:hover .pane-overlay { background-color: rgba(5, 6, 10, 0.45); }

/* Sci-fi buttons */
.pane-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 40px;
    font-family: var(--font-sub);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition-quick);
}

.btn-neon-cyan {
    background: var(--color-tech-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.btn-neon-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
}

.btn-neon-orange {
    background: var(--color-fit-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
}

.btn-neon-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.6);
}

/* Centered Duality core laser ring */
.split-center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
    transition: var(--transition-pane);
}

.core-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
    animation: rotate 15s linear infinite;
}

.ring-cyan {
    width: 100%;
    height: 100%;
    border-color: var(--color-tech-primary);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.ring-orange {
    width: 80%;
    height: 80%;
    border-color: var(--color-fit-primary);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
    animation-direction: reverse;
    animation-duration: 10s;
}

.core-orb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-tech-primary), var(--color-fit-primary));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.core-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--bg-dark);
    letter-spacing: -1.5px;
}

/* Adjust center ring location depending on pane hover */
.split-wrapper.hover-left .split-center-core {
    left: 66%;
}

.split-wrapper.hover-right .split-center-core {
    left: 34%;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: pulse 1.5s infinite;
}

.scroll-text {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ==========================================================================
   4. NARRATIVE BANNER
   ========================================================================== */
.narrative-banner {
    background: linear-gradient(180deg, #05060a 0%, #0b0c13 50%, #05060a 100%);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.narrative-statement {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto;
}

.highlight-narrative {
    display: block;
    margin-top: 14px;
    font-weight: 800;
}


/* ==========================================================================
   5. SECTIONS GENERAL STRUCTURE
   ========================================================================== */
section[class^="section-"] {
    padding: 120px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.section-header {
    margin-bottom: 70px;
}

.section-badge {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 3px;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.tech-color { color: var(--color-tech-primary); border-color: rgba(0, 242, 254, 0.15); }
.fitness-color { color: var(--color-fit-primary); border-color: rgba(255, 153, 0, 0.15); }
.harmony-color { color: var(--primary); border-color: rgba(255, 255, 255, 0.1); }

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.text-gradient-tech {
    background: linear-gradient(90deg, var(--color-tech-primary), #00A3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-fitness {
    background: linear-gradient(90deg, var(--color-fit-primary), var(--color-fit-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-harmony {
    background: linear-gradient(90deg, var(--color-tech-primary), var(--color-fit-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ==========================================================================
   6. 3D TILT CARDS & GRID ARCHITECTURE
   ========================================================================== */
.grid {
    display: grid;
    gap: 36px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Sci-fi Glass Card base */
.tilt-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.tilt-card:hover {
    background: var(--bg-card-hover);
}

.card-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    pointer-events: none;
    border: 2px solid transparent;
    transition: var(--transition-quick);
}

/* Card glows depending on focus */
.card-tech:hover {
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.08);
}
.card-tech:hover .card-glow-border {
    border-color: rgba(0, 242, 254, 0.1);
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.card-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.cyan-glow {
    color: var(--color-tech-primary);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    transform: translateZ(20px);
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
    transform: translateZ(10px);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    transform: translateZ(15px);
}

.card-tags span {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 20px;
}


/* ==========================================================================
   7. SCI-FI CONTROL PANEL CALCULATORS (DASHBOARDS)
   ========================================================================== */
.dashboard-calc-container {
    background: rgba(8, 10, 19, 0.9);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px;
    margin-top: 80px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.calc-tech { border-color: rgba(0, 242, 254, 0.2); box-shadow: 0 0 30px rgba(0, 242, 254, 0.05); }
.calc-fitness { border-color: rgba(255, 153, 0, 0.2); box-shadow: 0 0 30px rgba(255, 153, 0, 0.05); }

/* Sci-fi layout top lights */
.dashboard-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.dashboard-lights {
    display: flex;
    gap: 8px;
}

.dashboard-lights .light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.light.red { background-color: #ff5f56; }
.light.yellow { background-color: #ffbd2e; }
.light.green { background-color: #27c93f; }
.light.orange { background-color: #ff9900; }

.dashboard-title-text {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* Control ranges & boxes */
.control-box {
    margin-bottom: 30px;
}

.control-labels {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.control-num {
    color: var(--border-glow-light);
}

.control-value-bubble {
    margin-left: auto;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-tech-primary);
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 2px 10px;
    border-radius: 6px;
}

.control-value-bubble.orange {
    color: var(--color-fit-primary);
    background: rgba(255, 153, 0, 0.05);
    border: 1px solid rgba(255, 153, 0, 0.2);
}

/* Range input design */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-quick);
}

.range-cyan::-webkit-slider-thumb {
    background-color: var(--color-tech-primary);
    box-shadow: 0 0 10px var(--color-tech-primary);
}

.range-orange::-webkit-slider-thumb {
    background-color: var(--color-fit-primary);
    box-shadow: 0 0 10px var(--color-fit-primary);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

/* Sci-fi Select dropdowns */
.calc-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dashboard-select-lbl {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.dashboard-select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-white);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
}

.dashboard-select:focus {
    border-color: var(--color-fit-primary);
}

/* Displays Right (Sci-fi elements) */
.dashboard-displays {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.displays-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* SVG Radial gauge layout */
.radial-gauge-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.svg-radial {
    width: 150px;
    height: 150px;
    transform: rotate(-90deg);
}

.radial-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 8;
}

.radial-fill {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stroke-cyan {
    stroke: var(--color-tech-primary);
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.5));
}

.stroke-orange {
    stroke: var(--color-fit-primary);
    filter: drop-shadow(0 0 6px rgba(255, 153, 0, 0.5));
}

.radial-inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.radial-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-tech-primary);
}

.radial-value.orange {
    color: var(--color-fit-primary);
}

.radial-lbl {
    font-family: var(--font-sub);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.numeric-displays {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.num-box {
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 14px;
}

.num-box-lbl {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.num-box-val {
    font-size: 1.8rem;
    font-weight: 800;
}

.text-glow-cyan { text-shadow: 0 0 10px rgba(0, 242, 254, 0.2); color: var(--color-tech-primary); }
.text-glow-orange { text-shadow: 0 0 10px rgba(255, 153, 0, 0.2); color: var(--color-fit-primary); }

/* Sci-fi buttons with grid line fills */
.btn-glow-cyan-action, .btn-glow-orange-action {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 12px;
    font-family: var(--font-sub);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    transition: var(--transition-quick);
}

.btn-glow-cyan-action {
    background: transparent;
    border: 1px solid var(--color-tech-primary);
    color: var(--color-tech-primary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.btn-glow-cyan-action:hover {
    background: var(--color-tech-primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-tech);
}

.btn-glow-orange-action {
    background: transparent;
    border: 1px solid var(--color-fit-primary);
    color: var(--color-fit-primary);
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.1);
}

.btn-glow-orange-action:hover {
    background: var(--color-fit-primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-fitness);
}

.dashboard-advice-card {
    background: rgba(255, 153, 0, 0.02);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
}

.advice-heading {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-fit-primary);
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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


/* ==========================================================================
   8. BRAND KINEXAZ CREATIVE CARD
   ========================================================================== */
.kinexaz-creative-card {
    background: linear-gradient(135deg, rgba(16, 12, 8, 0.8) 0%, rgba(13, 16, 27, 0.8) 100%);
    border: 1px solid rgba(255, 153, 0, 0.15);
    border-radius: 28px;
    padding: 50px;
    margin-bottom: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.kinexaz-creative-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.kinexaz-brand-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-graphic-wrapper {
    width: 260px;
    height: 260px;
    border-radius: 24px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kinexaz-brand-logo {
    width: 75%;
    height: 75%;
    object-fit: contain;
    z-index: 2;
}

.graphic-glow-border {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--color-fit-primary), transparent 30%);
    animation: rotate 6s linear infinite;
    z-index: 0;
}

.brand-graphic-wrapper::after {
    content: '';
    position: absolute;
    inset: 2px;
    background-color: var(--bg-dark);
    border-radius: 22px;
    z-index: 1;
}

.brand-heading {
    font-size: 2rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.brand-paragraph {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 153, 0, 0.3);
    background: rgba(255, 153, 0, 0.05);
    color: var(--color-fit-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-txt h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
}

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


/* ==========================================================================
   9. HIGH PERFORMANCE MINDSET BLOG
   ========================================================================== */
.card-blog {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.blog-cover {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-visual-grad {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transition: var(--transition-pane);
}

.bg-grad-cyan { background: linear-gradient(135deg, var(--color-tech-primary), var(--color-tech-accent)); }
.bg-grad-mix { background: linear-gradient(135deg, var(--color-tech-primary), var(--color-fit-primary)); }
.bg-grad-purple { background: linear-gradient(135deg, var(--color-tech-accent), var(--color-fit-secondary)); }
.bg-grad-orange { background: linear-gradient(135deg, var(--color-fit-primary), var(--color-fit-secondary)); }

.card-blog:hover .blog-visual-grad {
    transform: scale(1.08);
    opacity: 0.7;
}

.blog-cat-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(5, 6, 10, 0.9);
    border: 1px solid var(--border-color);
    padding: 4px 14px;
    border-radius: 30px;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

.blog-action-btn {
    background: none;
    border: none;
    font-family: var(--font-sub);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-quick);
}

.blog-action-btn:hover {
    color: var(--text-white);
    transform: translateX(4px);
}

/* 3D tilt overrides on blog hover */
.card-blog:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Modal Article layout */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 10, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    width: 90%;
    max-width: 850px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-body-content {
    padding: 60px;
}

.modal-art-cat {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.modal-art-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.modal-art-meta {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.modal-art-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.modal-art-body p {
    margin-bottom: 20px;
}

.modal-art-body blockquote {
    border-left: 4px solid var(--primary);
    background: rgba(255, 255, 255, 0.01);
    padding: 20px 30px;
    font-style: italic;
    border-radius: 0 16px 16px 0;
    margin: 36px 0;
    color: var(--text-white);
}


/* ==========================================================================
   10. INTERACTIVE CONTACT FORM & FOOTER
   ========================================================================== */
.contact-box-wrapper {
    background: linear-gradient(135deg, rgba(13, 16, 27, 0.85) 0%, rgba(5, 6, 10, 0.85) 100%);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-box-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    opacity: 0.15;
    pointer-events: none;
    transition: background 0.6s ease;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 2;
}

.icon-cyan {
    color: var(--color-tech-primary);
    border-color: rgba(0, 242, 254, 0.2);
}

.icon-cyan svg { stroke: var(--color-tech-primary); }

.icon-orange {
    color: var(--color-fit-primary);
    border-color: rgba(255, 153, 0, 0.2);
}

.icon-orange svg { stroke: var(--color-fit-primary); }

.channel-label {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.channel-val {
    font-size: 1rem;
    font-weight: 700;
}

/* Dynamic form style */
.form-container-box {
    position: relative;
    width: 100%;
}

.sci-fi-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.3s ease;
}

.form-tabs-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4px;
}

.tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sub);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 12px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    transition: var(--transition-quick);
}

.tab-btn.active {
    color: var(--text-white);
    background: var(--border-glow-light);
}

#tab-tech.active { background: rgba(0, 242, 254, 0.15); color: var(--color-tech-primary); }
#tab-fitness.active { background: rgba(255, 153, 0, 0.15); color: var(--color-fit-primary); }

/* Sci-fi inputs with glowing laser underline */
.field-box {
    position: relative;
}

.field-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-quick);
}

.field-input::placeholder {
    color: transparent;
}

.field-label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.field-textarea {
    min-height: 120px;
    resize: vertical;
}

.field-textarea ~ .field-label {
    top: 24px;
    transform: none;
}

.field-laser {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease, left 0.4s ease;
    box-shadow: 0 0 10px var(--primary);
}

/* Floating labels action */
.field-input:focus ~ .field-label,
.field-input:not(:placeholder-shown) ~ .field-label {
    top: 0;
    left: 14px;
    transform: translateY(-50%) scale(0.8);
    background: var(--bg-dark);
    padding: 0 6px;
    color: var(--primary);
}

.field-input:focus ~ .field-laser {
    width: 100%;
    left: 0;
}

.field-input:focus {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Submission button with cyber shadow effects */
.submit-glow-btn {
    display: inline-block;
    padding: 18px 30px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--bg-dark);
    font-family: var(--font-sub);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition-quick);
}

.submit-glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--active-glow);
}

.btn-tech-shadow { box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2); }
.btn-fitness-shadow { box-shadow: 0 4px 15px rgba(255, 153, 0, 0.2); }

/* Sci-fi dynamic success overlay card */
.dashboard-success-box {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 19, 0.98);
    border-radius: 24px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    z-index: 5;
    border: 1px solid rgba(51, 204, 51, 0.3);
    box-shadow: 0 0 40px rgba(51, 204, 51, 0.05);
}

.success-glow-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(51, 204, 51, 0.05);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(51, 204, 51, 0.2);
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.checkmark {
    color: var(--accent);
    font-size: 2.2rem;
    font-weight: 800;
}

.success-heading {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    max-width: 350px;
    line-height: 1.6;
}

.btn-success-reset {
    background: none;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-quick);
}

.btn-success-reset:hover {
    color: var(--text-white);
    border-color: var(--text-white);
}

/* Footer layout */
.contact-footer {
    margin-top: 80px;
    border-top: 1px dashed var(--border-color);
    padding-top: 36px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-socials {
    display: flex;
    gap: 16px;
}

.f-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.f-social-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    transition: fill 0.3s ease;
}

.f-social-btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.f-social-btn:hover svg {
    fill: var(--primary);
}


/* ==========================================================================
   11. KEYFRAMES ANIMATIONS
   ========================================================================== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.85); opacity: 0.4; }
}

@keyframes scaleUp {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Scroll-triggered Entrance Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   12. MOBILE & RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 1200px) {
    .pane-title { font-size: 2.6rem; }
    .kinexaz-creative-grid { gap: 40px; }
}

@media (max-width: 991px) {
    .nav-menu { display: none; } /* Handled by mobile menu panel */
    
    .mobile-menu-btn { display: flex; }
    
    /* Revert Split hero layout on mobile into two rows */
    .hero-split-container { height: auto; }
    .split-wrapper { flex-direction: column; height: auto; }
    
    .split-pane {
        width: 100% !important;
        height: 50vh;
        padding: 50px 30px;
        justify-content: center;
        text-align: center;
    }
    
    .pane-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
    .pane-desc { max-width: 500px; }
    
    .split-center-core {
        top: 50vh;
        left: 50% !important;
        transform: translate(-50%, -50%);
    }
    
    .scroll-indicator { display: none; }
    
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    
    .dashboard-grid { grid-template-columns: 1fr; gap: 36px; }
    .kinexaz-creative-grid { grid-template-columns: 1fr; text-align: center; }
    .kinexaz-brand-graphic { order: -1; }
    .brand-graphic-wrapper { width: 220px; height: 220px; }
    .method-steps { text-align: left; }
    
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .contact-box-wrapper { padding: 40px; }
}

@media (max-width: 768px) {
    .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .narrative-statement { font-size: 1.25rem; }
    
    .grid-3 { grid-template-columns: 1fr; }
    
    .calc-group-row { grid-template-columns: 1fr; }
    .footer-layout { flex-direction: column; gap: 24px; text-align: center; }
    .modal-body-content { padding: 40px 24px; }
    .modal-art-title { font-size: 1.8rem; }
    
    /* Reduce big card paddings on mobile to prevent stretching */
    .kinexaz-creative-card { padding: 24px 16px; }
    .contact-box-wrapper { padding: 24px 16px; }
}

@media (max-width: 600px) {
    /* Hide long nav buttons text labels and show compact symbols */
    .duality-btn .btn-lbl { display: none; }
    .duality-btn::after { font-size: 0.95rem; }
    #mode-btn-harmony::after { content: '☯'; }
    #mode-btn-tech::after { content: '💻'; }
    #mode-btn-fitness::after { content: '🏃'; }
    
    .duality-control { gap: 4px; padding: 2px; }
    .duality-btn { padding: 8px 10px; border-radius: 50%; }
    .lang-selector { font-size: 0.8rem; }
    
    .nav-container { padding: 0 16px; }
}

@media (max-width: 480px) {
    .pane-title { font-size: 2rem; }
    .btn-glow-cyan-action, .btn-glow-orange-action { width: 100%; }
    .dashboard-calc-container { padding: 20px 16px; }
}

/* Disable Custom Mouse Cursor Followers on Mobile/Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }
}
