:root {
    --bg: #05070d;
    --accent: #f59e0b;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.74);
    --dark-card: rgba(255, 255, 255, 0.055);
    --border: rgba(255, 255, 255, 0.12);

    --heading-duration: 1.3s;
    --heading-delay-1: 0.4s;
    --heading-delay-2: 1.2s;
    --heading-delay-3: 2s;
    --heading-rise: 34px;
    --heading-blur: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    -webkit-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 1px;
}

html,
body {
    min-height: 100%;
    height: 100%;
}

body {
    background: var(--bg);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}

main.hero,
section,
footer {
    -webkit-scroll-snap-align: start;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

html.is-programmatic-scroll,
html.is-programmatic-scroll body {
    -webkit-scroll-snap-type: none;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

/* SHARED HEADING ANIMATION */

.animated-heading {
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    color: var(--white);
}


.animated-heading span {
    display: block;
    opacity: 0;
    transform: translateY(var(--heading-rise));
}

.animated-heading.in-view span {
    animation: revealLine var(--heading-duration) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animated-heading span:nth-child(1) {
    animation-delay: var(--heading-delay-1);
}

.animated-heading span:nth-child(2) {
    animation-delay: var(--heading-delay-2);
}

.animated-heading span:nth-child(3) {
    animation-delay: var(--heading-delay-3);
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 45%, rgba(245, 158, 11, 0.12), transparent 28%),
        radial-gradient(circle at 60% 55%, rgba(34, 197, 94, 0.08), transparent 34%),
        linear-gradient(90deg, #05070d 0%, #071019 52%, #05070d 100%);
}

/* HERO IMAGE */

.hero-art {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-art img {
    position: absolute;
    top: 50%;
    right: 0;
    height: 100vh;
    width: auto;
    transform: translateY(-50%);

    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 18%, black 100%),
        linear-gradient(to bottom, transparent 0%, black 3%, black 88%, transparent 100%);
    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(to right, transparent 0%, black 18%, black 100%),
        linear-gradient(to bottom, transparent 0%, black 3%, black 88%, transparent 100%);
    mask-composite: intersect;
}

/* HERO OVERLAYS */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(5, 7, 13, 0.98) 0%,
        rgba(5, 7, 13, 0.88) 24%,
        rgba(5, 7, 13, 0.32) 55%,
        rgba(5, 7, 13, 0.64) 100%
    );
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(5, 7, 13, 0.15) 0%,
        rgba(5, 7, 13, 0) 45%,
        rgba(5, 7, 13, 0.35) 72%,
        rgba(5, 7, 13, 0.88) 90%,
        #05070d 100%
    );
}

/* HERO TEXT */

.hero-copy {
    position: relative;
    z-index: 10;
    width: min(440px, 86vw);
    padding-left: clamp(24px, 4vw, 72px);
    padding-top: clamp(70px, 13vh, 150px);
}

.hero-heading {
    font-size: clamp(2.4rem, 4vw, 4.9rem);
    line-height: 1.42;
    letter-spacing: 0.18em;
}

.hero-tagline {
    margin-top: 30px;
    font-family: Arial, sans-serif;
    font-size: clamp(0.9rem, 1.15vw, 1.2rem);
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);

    opacity: 0;
    transform: translateY(24px);
    animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 2.8s;
}

.hero-tagline span {
    color: var(--accent);
    margin: 0 10px;
}

.hero-accent {
    width: 60px;
    height: 2px;
    margin: 38px 0;
    background: var(--accent);

    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    animation: revealAccent 0.8s ease-out forwards;
    animation-delay: 3.2s;
}

.hero-description {
    max-width: 380px;
    font-family: Arial, sans-serif;
    font-size: clamp(1.05rem, 1.18vw, 1.22rem);
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 0;
    margin-top: 0;
    opacity: 0;
    transform: translateY(24px);
    animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 3.5s;
}
.hero-capabilities {
    position: absolute;
    z-index: 10;
    left: clamp(24px, 4vw, 72px);
    bottom: clamp(24px, 5vh, 60px);

    display: flex;
    gap: clamp(18px, 3vw, 50px);
    align-items: flex-start;

    opacity: 0;
    transform: translateY(24px);
    animation: revealIcons 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 4s;
}

