/* ==========================================================================
   AETHER TECHNICAL - PREMIUM REDESIGN
   Design System & Styles
   ========================================================================== */

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
    /* Colors - Primary */
    --color-navy-900: #050810;
    --color-navy-800: #0a0e27;
    --color-navy-700: #0f1419;
    --color-navy-600: #1a1a2e;
    --color-navy-500: #16213e;
    --color-navy-400: #1f2b4d;

    /* Colors - Teal */
    --color-teal-500: #3a9dad;
    --color-teal-400: #2a7b8c;
    --color-teal-300: #1e5a66;
    --color-teal-200: #164850;
    --color-teal-glow: rgba(58, 157, 173, 0.4);

    /* Colors - Copper */
    --color-copper-500: #d96e3b;
    --color-copper-400: #c45d2c;
    --color-copper-300: #a34b20;
    --color-copper-glow: rgba(217, 110, 59, 0.4);

    /* Colors - Neutral */
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;

    /* Typography */
    --font-heading: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height-tight: 1.1;
    --line-height-snug: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-padding: var(--space-6);

    /* Effects */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow-teal: 0 0 30px var(--color-teal-glow);
    --shadow-glow-copper: 0 0 30px var(--color-copper-glow);

    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-slower: 500ms ease;

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-cursor: 400;
    --z-preloader: 500;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--color-white);
    background-color: var(--color-navy-800);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
}

ul,
ol {
    list-style: none;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gradient {
    background: linear-gradient(
        135deg,
        var(--color-teal-500),
        var(--color-copper-500)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scroll-anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Page Loader - Aether Loading Animation
   ========================================================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a1628;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition:
        opacity 0.5s ease-out,
        visibility 0.5s ease-out;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 140px;
    height: 140px;
}

/* Pulsing glow behind the letter */
.loader .glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(101, 192, 206, 0.25) 0%,
        rgba(101, 192, 206, 0.1) 40%,
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0;
    animation: glowPulse 3.5s ease-in-out infinite;
    animation-delay: 3.5s;
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* The solid A letterform */
.loader .letter-a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 120px;
    font-weight: 500;
    color: #65c0ce;
    opacity: 0;
    animation: revealLetter 4s ease-in-out forwards;
}

@keyframes revealLetter {
    0%,
    35% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    65% {
        opacity: 0.85;
    }
    75%,
    100% {
        opacity: 1;
    }
}

/* Converging dots */
.loader .dot {
    position: absolute;
    background: #65c0ce;
    border-radius: 50%;
    opacity: 0;
    animation: convergeAndFade 4s ease-in-out forwards;
}

@keyframes convergeAndFade {
    0% {
        left: var(--start-x);
        top: var(--start-y);
        opacity: 0;
        transform: scale(0.2);
    }
    8% {
        opacity: 0.6;
    }
    55% {
        left: var(--end-x);
        top: var(--end-y);
        opacity: 0.9;
        transform: scale(1);
    }
    72%,
    100% {
        left: var(--end-x);
        top: var(--end-y);
        opacity: 0;
        transform: scale(0.3);
    }
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */

.cursor {
    display: none;
}

@media (pointer: fine) {
    .cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: var(--z-cursor);
    }

    .cursor-dot {
        position: absolute;
        width: 8px;
        height: 8px;
        background: var(--color-teal-500);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition:
            transform 0.1s ease,
            background 0.2s ease;
    }

    .cursor-ring {
        position: absolute;
        width: 40px;
        height: 40px;
        border: 1px solid var(--color-teal-500);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.5;
        transition:
            transform 0.15s ease,
            opacity 0.2s ease,
            border-color 0.2s ease;
    }

    .cursor.hover .cursor-dot {
        transform: translate(-50%, -50%) scale(1.5);
        background: var(--color-copper-500);
    }

    .cursor.hover .cursor-ring {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
        border-color: var(--color-copper-500);
    }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-4) 0;
    z-index: var(--z-sticky);
    transition:
        background var(--transition-slow),
        padding var(--transition-slow),
        box-shadow var(--transition-slow);
}

.nav.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-3) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.nav-logo-img {
    width: 40px;
    height: auto;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.nav-links {
    display: none;
    align-items: center;
    gap: var(--space-8);
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--space-2) 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--color-teal-500),
        var(--color-copper-500)
    );
    transition: width var(--transition-base);
}

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

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

