/* ==========================================================================
   CSS RESET & FROSTED ONYX VARIABLES
   ========================================================================== */
:root {
    /* Core Backgrounds */
    --color-bg-base: #090A0F;
    --color-bg-surface: #11131A;
    --color-bg-glass: rgba(17, 19, 26, 0.4);

    /* Neon Emerald Accents */
    --color-emerald: #00FFA3;
    --color-emerald-dim: rgba(0, 255, 163, 0.15);
    --color-emerald-glow: rgba(0, 255, 163, 0.4);
    --color-mint: #00E676;
    --color-cyan: #00B8FF;

    /* Gradients */
    --gradient-emerald: linear-gradient(135deg, var(--color-emerald), var(--color-cyan));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* Typography & Colors */
    --color-text-main: #FFFFFF;
    --color-text-muted: #8E9BAE;
    --color-text-dark: #090A0F;

    /* Borders & Shadows */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-neon: 1px solid rgba(0, 255, 163, 0.5);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px rgba(0, 255, 163, 0.3);

    /* Typography Fonts */
    --font-heading: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'Fira Code', monospace;

    /* Metrics */
    --max-width: 1440px;
    --header-height: 90px;
    --header-scrolled: 75px;
    --section-pad: 8rem;

    /* Transitions */
    --trans-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --trans-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-base);
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom Emerald Target Cursor */
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--color-emerald);
    color: var(--color-text-dark);
}

/* Glowing Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-emerald);
    box-shadow: var(--shadow-neon);
}

/* ==========================================================================
   CUSTOM CURSOR (NEON CROSSHAIR)
   ========================================================================== */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--color-emerald);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 10px var(--color-emerald);
    transition: width 0.2s, height 0.2s;
}

.cursor-target {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-emerald-glow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: 0.15s ease-out;
}

.cursor-target::before,
.cursor-target::after {
    content: '';
    position: absolute;
    background: var(--color-emerald-glow);
}

.cursor-target::before {
    top: -5px;
    bottom: -5px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
}