@media (max-width: 1320px), (max-height: 840px) {
    .hero-capabilities {
        position: relative;
        left: auto;
        bottom: auto;
        right: auto;
        width: min(100%, 1200px);
        margin: clamp(28px, 4vh, 48px) clamp(24px, 4vw, 72px) 0;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}


/* HERO CAPABILITY CARDS */
.capability {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--dark-card);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    color: var(--white);
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: border 0.18s, box-shadow 0.18s, background 0.18s, transform 0.25s;
    box-shadow: 0 2px 18px 0 rgba(34, 34, 34, 0.08);
    text-decoration: none;
    padding: 1.1rem 1.2rem 0.7rem 1.2rem;
    margin-bottom: 2rem;
    min-width: 220px;
    max-width: 340px;
    gap: 0.5rem;
}

.capability img {
    width: clamp(50px, 4.5vw, 72px);
    height: clamp(50px, 4.5vw, 72px);
    margin-bottom: 12px;
    filter: brightness(1.15);
}

.capability span {
    font-family: Arial, sans-serif;
    font-size: clamp(0.7rem, 0.82vw, 0.92rem);
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.capability:hover,
.capability:focus-visible {
    border: 1.5px solid var(--accent);
    background: rgba(245, 158, 11, 0.09);
    box-shadow: 0 4px 32px 0 rgba(245, 158, 11, 0.13);
    transform: translateY(-5px);
}

.capability:hover img,
.capability:focus-visible img {
    filter:
        brightness(1.15)
        drop-shadow(0 0 8px rgba(245, 158, 11, 0.8))
        drop-shadow(0 0 20px rgba(245, 158, 11, 0.4));
}

/* ==========================================================
   SHARED VISUAL CARD SYSTEM
   ========================================================== */

.visual-card {
    --card-width: 560px;
    --card-image-height: 360px;

    position: absolute;
    z-index: 1;

    width: min(var(--card-width), 82vw);
    padding: 20px;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.085),
            rgba(255,255,255,0.025)
        );

    backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.38);

    overflow: hidden;

    opacity: 0;
    transform: translateY(50px);

    animation:
        cardAppear 1.1s cubic-bezier(0.16,1,0.3,1) forwards;

    animation-timeline: view();

    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.visual-card:hover {
    opacity: 1;
    z-index: 4;
}

.quad-card {
    position: absolute;
}

.quad-card .quad-hover-video {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: var(--card-image-height);
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.quad-card:hover .quad-hover-video {
    opacity: 1;
}

.quad-card > img {
    position: relative;
    z-index: 1;
    transition: opacity 0.25s ease;
}

.quad-card:hover > img {
    opacity: 0;
}

.visual-card img {
    transform-origin: center center;
    transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;

    display: block;
    width: 100%;
    height: var(--card-image-height);

    object-fit: contain;

    margin-bottom: 18px;

    filter:
        drop-shadow(
            0 24px 32px rgba(0,0,0,0.55)
        );
}

.visual-card:hover img {
    transform: scale(1.08);
}

.visual-card h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 1rem;
    font-weight: 500;

    letter-spacing: 0.13em;

    color: var(--white);

    text-transform: uppercase;
}

.visual-card p {
    margin-top: 12px;

    font-family: Arial, sans-serif;
    font-size: 0.94rem;

    line-height: 1.65;

    color: var(--muted);
}

/* DRONE PLATFORMS SECTION */


.platforms-section {
    position: relative;
    min-height: 100vh;
    padding: clamp(36px, 5vh, 88px) clamp(24px, 5vw, 90px);
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(245, 158, 11, 0.12), transparent 28%),
        radial-gradient(circle at 78% 55%, rgba(34, 197, 94, 0.1), transparent 32%),
        linear-gradient(180deg, #05070d 0%, #071019 46%, #05070d 100%);
}