.nav-link-cta {
    padding: var(--space-2) var(--space-5);
    background: linear-gradient(
        135deg,
        var(--color-teal-500),
        var(--color-teal-400)
    );
    border-radius: var(--radius-full);
    color: var(--color-white);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: linear-gradient(
        135deg,
        var(--color-copper-500),
        var(--color-copper-400)
    );
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-copper);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-2);
    z-index: calc(var(--z-modal) + 1);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition:
        transform var(--transition-base),
        opacity var(--transition-base),
        background var(--transition-base);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background: var(--color-copper-500);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background: var(--color-copper-500);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-navy-900);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    text-align: center;
}

.mobile-menu-link {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-300);
    transition:
        color var(--transition-base),
        transform var(--transition-base);
}

.mobile-menu-link:hover {
    color: var(--color-teal-500);
    transform: translateX(10px);
}

.mobile-menu-cta {
    margin-top: var(--space-8);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(
        135deg,
        var(--color-teal-500),
        var(--color-copper-500)
    );
    border-radius: var(--radius-full);
    color: var(--color-white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-16) var(--container-padding);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-teal-500);
    border-radius: 50%;
    opacity: 0;
}

/* Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-teal-500);
    top: -200px;
    right: -200px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--color-copper-500);
    bottom: -100px;
    left: -100px;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--color-teal-400);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Data Streams */
.hero-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-stream {
    position: absolute;
    top: var(--top);
    left: -200px;
    width: 200px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-teal-500),
        transparent
    );
    animation: streamFlow var(--duration) linear var(--delay) infinite;
}

@keyframes streamFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 400px));
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: var(--z-base);
    max-width: 800px;
    padding: 0 var(--container-padding);
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0;
        margin-left: calc(
            (100vw - var(--container-max)) / 2 + var(--container-padding)
        );
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(58, 157, 173, 0.1);
    border: 1px solid rgba(58, 157, 173, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-teal-500);
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(20px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-teal-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(30px);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: var(--font-size-6xl);
    }
}

.hero-title-line {
    display: block;
}

.hero-title-gradient {
    background: linear-gradient(
        135deg,
        var(--color-teal-500),
        var(--color-copper-500)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-8);
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: var(--font-size-xl);
    }
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    opacity: 0;
    transform: translateY(30px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

.hero-stat {
    text-align: center;
}

@media (min-width: 640px) {
    .hero-stat {
        text-align: left;
    }
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-teal-500);
    line-height: 1;
}

.hero-stat-suffix {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-teal-500);
}

.hero-stat-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin-top: var(--space-1);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    opacity: 0;
}

.hero-scroll-text {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray-500);
}

.hero-scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-gray-600);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-line {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 2px;
    height: 8px;
    background: var(--color-teal-500);
    border-radius: 1px;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

/* Hero Logo - Centered */
.hero-logo-centered {
    position: relative;
    z-index: var(--z-base);
    width: 100%;
    max-width: 800px;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-logo-centered {
        max-width: 900px;
    }
}

@media (min-width: 1280px) {
    .hero-logo-centered {
        max-width: 1000px;
    }
}

.hero-logo-container {
    width: 100%;
}

.hero-logo-container svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Intro Section
   ========================================================================== */

/* Hero + Intro Wrapper - contains the shared copper orb */
.hero-intro-wrapper {
    position: relative;
}

.hero-intro-wrapper::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(217, 110, 59, 0.25) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

.intro {
    position: relative;
    padding: var(--space-24) 0 var(--space-32);
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Data streams flowing downward */
.intro-streams {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    pointer-events: none;
}

.intro-stream {
    position: absolute;
    left: var(--left);
    top: -100px;
    width: 2px;
    height: 100px;
    background: linear-gradient(
        180deg,
        transparent,
        var(--color-teal-500),
        transparent
    );
    opacity: 0.4;
    animation: streamFlowDown var(--duration) linear var(--delay) infinite;
}

@keyframes streamFlowDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(300px);
        opacity: 0;
    }
}

.intro-content {
    position: relative;
    z-index: var(--z-base);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(30px);
}

