/* ==========================================================================
   CSS Variables & Custom Properties (Deep Space / Cosmic Theme)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Cosmic Palette */
    --void-black: #030508;
    /* Deepest Space */
    --deep-space: #0A0E17;
    /* Card Background */
    --starlight: #E0E6ED;
    /* Main Text */
    --nebula-gray: #8A9BB3;
    /* Muted Text */

    --plasma-orange: #FF5722;
    /* Primary CTA / Energy */
    --plasma-glow: rgba(255, 87, 34, 0.4);
    --cosmic-violet: #6200EA;
    /* Secondary / Depth */
    --violet-glow: rgba(98, 0, 234, 0.4);
    --cyan-star: #00E5FF;
    /* Tertiary Accents */

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Layout & Scale */
    --max-width: 1360px;
    --section-pad-y: 150px;
    --section-pad-x: 24px;
    --header-height: 100px;

    /* Borders & Geometry */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;

    --border-glass: 1px solid rgba(224, 230, 237, 0.08);
    --border-plasma: 1px solid var(--plasma-orange);

    /* Effects */
    --shadow-void: 0 20px 50px rgba(0, 0, 0, 0.8);
    --shadow-plasma: 0 0 20px var(--plasma-glow);
    --shadow-violet: 0 0 30px var(--violet-glow);

    --transition-fast: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--plasma-orange) var(--void-black);
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: var(--void-black);
}

html::-webkit-scrollbar-thumb {
    background: var(--plasma-orange);
    border-radius: 10px;
}

body {
    font-family: var(--font-body);
    color: var(--starlight);
    background-color: var(--void-black);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    cursor: none;
    /* Custom Cosmic Cursor */
}

/* Custom Comet Cursor */
.cursor-core,
.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.cursor-core {
    width: 6px;
    height: 6px;
    background: var(--cyan-star);
    box-shadow: 0 0 10px var(--cyan-star);
    transition: transform 0.1s;
}

.cursor-trail {
    width: 40px;
    height: 40px;
    border: 1px solid var(--plasma-orange);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

body:hover .cursor-trail {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.2);
}

/* Ambient Cosmic Backgrounds */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 15% 50%, rgba(98, 0, 234, 0.1), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(255, 87, 34, 0.05), transparent 40%);
}

.stars-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 40px 70px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: drift 100s linear infinite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
    cursor: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--plasma-orange);
    color: var(--void-black);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--section-pad-x);
    position: relative;
    z-index: 2;
}

/* Gradients & Text Effects */
.text-plasma {
    background: linear-gradient(135deg, var(--plasma-orange), #FF9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-cyan {
    color: var(--cyan-star);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
    cursor: none;
}

.btn-plasma {
    background: transparent;
    color: var(--starlight);
    border: 1px solid var(--plasma-orange);
    box-shadow: inset 0 0 0 0 var(--plasma-orange);
}

.btn-plasma::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--plasma-orange);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-plasma:hover {
    box-shadow: var(--shadow-plasma);
    color: var(--void-black);
}

.btn-plasma:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-glass {
    background: rgba(224, 230, 237, 0.05);
    color: var(--starlight);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
}

.btn-glass:hover {
    background: rgba(224, 230, 237, 0.15);
    border-color: var(--starlight);
}

/* Section Headers */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title.left {
    text-align: left;
}

.section-title h2 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--nebula-gray);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 400;
}

.section-title.left p {
    margin: 20px 0 0 0;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cyan-star);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tagline::before,
.tagline::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--cyan-star);
    opacity: 0.5;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(3, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
    box-shadow: var(--shadow-void);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list li a {
    color: var(--starlight);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
    transition: var(--transition-fast);
    opacity: 0.8;
}

.nav-list li a:hover {
    opacity: 1;
    color: var(--plasma-orange);
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--plasma-orange);
    transition: var(--transition-smooth);
}

.nav-list li a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    z-index: 1001;
    cursor: none;
}

.hamburger {
    width: 30px;
    height: 2px;
    background: var(--starlight);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--starlight);
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    top: 10px;
}