.platforms-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.section-glow {
    position: absolute;
    right: -160px;
    top: 20%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.14);
    filter: blur(90px);
    pointer-events: none;
}


.platforms-content {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    min-height: 70vh;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.platforms-text {
    opacity: 1;
    transform: none;
}

.section-kicker {
    margin-bottom: 24px;
    font-family: "Orbitron", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.32em;
    color: var(--accent);

    opacity: 0;
    transform: translateY(24px);
    animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-timeline: view();
    animation-range: entry 12% cover 30%;
}

.platform-heading {
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.platform-heading span {
    animation-timeline: view();
}

.platform-heading span:nth-child(1) {
    animation-range: entry 14% cover 30%;
}

.platform-heading span:nth-child(2) {
    animation-range: entry 20% cover 36%;
}

.platform-heading span:nth-child(3) {
    animation-range: entry 26% cover 42%;
}

.platforms-text p {
    max-width: 660px;
    margin-top: 26px;
    font-family: Arial, sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.85;
    color: var(--muted);
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.platform-features div,
.counter-features div,
.fpv-features div {
    min-height: 120px;
    padding: 20px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(16px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, background 0.28s ease;
}

.platform-features div:hover,
.counter-features div:hover,
.fpv-features div:hover {
    transform: scale(1.05);
    border-color: rgba(245, 158, 11, 0.38);
    background: rgba(245, 158, 11, 0.08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.platform-features span,
.fpv-features span,
.counter-features span {
    display: block;
    margin-bottom: 18px;
    font-family: "Orbitron", sans-serif;
    font-size: 0.78rem;
    color: var(--accent);
}

.platform-features strong,
.fpv-features strong,
.counter-features strong {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.45;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

/* DRONE CARDS */

.platforms-visual {
    position: relative;
    min-height: 620px;
}

.drone-card {
    --card-width: 520px;
    --card-image-height: 320px;
}

.quad-card {
    top: 20px;
    left: 0;
    animation-range: entry 12% cover 38%;
}

.fixed-card {
    right: 0;
    bottom: -110px;
    animation-range: entry 18% cover 45%;
}

/* ANIMATIONS */

@keyframes revealLine {
    from {
        opacity: 0;
        transform: translateY(var(--heading-rise));
        filter: blur(var(--heading-blur));
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes revealAccent {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes revealIcons {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes neonTubeFlicker {
    0%, 18%, 22%, 24%, 55%, 100% {
        opacity: 1;
        -webkit-text-stroke-color: rgba(245, 158, 11, 0.92);
        text-shadow:
            0 0 10px rgba(245, 158, 11, 0.45),
            0 0 24px rgba(245, 158, 11, 0.28),
            0 0 42px rgba(245, 158, 11, 0.16);
        filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.2));
        transform: translateZ(0) scale(1);
    }

    19%, 21%, 23% {
        opacity: 0.72;
        -webkit-text-stroke-color: rgba(245, 158, 11, 0.42);
        text-shadow:
            0 0 4px rgba(245, 158, 11, 0.14),
            0 0 10px rgba(245, 158, 11, 0.08);
        filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.06));
        transform: translateZ(0) scale(0.995);
    }

    56%, 58% {
        opacity: 0.84;
        -webkit-text-stroke-color: rgba(245, 158, 11, 0.66);
        text-shadow:
            0 0 8px rgba(245, 158, 11, 0.34),
            0 0 18px rgba(245, 158, 11, 0.2),
            0 0 32px rgba(245, 158, 11, 0.12);
        filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.12));
        transform: translateZ(0) scale(1.01);
    }
}

/* TABLET */

@media (max-width: 1100px) {
    .hero-art img {
        right: -18vw;
        height: 100vh;
    }

    .hero-copy {
        width: min(520px, 88vw);
    }

    .hero-capabilities {
        right: 24px;
        flex-wrap: wrap;
    }

    .platforms-content {
        grid-template-columns: 1fr;
    }

    .platforms-visual {
        min-height: 760px;
    }

    .quad-card {
        left: 0;
    }

    .fixed-card {
        right: 0;
    }
}

/* MOBILE */

@media (max-width: 760px) {
    .hero {
        min-height: 100svh;
    }

    .hero-art {
        height: 100svh;
    }

    .hero-art img {
        height: 100svh;
        right: -70vw;
        opacity: 0.48;
    }

    .hero::before {
        background: rgba(5, 7, 13, 0.78);
    }

    .hero-copy {
        padding-right: 24px;
        padding-top: 48px;
    }

    .hero-heading {
        letter-spacing: 0.11em;
    }

    .hero-capabilities {
        left: 16px;
        right: 16px;
        bottom: 18px;
        justify-content: center;
        gap: 14px;
    }

    .capability {
        width: 82px;
    }

    .platforms-section {
        padding: 80px 20px;
    }

    .platform-features {
        grid-template-columns: 1fr;
    }

    .platforms-visual {
        min-height: auto;
        display: grid;
        gap: 24px;
        margin-top: 40px;
    }

    .drone-card {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .drone-card {
        --card-image-height: 190px;
    }
}

/* COUNTER-UAS SECTION */

.counter-uas-section {
    position: relative;
    min-height: 100vh;
    padding: clamp(90px, 12vh, 150px) clamp(24px, 5vw, 90px);
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 22%, rgba(245, 158, 11, 0.13), transparent 28%),
        radial-gradient(circle at 18% 62%, rgba(34, 197, 94, 0.09), transparent 34%),
        linear-gradient(180deg, #05070d 0%, #081018 48%, #05070d 100%);
}

.counter-uas-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.counter-glow {
    position: absolute;
    left: -180px;
    top: 28%;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.13);
    filter: blur(95px);
    pointer-events: none;
}

.counter-uas-content {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    min-height: 72vh;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(44px, 6vw, 100px);
    align-items: center;
}

.counter-heading {
    max-width: 760px;
    font-size: clamp(2.8rem, 6vw, 6.8rem);
    line-height: 1.05;
    letter-spacing: 0.12em;
}

.counter-heading span {
    animation-timeline: view();
}

.counter-heading span:nth-child(1) {
    animation-range: entry 14% cover 30%;
}

.counter-heading span:nth-child(2) {
    animation-range: entry 20% cover 36%;
}

.counter-heading span:nth-child(3) {
    animation-range: entry 26% cover 42%;
}

.counter-copy > p {
    max-width: 680px;
    margin-top: 26px;
    font-family: Arial, sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.85;
    color: var(--muted);
}

.zax-block {
    margin-top: 40px;
}

.zax-mark {
    display: inline-block;
    font-family: "Orbitron", sans-serif;
    font-size: clamp(3.2rem, 7vw, 7.2rem);
    line-height: 0.95;
    letter-spacing: 0.16em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 158, 11, 0.92);
    text-shadow:
        0 0 8px rgba(245,158,11,0.28),
        0 0 20px rgba(245,158,11,0.12);
    filter: drop-shadow(0 0 12px rgba(245,158,11,0.16));
    animation: neonTubeFlicker 5.2s infinite both;
    will-change: opacity, text-shadow, filter, transform;
    -webkit-font-smoothing: antialiased;
}

.zax-block p {
    margin-top: 14px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
}

.counter-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.counter-features div {
    min-height: 112px;
    padding: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(16px);
}

.counter-features span {
    display: block;
    margin-bottom: 16px;
    font-family: "Orbitron", sans-serif;
    font-size: 0.72rem;
    color: var(--accent);
}

.counter-features strong {
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    line-height: 1.45;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

.counter-visual {
    position: relative;
    min-height: 640px;
}

.counter-card {
    --card-width: 520px;
    --card-image-height: 320px;
}

/* unified hover z-index now handled by .visual-card:hover */

.radar-card {
    top: 10px;
    right: 0;
    animation-range: entry 12% cover 38%;
}

.interceptor-card {
    left: 450px;
    bottom: -120px;
    animation-range: entry 18% cover 45%;
}

/* COUNTER-UAS RESPONSIVE */

@media (max-width: 1100px) {
    .counter-uas-content {
        grid-template-columns: 1fr;
    }

    .counter-visual {
        min-height: 760px;
    }

    .radar-card {
        right: 0;
    }

    .interceptor-card {
        left: 0;
    }
}

@media (max-width: 760px) {
    .counter-uas-section {
        padding: 80px 20px;
    }

    .counter-heading {
        letter-spacing: 0.08em;
    }

    .counter-features {
        grid-template-columns: 1fr;
    }

    .counter-visual {
        min-height: auto;
        display: grid;
        gap: 24px;
        margin-top: 40px;
    }

    .counter-card {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .counter-card {
        --card-image-height: 200px;
    }
}

/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #05070d;
    padding: 70px 24px 24px;
}

.footer-inner {
    max-width: 1380px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.footer-brand img {
    height: 200px;
    width: auto;
}

.footer-brand h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--white);
}

.footer-brand p {
    margin-top: 12px;

    font-family: Arial, sans-serif;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-company {
    display: flex;
    gap: 80px;
}

.footer-item span {
    display: block;
    margin-bottom: 12px;

    font-family: "Orbitron", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--accent);
}

.footer-item p {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--white);
}

.footer-bottom {
    max-width: 1380px;
    margin: 50px auto 0;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.08);

    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-company {
        flex-direction: column;
        gap: 30px;
    }
}

/* FPV DRONES SECTION */

.fpv-section {
    position: relative;
    min-height: 100vh;
    padding: clamp(90px, 12vh, 150px) clamp(24px, 5vw, 90px);
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 28%, rgba(245, 158, 11, 0.12), transparent 30%),
        radial-gradient(circle at 78% 64%, rgba(34, 197, 94, 0.09), transparent 34%),
        linear-gradient(180deg, #05070d 0%, #071019 48%, #05070d 100%);
}

.fpv-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.fpv-glow {
    position: absolute;
    right: -180px;
    top: 30%;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.13);
    filter: blur(95px);
    pointer-events: none;
}

.fpv-content {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    min-height: 72vh;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(44px, 6vw, 100px);
    align-items: center;
}

.fpv-heading {
    max-width: 760px;
    font-size: clamp(2.4rem, 4.8vw, 5.5rem);
    line-height: 1.12;
    letter-spacing: 0.1em;
}

.fpv-heading span {
    animation-timeline: view();
}

.fpv-heading span:nth-child(1) {
    animation-range: entry 14% cover 30%;
}

.fpv-heading span:nth-child(2) {
    animation-range: entry 20% cover 36%;
}

.fpv-heading span:nth-child(3) {
    animation-range: entry 26% cover 42%;
}

.fpv-copy > p {
    max-width: 680px;
    margin-top: 26px;
    font-family: Arial, sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.85;
    color: var(--muted);
}

.fpv-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.fpv-visual {
    position: relative;
    min-height: auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: clamp(40px, 5vw, 70px);
    align-items: start;
}

.fpv-card {
    --card-width: 520px;
    --card-image-height: 320px;

    position: relative;
    width: min(var(--card-width), 82vw);
}

.fpv-card-1 {
    margin-top: 0;
    animation-range: entry 10% cover 34%;
}

.fpv-card-2 {
    margin-top: 80px;
    animation-range: entry 15% cover 38%;
}

.fpv-card-3 {
    margin-top: 40px;
    animation-range: entry 20% cover 42%;
}

.fpv-card-4 {
    margin-top: 120px;
    animation-range: entry 25% cover 46%;
}

/* FPV RESPONSIVE */

@media (max-width: 1100px) {
    .fpv-content {
        grid-template-columns: 1fr;
    }

    .fpv-visual {
        min-height: 760px;
    }
}

@media (max-width: 760px) {
    .fpv-section {
        padding: 80px 20px;
    }

    .fpv-features {
        grid-template-columns: 1fr;
    }

    .fpv-visual {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .fpv-card {
        --card-image-height: 320px;
        margin-top: 0;
    }
}