@media (min-width: 768px) {
    .intro-title {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .intro-title {
        font-size: var(--font-size-6xl);
    }
}

.intro-title-line {
    display: block;
}

.intro-title-gradient {
    background: linear-gradient(
        135deg,
        var(--color-teal-500),
        var(--color-copper-500)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-10);
    opacity: 0;
    transform: translateY(30px);
}

@media (min-width: 768px) {
    .intro-subtitle {
        font-size: var(--font-size-xl);
    }
}

.intro-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    opacity: 0;
    transform: translateY(30px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--color-teal-500),
        var(--color-teal-400)
    );
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(58, 157, 173, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        var(--color-copper-500),
        var(--color-copper-400)
    );
    box-shadow: 0 4px 20px rgba(217, 110, 59, 0.4);
    transform: translateY(-2px);
}

.btn-primary:hover .btn-icon svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-teal-500);
    background: rgba(58, 157, 173, 0.1);
}

.btn-glow {
    box-shadow: var(--shadow-glow-teal);
}

.btn-glow:hover {
    box-shadow: var(--shadow-glow-copper);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.section-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            ellipse at 100% 55%,
            rgba(58, 157, 173, 0.1),
            transparent 50%
        ),
        radial-gradient(
            ellipse at bottom left,
            rgba(217, 110, 59, 0.1),
            transparent 50%
        );
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-8);
}

.section-header-light {
    color: var(--color-gray-800);
}

.section-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(58, 157, 173, 0.1);
    border: 1px solid rgba(58, 157, 173, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-teal-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-4xl);
    }
}

.section-title-dark {
    color: var(--color-gray-800);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    position: relative;
    padding: var(--space-8) 0 var(--space-24);
    background: var(--color-navy-800);
}

.services-bg {
    background: linear-gradient(
        180deg,
        var(--color-navy-800) 0%,
        var(--color-navy-900) 100%
    );
}

.services-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.service-row {
    position: relative;
    display: flex;
    padding: var(--space-4) 0;
}

.service-row-left {
    justify-content: flex-start;
}

.service-row-right {
    justify-content: flex-end;
}

.service-row .service-card {
    width: 100%;
    max-width: 500px;
}

/* Data streams SVG overlay - renders behind cards */
.data-streams-svg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

/* Data stream connectors */
.data-stream-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    overflow: visible;
}

.data-stream-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.data-stream-path {
    fill: none;
    stroke-linecap: round;
}

.data-stream-path.stream-thin {
    opacity: 0.6;
}

.data-stream-particle {
    fill: var(--color-teal-500);
    opacity: 0;
}

@media (min-width: 768px) {
    .service-row .service-card {
        width: 45%;
        max-width: 500px;
        z-index: 2;
        position: relative;
    }

    .services-flow {
        gap: 0;
        position: relative;
    }

    .service-row {
        padding: var(--space-6) 0;
        min-height: 300px;
    }

    /* Data streams SVG overlay - styles controlled via JavaScript */
}

.service-card {
    position: relative;
    z-index: 2;
    background: var(--color-navy-700);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    overflow: hidden;
    transition:
        transform var(--transition-slow),
        box-shadow var(--transition-slow);
    opacity: 0;
    transform: translateY(40px);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(
        180deg,
        var(--color-teal-500),
        var(--color-copper-500)
    );
    transition: height var(--transition-slow);
}

.service-card:hover,
.service-card.is-active {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before,
.service-card.is-active::before {
    height: 100%;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(58, 157, 173, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 157, 173, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 1;
    transition: opacity var(--transition-slow);
}

.service-card:hover .service-card-bg,
.service-card.is-active .service-card-bg {
    opacity: 1;
    background-image:
        linear-gradient(rgba(58, 157, 173, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 157, 173, 0.08) 1px, transparent 1px);
}

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 157, 173, 0.1);
    border: 1px solid rgba(58, 157, 173, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    transition: all var(--transition-base);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-teal-500);
    transition: color var(--transition-base);
}

.service-card:hover .service-icon,
.service-card.is-active .service-icon {
    background: var(--color-teal-500);
    border-color: var(--color-teal-500);
    box-shadow: var(--shadow-glow-teal);
}