.cursor-target::after {
    left: -5px;
    right: -5px;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.text-emerald {
    background: var(--gradient-emerald);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.heading-mega {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.heading-lg {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.heading-md {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

/* ==========================================================================
   LAYOUT & FROSTED GLASS UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* High-Tech Topography Grid Background */
.bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(var(--color-emerald-dim) 1px, transparent 1px),
        radial-gradient(var(--color-emerald-dim) 1px, transparent 1px);
    background-position: 0 0, 25px 25px;
    background-size: 50px 50px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Frosted Onyx Panel */
.frosted-panel {
    background: var(--color-bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    padding: 3rem;
    transition: var(--trans-fast);
    position: relative;
    overflow: hidden;
}

.frosted-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.frosted-panel:hover {
    border-color: rgba(0, 255, 163, 0.3);
    box-shadow: var(--shadow-neon);
}

.frosted-panel:hover::before {
    left: 150%;
}

/* Ambient Spotlights */
.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: pulseLight 8s infinite alternate ease-in-out;
}

.light-emerald {
    background: var(--color-emerald-dim);
    width: 600px;
    height: 600px;
    top: 10%;
    right: 5%;
}

.light-cyan {
    background: rgba(0, 184, 255, 0.1);
    width: 500px;
    height: 500px;
    bottom: 20%;
    left: -10%;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    border: none;
    cursor: none;
    transition: var(--trans-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-emerald {
    background: var(--color-emerald);
    color: var(--color-text-dark);
    box-shadow: var(--shadow-neon);
}

.btn-emerald::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: var(--trans-fast);
    z-index: -1;
}

.btn-emerald:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.6);
}

.btn-emerald:hover::before {
    transform: translateX(100%);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-main);
    border: var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    border-color: var(--color-emerald);
    color: var(--color-emerald);
    background: rgba(0, 255, 163, 0.05);
}

/* ==========================================================================
   HEADER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(9, 10, 15, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--trans-smooth);
}

.site-header.scrolled {
    height: var(--header-scrolled);
    background: rgba(9, 10, 15, 0.95);
    border-bottom: 1px solid rgba(0, 255, 163, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
}

.site-header.scrolled .footer-brand img {
    height: 45px;
}

.main-nav {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-main);
    font-size: 0.85rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    cursor: none;
    padding: 0.5rem 0;
    opacity: 0.7;
}

.nav-link::before {
    content: '[';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--color-emerald);
    transition: var(--trans-fast);
}

.nav-link::after {
    content: ']';
    position: absolute;
    right: -15px;
    opacity: 0;
    color: var(--color-emerald);
    transition: var(--trans-fast);
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-emerald);
    text-shadow: 0 0 10px var(--color-emerald-glow);
}

.nav-link:hover::before {
    opacity: 1;
    left: -10px;
}

.nav-link:hover::after {
    opacity: 1;
    right: -10px;
}

.mobile-toggle {
    display: none;
    width: 40px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: none;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text-main);
    transition: var(--trans-fast);
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 11px;
}

.mobile-toggle span:nth-child(3) {
    top: 22px;
}

/* ==========================================================================
   HERO SECTION (PURE CSS 3D DATA HELIX)
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    color: var(--color-emerald);
    border: var(--border-neon);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    background: var(--color-emerald-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-neon);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* 3D Pure CSS Data Helix */
.hero-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.helix-container {
    position: relative;
    width: 100px;
    height: 400px;
    transform-style: preserve-3d;
    transform: rotateZ(-20deg) rotateX(20deg);
    animation: helixSpin 10s linear infinite;
}

.helix-strand {
    position: absolute;
    width: 100px;
    height: 10px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-emerald));
    box-shadow: var(--shadow-neon);
    border-radius: 5px;
    left: 0;
}

/* Generating strands manually with delays for helix effect */
.s1 {
    top: 0px;
    transform: rotateY(0deg);
}

.s2 {
    top: 30px;
    transform: rotateY(36deg);
}

.s3 {
    top: 60px;
    transform: rotateY(72deg);
}

.s4 {
    top: 90px;
    transform: rotateY(108deg);
}

.s5 {
    top: 120px;
    transform: rotateY(144deg);
}

.s6 {
    top: 150px;
    transform: rotateY(180deg);
}

.s7 {
    top: 180px;
    transform: rotateY(216deg);
}

.s8 {
    top: 210px;
    transform: rotateY(252deg);
}

.s9 {
    top: 240px;
    transform: rotateY(288deg);
}

.s10 {
    top: 270px;
    transform: rotateY(324deg);
}

.s11 {
    top: 300px;
    transform: rotateY(360deg);
}

/* ==========================================================================
   TICKER TAPE (DATA STREAM)
   ========================================================================== */
.ticker-wrap {
    background: var(--color-bg-surface);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scrollTicker 20s linear infinite;
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin: 0 3rem;
    display: flex;
    align-items: center;
}

.ticker-item span {
    color: var(--color-emerald);
    margin-right: 15px;
}

/* ==========================================================================
   MANIFESTO / ABOUT
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: 20px;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.2), transparent);
}

.about-visual-inner {
    background: var(--color-bg-surface);
    border-radius: 15px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--border-glass);
    position: relative;
    overflow: hidden;
}

.about-visual-inner::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(0, 255, 163, 0.05) 10px,
            rgba(0, 255, 163, 0.05) 20px);
    animation: panBackground 20s linear infinite;
}

.about-text h2 {
    margin-bottom: 2rem;
}

/* ==========================================================================
   METRICS (NEON COUNTERS)
   ========================================================================== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-pill {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 100px;
    background: var(--color-bg-surface);
    border: var(--border-glass);
    transition: var(--trans-fast);
}

.metric-pill:hover {
    border-color: var(--color-emerald);
    box-shadow: 0 10px 30px rgba(0, 255, 163, 0.1);
    transform: translateY(-10px);
}

.metric-num {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--color-emerald);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: var(--shadow-neon);
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* ==========================================================================
   CORE SERVICES (FROSTED ONYX PANELS)
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 3.5rem 2.5rem;
    transform-style: preserve-3d;
    cursor: none;
    border-top: 3px solid transparent;
}

.service-card:hover {
    border-top-color: var(--color-emerald);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-emerald);
    margin-bottom: 2rem;
    transform: translateZ(30px);
}

.service-card h3 {
    font-size: 1.8rem;
    transform: translateZ(20px);
}

.service-card p {
    transform: translateZ(10px);
}

.service-link {
    display: inline-block;
    margin-top: 2rem;
    font-family: var(--font-mono);
    color: var(--color-cyan);
    text-transform: uppercase;
    font-size: 0.9rem;
    transform: translateZ(15px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-link::after {
    content: '>';
    color: var(--color-emerald);
    transition: var(--trans-fast);
}

.service-link:hover {
    color: var(--color-emerald);
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* ==========================================================================
   INTERACTIVE CAMPAIGN METRICS (SVG AREA CHART)
   ========================================================================== */
.simulator-layout {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 4rem;
}

.sim-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sim-btn {
    padding: 1.5rem;
    background: transparent;
    border: var(--border-glass);
    border-radius: 12px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-muted);
    cursor: none;
    transition: var(--trans-fast);
}

.sim-btn.active,
.sim-btn:hover {
    background: var(--color-emerald-dim);
    color: var(--color-emerald);
    border-color: var(--color-emerald);
    box-shadow: var(--shadow-neon);
}