/* ==========================================================================
   1. Hero Section (Orbital Rings & 3D Elements)
   ========================================================================== */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
    animation: textReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(50px);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--nebula-gray);
    margin-bottom: 40px;
    max-width: 550px;
    animation: textReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(50px);
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: textReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(50px);
}

/* Cosmic Orbital Visuals */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.orbital-system {
    position: relative;
    width: 500px;
    height: 500px;
    transform-style: preserve-3d;
    animation: floatSpace 8s ease-in-out infinite;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    transform-style: preserve-3d;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation: orbitSpin 15s linear infinite;
    border-color: rgba(255, 87, 34, 0.3);
}

.ring-2 {
    width: 450px;
    height: 450px;
    animation: orbitSpin 25s linear infinite reverse;
    border-color: rgba(98, 0, 234, 0.3);
}

.ring-3 {
    width: 600px;
    height: 600px;
    animation: orbitSpin 35s linear infinite;
    border-style: dashed;
}

.planet-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, var(--cosmic-violet), #1a0033);
    border-radius: 50%;
    box-shadow: inset -20px -20px 40px rgba(0, 0, 0, 0.8), 0 0 40px var(--violet-glow);
}

.data-satellite {
    position: absolute;
    top: 20%;
    right: 10%;
    background: rgba(10, 14, 23, 0.8);
    border: var(--border-glass);
    border-left: 2px solid var(--cyan-star);
    padding: 20px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    transform: translateZ(100px);
    animation: satelliteHover 6s ease-in-out infinite;
}

.data-satellite h4 {
    font-size: 0.8rem;
    color: var(--nebula-gray);
    margin-bottom: 5px;
}

.data-satellite .value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cyan-star);
    font-weight: 700;
    line-height: 1;
}

/* ==========================================================================
   2. Tech Marquee
   ========================================================================== */
.marquee {
    padding: 40px 0;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 80px;
    align-items: center;
    white-space: nowrap;
    animation: scrollLeft 30s linear infinite;
}

.mq-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nebula-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mq-item span {
    color: var(--plasma-orange);
}

/* ==========================================================================
   3. The System (About & Stats)
   ========================================================================== */
.system {
    padding: var(--section-pad-y) 0;
    position: relative;
}

.sys-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.sys-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--nebula-gray);
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-card {
    background: var(--deep-space);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    border: var(--border-glass);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--violet-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: rgba(98, 0, 234, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-violet);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: #FFF;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-lbl {
    font-size: 0.9rem;
    color: var(--cyan-star);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================================
   4. Solutions (Hover Reveal Cards)
   ========================================================================== */
.solutions {
    padding: var(--section-pad-y) 0;
    background: linear-gradient(180deg, var(--void-black), #060910, var(--void-black));
}

.sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sol-card {
    background: rgba(10, 14, 23, 0.6);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.sol-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--plasma-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.sol-card:hover {
    background: var(--deep-space);
    transform: translateY(-10px);
    box-shadow: var(--shadow-void), 0 10px 30px rgba(255, 87, 34, 0.1);
}

.sol-card:hover::after {
    transform: scaleX(1);
}

.sol-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    color: var(--plasma-orange);
}

.sol-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.sol-card h3 {
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 15px;
}

.sol-card p {
    color: var(--nebula-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ==========================================================================
   5. Vertical Process (Pulsing Nodes)
   ========================================================================== */
.process {
    padding: var(--section-pad-y) 0;
}

.proc-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.proc-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.proc-line-fill {
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 0%;
    background: var(--plasma-orange);
    box-shadow: 0 0 10px var(--plasma-orange);
    transition: height 1.5s ease;
}

.process.active .proc-line-fill {
    height: 100%;
}

.proc-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.proc-step:last-child {
    margin-bottom: 0;
}

.proc-node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--void-black);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: #FFF;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    position: relative;
}

.proc-node::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px dashed var(--plasma-orange);
    animation: spin 10s linear infinite;
    opacity: 0;
    transition: var(--transition-smooth);
}

.proc-step:hover .proc-node {
    border-color: var(--plasma-orange);
    color: var(--plasma-orange);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.4), inset 0 0 10px rgba(255, 87, 34, 0.4);
}

.proc-step:hover .proc-node::before {
    opacity: 1;
}