.service-card:hover .service-icon svg,
.service-card.is-active .service-icon svg {
    color: var(--color-white);
}

.service-number {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    font-family: var(--font-heading);
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-teal-500);
    opacity: 0.1;
    line-height: 1;
}

.service-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3);
    transition: color var(--transition-base);
}

.service-card:hover .service-title,
.service-card.is-active .service-title {
    color: var(--color-teal-500);
}

.service-desc {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-4);
}

.service-features {
    margin-bottom: var(--space-4);
}

.service-features li {
    position: relative;
    padding-left: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--color-gray-300);
    margin-bottom: var(--space-2);
}

.service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-teal-500);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-teal-500);
    transition:
        color var(--transition-base),
        gap var(--transition-base);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.service-link:hover {
    color: var(--color-copper-500);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Solutions Section
   ========================================================================== */

.solutions {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--color-gray-100);
}

.solutions-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.solution-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
}

@media (min-width: 1024px) {
    .solution-block {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.solution-block-reversed {
    direction: ltr;
}

@media (min-width: 1024px) {
    .solution-block-reversed .solution-visual {
        order: 2;
    }

    .solution-block-reversed .solution-content {
        order: 1;
    }
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-icon-large {
    width: 200px;
    height: 200px;
}

@media (min-width: 768px) {
    .solution-icon-large {
        width: 280px;
        height: 280px;
    }
}

.solution-shield,
.solution-star,
.solution-star-outline,
.solution-building,
.solution-window,
.solution-door,
.solution-growth,
.solution-growth-arrow {
    opacity: 0;
}

.solution-content {
    direction: ltr;
}

.solution-title {
    font-size: var(--font-size-2xl);
    color: var(--color-gray-800);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .solution-title {
        font-size: var(--font-size-3xl);
    }
}

.solution-desc {
    font-size: var(--font-size-base);
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

@media (min-width: 480px) {
    .solution-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.solution-feature svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-teal-500);
}

.solution-feature span {
    font-size: var(--font-size-sm);
    color: var(--color-gray-700);
    font-weight: var(--font-weight-medium);
}

/* ==========================================================================
   UAS Section
   ========================================================================== */

.uas {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--color-navy-900);
    overflow: hidden;
}

.uas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.uas-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(58, 157, 173, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 157, 173, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.uas-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(58, 157, 173, 0.15),
        transparent 60%
    );
    transform: translate(-50%, -50%);
}

.uas-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .uas-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

.uas-visual {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
}

.uas-drone {
    width: 100%;
    max-width: 400px;
}

.drone-body,
.drone-arm,
.drone-rotor,
.drone-motor,
.drone-camera,
.drone-lens,
.drone-gear,
.drone-gear-foot,
.drone-signal {
    opacity: 0;
}

.uas-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .uas-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.uas-feature {
    display: flex;
    gap: var(--space-4);
    opacity: 0;
    transform: translateX(30px);
}

.uas-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 157, 173, 0.1);
    border: 1px solid rgba(58, 157, 173, 0.3);
    border-radius: var(--radius-lg);
}

.uas-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-teal-500);
}

.uas-feature-content h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.uas-feature-content p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
}

.uas-cta {
    text-align: center;
    margin-top: var(--space-12);
    opacity: 0;
    transform: translateY(20px);
}

.uas-cta-text {
    font-size: var(--font-size-lg);
    color: var(--color-gray-300);
    margin-bottom: var(--space-4);
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--color-white);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--color-gray-200);
}

@media (min-width: 768px) {
    .process-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Line fill is now created dynamically in JavaScript for scroll-responsive animation */

.process-step {
    position: relative;
    display: flex;
    gap: var(--space-6);
    padding-bottom: var(--space-12);
    padding-left: var(--space-16);
    opacity: 0;
    transform: translateY(30px);
}

@media (min-width: 768px) {
    .process-step {
        padding-left: 0;
        justify-content: flex-end;
    }

    .process-step:nth-of-type(odd) .process-step-content {
        text-align: right;
    }

    .process-step:nth-of-type(even) {
        justify-content: flex-start;
    }

    .process-step:nth-of-type(even) .process-step-content {
        text-align: left;
    }
}

.process-step-marker {
    position: absolute;
    left: 0;
    top: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: 50%;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .process-step-marker {
        left: 50%;
        top: 40px;
        transform: translateX(-50%);
    }
}

.process-step.active .process-step-marker {
    background: var(--color-teal-500);
    border-color: var(--color-teal-500);
    box-shadow: var(--shadow-glow-teal);
}

.process-step-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-gray-500);
    transition: color var(--transition-base);
}