.sim-display {
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

.sim-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.sim-title {
    margin: 0;
    font-size: 2.2rem;
    color: var(--color-text-main);
}

.sim-metric {
    font-size: 4.5rem;
    font-family: var(--font-mono);
    color: var(--color-emerald);
    line-height: 1;
    text-shadow: var(--shadow-neon);
}

/* Fluid SVG Area Graph */
.chart-container {
    width: 100%;
    height: 350px;
    position: relative;
    margin-top: auto;
}

.svg-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.grid-line {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

.chart-area {
    fill: url(#emeraldGrad);
    opacity: 0.3;
    transition: d 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.chart-line {
    fill: none;
    stroke: var(--color-emerald);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: d 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 10px rgba(0, 255, 163, 0.5));
}

.chart-point {
    fill: var(--color-bg-surface);
    stroke: var(--color-cyan);
    stroke-width: 3;
    transition: cy 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   INDUSTRIES GRID
   ========================================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.industry-card {
    padding: 3.5rem 2rem;
    text-align: center;
    border-radius: 16px;
    border: var(--border-glass);
    background: linear-gradient(180deg, var(--color-bg-surface) 0%, transparent 100%);
    transition: var(--trans-fast);
}

.industry-card:hover {
    border-color: var(--color-emerald);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.ind-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    transition: var(--trans-fast);
}

.industry-card:hover .ind-icon {
    color: var(--color-emerald);
    text-shadow: var(--shadow-neon);
}

/* ==========================================================================
   CAMPAIGN EXECUTION TIMELINE
   ========================================================================== */
.timeline-wrap {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-emerald), var(--color-cyan));
    opacity: 0.3;
}

.t-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}

.t-node {
    position: absolute;
    top: 0;
    left: 31px;
    width: 20px;
    height: 20px;
    background: var(--color-bg-base);
    border: 3px solid var(--color-emerald);
    border-radius: 50%;
    box-shadow: var(--shadow-neon);
    z-index: 2;
}

.t-content {
    padding: 3rem;
    border-left: 4px solid transparent;
    transition: var(--trans-fast);
}

.t-content:hover {
    border-left-color: var(--color-emerald);
    background: rgba(255, 255, 255, 0.02);
}

.t-content h3 {
    color: var(--color-cyan);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.t-content p {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.95rem;
}

/* ==========================================================================
   TESTIMONIALS (AUTO-SLIDE EMULATION VIA GRID)
   ========================================================================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testi-card {
    padding: 3rem;
    position: relative;
}

.testi-quote {
    font-size: 1.15rem;
    color: var(--color-text-main);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.testi-client {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: var(--border-glass);
    padding-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-bg-surface);
    border: 1px solid var(--color-emerald);
    border-radius: 50%;
}

.client-info h5 {
    margin: 0;
    font-size: 1.1rem;
}

.client-info span {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 10rem 0;
    text-align: center;
    position: relative;
    border-top: var(--border-glass);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-emerald-dim) 0%, transparent 70%);
    z-index: 0;
}

/* ==========================================================================
   LEGAL PAGES & CONTACT SPECIFICS
   ========================================================================== */
.page-hero {
    padding: 220px 0 100px;
    text-align: center;
    border-bottom: var(--border-glass);
    background: linear-gradient(to bottom, transparent, rgba(17, 19, 26, 0.8));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    padding-right: 2rem;
}

.c-block {
    margin-bottom: 3rem;
}

.c-block h4 {
    color: var(--color-cyan);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.c-block p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background: var(--color-bg-base);
    border: var(--border-glass);
    border-radius: 8px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--trans-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-emerald);
    box-shadow: var(--shadow-neon);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--color-emerald);
    margin-top: 4rem;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #A0AAB5;
    font-size: 1.1rem;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    color: #A0AAB5;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--color-cyan);
    font-family: var(--font-mono);
    font-weight: bold;
}

/* ==========================================================================
   FOOTER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-footer {
    background: var(--color-bg-surface);
    border-top: var(--border-glass);
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand img {
    height: 45px;
    filter: invert(1);
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-emerald);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: var(--border-glass);
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a:hover {
    color: var(--color-cyan);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes pulseLight {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) translate(-20px, 20px);
        opacity: 0.8;
    }
}

@keyframes helixSpin {
    0% {
        transform: rotateZ(-20deg) rotateX(20deg) rotateY(0deg);
    }

    100% {
        transform: rotateZ(-20deg) rotateX(20deg) rotateY(360deg);
    }
}

@keyframes panBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .heading-mega {
        font-size: 4.5rem;
    }

    .hero-grid,
    .about-grid,
    .simulator-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-visual {
        height: 400px;
    }

    .helix-container {
        transform: rotateZ(0deg) rotateX(20deg) scale(0.8);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dash-btn {
        flex: 1;
        min-width: 45%;
    }
}

@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-target {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--color-bg-surface);
        flex-direction: column;
        justify-content: center;
        transition: var(--trans-smooth);
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .heading-mega {
        font-size: 3rem;
    }

    .heading-lg {
        font-size: 2.2rem;
    }

    .metrics-grid,
    .industry-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .frosted-panel,
    .dash-display {
        padding: 2rem;
    }

    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .chart-container {
        height: 200px;
    }

    .timeline-wrap::before {
        left: 20px;
    }

    .t-step {
        padding-left: 60px;
    }

    .t-node {
        left: 11px;
    }

    .contact-info,
    .legal-content {
        padding: 2rem;
    }
}