.proc-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.proc-content p {
    color: var(--nebula-gray);
}

/* ==========================================================================
   6. Industries (Parallax Cards)
   ========================================================================== */
.industries {
    padding: var(--section-pad-y) 0;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    background: radial-gradient(ellipse at center, #0a0e17 0%, #030508 100%);
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ind-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: none;
}

.ind-card:hover {
    background: rgba(98, 0, 234, 0.1);
    border-color: rgba(98, 0, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-violet);
}

.ind-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.ind-card:hover .ind-icon {
    opacity: 1;
    transform: scale(1.1);
}

.ind-card h4 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0;
}

/* ==========================================================================
   7. Interactive Campaign Reports (3D Data Cubes)
   ========================================================================== */
.reports {
    padding: var(--section-pad-y) 0;
    perspective: 1500px;
}

.rep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.data-cube {
    width: 100%;
    height: 450px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    cursor: none;
}

.data-cube:hover {
    transform: rotateY(180deg);
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cube-front {
    background: var(--deep-space);
    border: var(--border-glass);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), var(--shadow-void);
}

.cube-front h3 {
    font-size: 2rem;
    color: #FFF;
    margin-bottom: 10px;
}

.cube-front .sector {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--cyan-star);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hologram-graph {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.h-bar {
    flex: 1;
    background: var(--cosmic-violet);
    border-radius: 2px 2px 0 0;
    opacity: 0.7;
}

.h-bar:last-child {
    background: var(--plasma-orange);
    opacity: 1;
    box-shadow: 0 0 10px var(--plasma-orange);
}

.cube-back {
    background: #0d1320;
    border: 1px solid rgba(255, 87, 34, 0.3);
    transform: rotateY(180deg);
    box-shadow: var(--shadow-plasma);
}

.cube-back h3 {
    color: var(--plasma-orange);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-row span {
    color: var(--nebula-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-row strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #FFF;
}

/* ==========================================================================
   8. Why Us (Split SVG Network)
   ========================================================================== */
.why-us {
    padding: var(--section-pad-y) 0;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-star);
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.why-item p {
    color: var(--nebula-gray);
    font-size: 0.95rem;
}

.why-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS purely generated particle network */
.particle-net {
    width: 100%;
    height: 100%;
    position: relative;
}

.p-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--starlight);
    border-radius: 50%;
    box-shadow: 0 0 10px #FFF;
}

.p-node:nth-child(1) {
    top: 20%;
    left: 20%;
    background: var(--plasma-orange);
    box-shadow: 0 0 20px var(--plasma-orange);
}

.p-node:nth-child(2) {
    top: 70%;
    left: 30%;
    background: var(--cyan-star);
    box-shadow: 0 0 20px var(--cyan-star);
}

.p-node:nth-child(3) {
    top: 40%;
    left: 80%;
    background: var(--cosmic-violet);
    box-shadow: 0 0 20px var(--cosmic-violet);
}

.p-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    transform-origin: left center;
}

.p-line-1 {
    top: 21%;
    left: 21%;
    width: 55%;
    height: 1px;
    transform: rotate(15deg);
}

.p-line-2 {
    top: 71%;
    left: 31%;
    width: 55%;
    height: 1px;
    transform: rotate(-30deg);
}

.p-line-3 {
    top: 21%;
    left: 21%;
    width: 52%;
    height: 1px;
    transform: rotate(70deg);
}

/* ==========================================================================
   9. Testimonials (Masonry / Floating)
   ========================================================================== */