.process-step.active .process-step-number {
    color: var(--color-white);
}

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

@media (min-width: 768px) {
    .process-step-content {
        flex: 0 0 calc(50% - 60px);
        max-width: calc(50% - 60px);
    }
}

.process-step-content h3 {
    font-size: var(--font-size-xl);
    color: var(--color-gray-800);
    margin-bottom: var(--space-2);
}

.process-step-content p {
    font-size: var(--font-size-base);
    color: var(--color-gray-600);
    line-height: var(--line-height-relaxed);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    position: relative;
    padding: var(--space-24) 0 12rem;
    background: var(--color-navy-800);
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at 2px 2px,
        rgba(58, 157, 173, 0.15) 1px,
        transparent 0
    );
    background-size: 40px 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content {
    opacity: 0;
    transform: translateX(-40px);
}

.about-text {
    font-size: var(--font-size-base);
    color: var(--color-gray-300);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-4);
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.about-value {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(58, 157, 173, 0.1);
    border: 1px solid rgba(58, 157, 173, 0.2);
    border-radius: var(--radius-lg);
}

.about-value-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-teal-500);
    border-radius: var(--radius-md);
}

.about-value-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.about-value span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
}

/* About Visual */
.about-visual {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(40px);
}

.about-graphic {
    width: 100%;
    max-width: 400px;
}

.about-ring,
.about-connection,
.about-node,
.about-center,
.about-center-fill,
.about-icon {
    opacity: 0;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    position: relative;
    padding: var(--space-24) 0;
    background: linear-gradient(
        135deg,
        var(--color-navy-900),
        var(--color-navy-800)
    );
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.contact-info {
    opacity: 0;
    transform: translateY(40px);
}

.contact-text {
    font-size: var(--font-size-lg);
    color: var(--color-gray-300);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 157, 173, 0.1);
    border: 1px solid rgba(58, 157, 173, 0.3);
    border-radius: var(--radius-lg);
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-teal-500);
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.contact-detail-label {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
}

.contact-detail-value {
    font-size: var(--font-size-base);
    color: var(--color-white);
    font-weight: var(--font-weight-medium);
}

a.contact-detail-value:hover {
    color: var(--color-teal-500);
}

/* Contact Form */
.contact-form-wrapper {
    opacity: 0;
    transform: translateY(40px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.form-group {
    margin-bottom: var(--space-6);
    position: relative;
}

.form-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-300);
    margin-bottom: var(--space-2);
}

.required {
    color: var(--color-copper-500);
}

.form-input {
    width: 100%;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
}

.form-input::placeholder {
    color: var(--color-gray-600);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-teal-500);
    background: rgba(58, 157, 173, 0.05);
    box-shadow: 0 0 0 3px rgba(58, 157, 173, 0.1);
}

.form-input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--color-teal-500),
        var(--color-copper-500)
    );
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transition: width var(--transition-base);
}

.form-input:focus ~ .form-input-line {
    width: 100%;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-privacy {
    margin-top: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--color-navy-900);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-4);
}

.footer-logo-img {
    width: 50px;
    height: auto;
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    line-height: var(--line-height-relaxed);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

@media (min-width: 640px) {
    .footer-links {
        justify-content: flex-end;
    }
}

.footer-link-group h4 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.footer-link-group a {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    padding: var(--space-1) 0;
    transition: color var(--transition-base);
}

.footer-link-group a:hover {
    color: var(--color-teal-500);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-8);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.footer-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-teal-500),
        var(--color-copper-500)
    );
    border-radius: 2px;
}

/* ==========================================================================
   Animations & Transitions
   ========================================================================== */

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-stream,
    .hero-scroll-line,
    .hero-badge-dot,
    .circuit-pulse {
        animation: none !important;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .nav,
    .page-loader,
    .cursor,
    .hero-bg,
    .hero-visual,
    .hero-scroll {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