.testimonials {
    padding: var(--section-pad-y) 0;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.test-card {
    background: var(--deep-space);
    padding: 40px;
    border-radius: var(--radius-md);
    border: var(--border-glass);
    position: relative;
}

.test-card:nth-child(2) {
    transform: translateY(40px);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.test-card p {
    font-size: 1.1rem;
    color: var(--starlight);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.t-client h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.t-client span {
    font-size: 0.8rem;
    color: var(--plasma-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   10. Contact / CTA (Deep Space Form)
   ========================================================================== */
.contact-cta {
    padding: var(--section-pad-y) 0;
    position: relative;
}

.contact-box {
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    box-shadow: inset 0 0 50px rgba(0, 229, 255, 0.05), var(--shadow-void);
    backdrop-filter: blur(10px);
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: var(--cyan-star);
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.c-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.c-info p {
    color: var(--nebula-gray);
    margin-bottom: 40px;
}

.c-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-method svg {
    width: 24px;
    height: 24px;
    stroke: var(--cyan-star);
    fill: none;
    stroke-width: 1.5;
}

.c-method h4 {
    margin: 0;
    font-size: 1rem;
    color: #FFF;
}

.c-method span {
    color: var(--nebula-gray);
    font-size: 0.9rem;
}

.c-form .f-group {
    margin-bottom: 25px;
    position: relative;
}

.c-form input,
.c-form select,
.c-form textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #FFF;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.c-form input:focus,
.c-form select:focus,
.c-form textarea:focus {
    border-color: var(--plasma-orange);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
}

.c-form textarea {
    height: 140px;
    resize: none;
}

.c-form select {
    appearance: none;
    color: var(--nebula-gray);
}

.c-form select option {
    background: var(--void-black);
    color: #FFF;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #020305;
    padding-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--cosmic-violet);
    filter: blur(200px);
    opacity: 0.15;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.f-logo {
    height: 45px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.f-desc {
    color: var(--nebula-gray);
    max-width: 350px;
    margin-bottom: 25px;
}

.f-socials {
    display: flex;
    gap: 15px;
}

.f-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    transition: var(--transition-fast);
    cursor: none;
}

.f-socials a:hover {
    background: var(--plasma-orange);
    border-color: var(--plasma-orange);
    box-shadow: var(--shadow-plasma);
    transform: translateY(-3px);
}

.f-title {
    font-size: 1.1rem;
    color: #FFF;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.f-links li {
    margin-bottom: 12px;
}

.f-links a {
    color: var(--nebula-gray);
    transition: var(--transition-fast);
    cursor: none;
}

.f-links a:hover {
    color: var(--cyan-star);
    padding-left: 5px;
}

.f-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--nebula-gray);
    align-items: center;
}

.f-contact svg {
    width: 20px;
    height: 20px;
    stroke: var(--plasma-orange);
    flex-shrink: 0;
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.f-bottom p {
    color: var(--nebula-gray);
    font-size: 0.9rem;
}

.f-legal a {
    color: var(--nebula-gray);
    margin-left: 25px;
    font-size: 0.9rem;
    cursor: none;
}

.f-legal a:hover {
    color: #FFF;
}

/* ==========================================================================
   Legal Pages Specific
   ========================================================================== */
.legal-header {
    padding: 200px 20px 100px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at top, rgba(98, 0, 234, 0.1), transparent 70%);
}

.legal-header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.legal-content {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: var(--deep-space);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: var(--border-glass);
    box-shadow: var(--shadow-void);
}

.legal-card h2 {
    font-size: 1.8rem;
    color: var(--cyan-star);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: var(--starlight);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--starlight);
    list-style: square;
}

.legal-card li {
    margin-bottom: 10px;
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatSpace {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes orbitSpin {
    100% {
        transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg);
    }
}

@keyframes satelliteHover {

    0%,
    100% {
        transform: translateZ(100px) translateY(0);
    }

    50% {
        transform: translateZ(100px) translateY(-15px);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {

    .hero-grid,
    .sys-grid,
    .why-layout,
    .contact-box {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        height: 450px;
    }

    .orbital-system {
        transform: scale(0.8);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-box {
        padding: 50px;
    }
}

@media (max-width: 900px) {

    .sol-grid,
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rep-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-core,
    .cursor-trail {
        display: none;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .nav-list {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(3, 5, 8, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
    }

    .nav-list.active {
        right: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hamburger.active {
        background: transparent;
    }

    .hamburger.active::before {
        transform: rotate(45deg);
        top: 0;
    }

    .hamburger.active::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .sol-grid,
    .ind-grid,
    .test-grid {
        grid-template-columns: 1fr;
    }

    .test-card:nth-child(2) {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .f-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .f-legal a {
        display: block;
        margin: 10px 0;
    }

    .contact-box {
        padding: 30px;
    }
}