@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;1,700&family=Inter:wght@400;600;700;800&display=swap');

/* =====================================================
   ROOT / GLOBAL
   ===================================================== */

:root {
    --bg: #02050a;
    --panel: #07101a;
    --line: #123d6b;
    --blue: #0d7dff;
    --red: #ff2d24;
    --text: #f6f8fb;
    --muted: #9ba8ba;
    --max: 1500px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    position: relative;
    color: var(--text);
    font-family: Inter, Arial, sans-serif;

    background:
        radial-gradient(
            circle at 72% 12%,
            rgba(0, 112, 255, 0.13) 0,
            rgba(0, 70, 170, 0.05) 22%,
            transparent 45%
        ),
        radial-gradient(
            circle at 10% 30%,
            rgba(255, 35, 28, 0.045) 0,
            transparent 28%
        ),
        #02050a;
}

img,
video {
    display: block;
    max-width: 100%;
}

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

.shell {
    width: min(var(--max), calc(100% - 40px));
    margin: auto;
}


/* =====================================================
   TOP BAR / NAVIGATION
   ===================================================== */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;

    height: 74px;
    padding: 10px max(20px, calc((100vw - var(--max)) / 2));

    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 24px;

    background: #02050ae8;
    border-bottom: 1px solid #13395f;

    backdrop-filter: blur(16px);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.65),
        0 1px 0 rgba(20, 120, 255, 0.18);
}

.brand {
    position: relative;

    filter:
        drop-shadow(0 8px 12px rgba(0, 0, 0, 0.75))
        drop-shadow(0 0 10px rgba(0, 110, 255, 0.18));
}

.brand img,
.brand video {
    width: 190px;
    max-height: 54px;
    object-fit: contain;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.nav a {
    font: 800 15px 'Barlow Condensed';
    text-transform: uppercase;
}

.nav a:hover {
    color: var(--blue);
}

.menu-toggle {
    display: none;
}


/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 20px;

    border: 1px solid transparent;
    border-radius: 5px;

    color: white;
    font: 800 16px 'Barlow Condensed';

    cursor: pointer;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.50),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.12);

    box-shadow:
        0 13px 25px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn:active {
    transform: translateY(1px);

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.55),
        inset 0 1px 3px rgba(0, 0, 0, 0.40);
}

.primary {
    background: linear-gradient(#1789ff, #0054cb);
}

.danger {
    background: linear-gradient(#ff3d33, #b10f0b);
}

.outline {
    background: #05080c;
    border-color: #59606a;
}

.full {
    width: 100%;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 28px;
    align-items: center;

    padding: 30px 0 20px;
}

.hero h1 {
    margin: 0 0 24px;

    font:
        italic 800
        clamp(55px, 6vw, 105px) / 0.9
        'Barlow Condensed';

    text-shadow:
        0 5px 12px rgba(0, 0, 0, 0.80),
        0 12px 30px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
    color: var(--blue);

    text-shadow:
        0 0 18px rgba(13, 125, 255, 0.18),
        0 7px 18px rgba(0, 0, 0, 0.80);
}

.hero h1 em {
    color: var(--red);
    font-style: italic;

    text-shadow:
        0 0 18px rgba(255, 45, 36, 0.15),
        0 7px 18px rgba(0, 0, 0, 0.80);
}

.hero p {
    max-width: 620px;

    color: #c3ccd8;

    font-size: 18px;
    line-height: 1.7;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 24px;
}


/* =====================================================
   HERO VIDEO / IMAGE FRAME
   ===================================================== */

.hero-video-frame {
    position: relative;
    isolation: isolate;

    min-height: 520px;

    overflow: visible;

    border: 1px solid rgba(31, 132, 255, 0.65);
    border-radius: 14px;

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.75),
        0 12px 25px rgba(0, 0, 0, 0.65),
        0 0 30px rgba(0, 105, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    transform: perspective(1400px) rotateY(-1deg);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.hero-video-frame video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 14px;
}

.hero-video-frame::before {
    content: "";

    position: absolute;
    inset: -35px;
    z-index: -1;

    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            rgba(0, 119, 255, 0.28) 0%,
            rgba(0, 80, 200, 0.12) 35%,
            transparent 70%
        );

    filter: blur(30px);
}

.hero-video-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 14px;

    pointer-events: none;

    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.07),
            transparent 20%,
            transparent 75%,
            rgba(0, 119, 255, 0.05)
        );
}

.hero-video-frame:hover {
    transform:
        perspective(1400px)
        rotateY(0deg)
        translateY(-4px);

    box-shadow:
        0 42px 85px rgba(0, 0, 0, 0.82),
        0 16px 30px rgba(0, 0, 0, 0.70),
        0 0 45px rgba(0, 119, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}


/* =====================================================
   CAPABILITIES STRIP
   ===================================================== */

.capabilities {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    margin-top: 18px;

    overflow: hidden;

    border: 1px solid rgba(51, 73, 98, 0.65);
    border-radius: 8px;

    background:
        linear-gradient(
            180deg,
            rgba(10, 21, 35, 0.88),
            rgba(3, 8, 14, 0.92)
        );

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.capabilities div {
    position: relative;

    padding: 18px 12px;

    border-right: 1px solid #263445;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.capabilities div:last-child {
    border-right: 0;
}

.capabilities div:hover {
    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(15, 43, 73, 0.95),
            rgba(4, 15, 27, 0.95)
        );

    box-shadow:
        inset 0 2px 0 rgba(13, 125, 255, 0.60),
        0 0 25px rgba(0, 105, 255, 0.13);
}

.capabilities b {
    display: block;

    margin-bottom: 5px;

    font: 800 18px 'Barlow Condensed';
}

.capabilities span {
    color: var(--muted);
    font-size: 12px;
}


/* =====================================================
   GENERIC SECTIONS / HEADINGS
   ===================================================== */

.section {
    padding: 52px 0;
}

.eyebrow {
    font: 800 17px 'Barlow Condensed';
    letter-spacing: 0.08em;
}

.intro {
    max-width: 1050px;
    text-align: center;
}

.intro h2,
.section-title h2,
.ghost h2,
.contact h2,
.footer h2 {
    margin: 8px 0 16px;

    font:
        800
        clamp(38px, 4vw, 64px) / 0.95
        'Barlow Condensed';
}

.intro h2 span,
.section-title h2 span,
.contact h2 span {
    color: var(--blue);
}

.intro > p:last-child,
.section-title > p:last-child {
    color: var(--muted);
    line-height: 1.7;
}

.section-title {
    max-width: 1000px;

    margin: 0 auto 28px;

    text-align: center;
}


/* =====================================================
   CARDS / 3D DEPTH
   ===================================================== */

.card {
    position: relative;

    border: 1px solid #174d82;
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #0b1828 0%,
            #06101b 42%,
            #02060b 100%
        );

    box-shadow:
        0 28px 55px rgba(0, 0, 0, 0.58),
        0 8px 18px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);

    border-color: rgba(13, 125, 255, 0.70);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.70),
        0 12px 25px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(13, 125, 255, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}


/* =====================================================
   PRICING / WORK TIERS
   ===================================================== */

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tier {
    position: relative;

    padding: 28px 18px 18px;

    text-align: center;
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;

    padding: 5px 22px;

    border-radius: 0 0 7px 7px;

    font: 800 14px 'Barlow Condensed';

    transform: translateX(-50%);
}

.blue-bg {
    background: #0566df;
}

.red-bg {
    background: #bd1710;
}

.tier h3 {
    margin: 18px 0 2px;

    font: 800 30px 'Barlow Condensed';
}

.sub {
    font: 700 14px 'Barlow Condensed';
}

.blue {
    color: var(--blue);
}

.red {
    color: var(--red);
}

.media {
    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    margin: 16px 0;

    border: 1px solid #334255;
    border-radius: 8px;

    background: #000;
}

.media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 62px;
    height: 62px;

    border: 2px solid white;
    border-radius: 50%;

    background: #045abed9;
    color: white;

    font-size: 24px;

    transform: translate(-50%, -50%);
}

.price {
    margin: 12px 0;

    font:
        800
        clamp(36px, 3vw, 52px)
        'Barlow Condensed';
}

.tier h4 {
    color: #cbd4e0;

    font: 800 13px 'Barlow Condensed';

    text-align: left;
}

.tier ul,
.ghost ul {
    margin: 0 0 18px;
    padding: 0;

    list-style: none;

    text-align: left;
}

.tier li,
.ghost li {
    position: relative;

    margin: 7px 0;
    padding-left: 18px;

    color: #c7d0db;
    font-size: 13px;
}

.tier li::before,
.ghost li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--blue);
}

.red-tier li::before {
    color: var(--red);
}


/* =====================================================
   GHOST KITCHEN
   ===================================================== */

.ghost {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    overflow: hidden;
}

.ghost-media {
    min-height: 560px;
    background: #000;
}

.ghost-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ghost-copy {
    padding: 38px;
}

.ghost h2 .red {
    color: var(--red);
}

.ghost-price {
    margin: 10px 0 14px;

    font:
        800
        clamp(30px, 3vw, 48px)
        'Barlow Condensed';
}

.ghost-copy > p {
    color: var(--muted);
    line-height: 1.6;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.fine {
    font-size: 11px;
}


/* =====================================================
   SERVICES
   ===================================================== */

.services {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.services .card {
    padding: 24px 14px;
    text-align: center;
}

.services .card:hover {
    transform: translateY(-6px) scale(1.015);
}

.services h3 {
    margin: 0 0 6px;

    font: 800 22px 'Barlow Condensed';
}

.services p {
    margin: 0;

    color: var(--muted);
    font-size: 12px;
}


/* =====================================================
   CONTACT
   ===================================================== */

.contact {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;

    padding: 36px;
}

.contact-copy p {
    color: var(--muted);
    line-height: 1.7;
}

.flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
}

.flow span {
    padding: 8px 12px;

    border: 1px solid #174d82;
    border-radius: 5px;
}

.flow b {
    color: var(--blue);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

label {
    color: #ced7e3;
    font: 700 13px 'Barlow Condensed';
}

.full {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;

    margin-top: 7px;
    padding: 13px 14px;

    border: 1px solid #244b72;
    border-radius: 6px;

    outline: none;

    background: #050b13;
    color: white;

    box-shadow:
        inset 0 3px 8px rgba(0, 0, 0, 0.55),
        0 1px 0 rgba(255, 255, 255, 0.025);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
}

fieldset {
    margin: 22px 0;
    padding: 0;

    border: 0;
}

legend {
    margin-bottom: 10px;

    font: 800 14px 'Barlow Condensed';
}

.checks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.checks label,
.horns {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px;

    border: 1px solid #244b72;
    border-radius: 6px;

    background: #050b13;
}

.checks input,
.horns input {
    width: auto;
    margin: 0;

    accent-color: var(--blue);
}

.horns {
    margin-top: 12px;
    border-color: #7d2a26;
}

.horns input {
    accent-color: var(--red);
}

.status {
    min-height: 20px;
    color: #9dd1ff;
}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    padding: 42px 0 28px;

    border-top: 1px solid #263445;
}

.footer img {
    width: 300px;
}


/* =====================================================
   VIDEO MODAL
   ===================================================== */

dialog {
    width: min(1100px, calc(100% - 30px));

    padding: 0;

    border: 1px solid #174d82;
    border-radius: 12px;

    background: #000;
}

dialog::backdrop {
    background: #000d;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;

    width: 42px;
    height: 42px;

    border: 1px solid #ffffff55;
    border-radius: 50%;

    background: #000a;
    color: white;

    font-size: 28px;
}

.close + video {
    width: 100%;
    max-height: 84vh;
}


/* =====================================================
   TABLET / SMALL DESKTOP
   ===================================================== */

@media (max-width: 1100px) {
    .nav {
        gap: 16px;
    }

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

    .services {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {
    .topbar {
        grid-template-columns: 1fr auto;
    }

    .desktop-cta {
        display: none;
    }

    .menu-toggle {
        display: block;

        padding: 10px 12px;

        border: 1px solid #174d82;
        border-radius: 5px;

        background: #07101a;
        color: white;
    }

    .nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;

        padding: 20px;

        background: #02050af5;
    }

    .nav.open {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-video-frame {
        order: -1;
        min-height: 420px;
        transform: none;
    }

    .hero-video-frame:hover {
        transform: none;
    }

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

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .actions {
        justify-content: center;
    }

    .tier-grid {
        grid-template-columns: 1fr;
    }

    .ghost {
        grid-template-columns: 1fr;
    }

    .ghost-media {
        min-height: 380px;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .checks {
        grid-template-columns: 1fr 1fr;
    }

    .card:hover,
    .services .card:hover {
        transform: none;
    }
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {
    .shell {
        width: calc(100% - 24px);
    }

    .topbar {
        padding: 8px 12px;
    }

    .brand img,
    .brand video {
        width: 150px;
    }

    .hero-video-frame {
        min-height: 300px;
    }

    .capabilities {
        grid-template-columns: 1fr 1fr;
    }

    .services {
        grid-template-columns: 1fr 1fr;
    }

    .ghost-copy {
        padding: 22px 16px;
    }

    .two-col,
    .form-grid,
    .checks {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer img {
        width: 220px;
    }
}

/* =====================================================
   BULLZEYE 3D INTERFACE UPGRADE
   ===================================================== */

/* Give the whole page more dimensional lighting */
body {
    overflow-x: hidden;
    background:
        radial-gradient(circle at 76% 14%, rgba(0, 125, 255, 0.16), transparent 30rem),
        radial-gradient(circle at 8% 42%, rgba(255, 45, 36, 0.07), transparent 24rem),
        linear-gradient(180deg, #02060c 0%, #030810 46%, #010307 100%);
}

/* Subtle floor-like glow behind the hero area */
.hero {
    position: relative;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -16px;
    height: 90px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(0, 105, 255, 0.18), transparent 68%);
    filter: blur(24px);
    pointer-events: none;
}

/* Header becomes a raised control-console slab */
.topbar {
    border-bottom: 1px solid rgba(30, 132, 255, 0.52);
    background:
        linear-gradient(180deg, rgba(7, 14, 24, 0.98), rgba(1, 5, 10, 0.96));
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.72),
        0 3px 0 rgba(0, 94, 220, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Logo sits forward */
.brand {
    transform: perspective(700px) rotateX(2deg);
}

.brand video,
.brand img {
    filter:
        drop-shadow(0 10px 12px rgba(0, 0, 0, 0.78))
        drop-shadow(0 0 13px rgba(0, 119, 255, 0.22));
}

/* Stronger 3D headline without looking cartoonish */
.hero h1 {
    letter-spacing: -0.018em;
    transform: perspective(900px) rotateY(1.2deg);
}

.hero h1,
.hero h1 span,
.hero h1 em {
    -webkit-text-stroke: 0.35px rgba(255, 255, 255, 0.08);
}

.hero h1 {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.16),
        0 4px 0 rgba(0, 0, 0, 0.50),
        0 9px 12px rgba(0, 0, 0, 0.72),
        0 22px 34px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
    text-shadow:
        0 1px 0 rgba(100, 185, 255, 0.26),
        0 4px 0 #064ca8,
        0 9px 12px rgba(0, 0, 0, 0.72),
        0 0 22px rgba(13, 125, 255, 0.17);
}

.hero h1 em {
    text-shadow:
        0 1px 0 rgba(255, 160, 150, 0.18),
        0 4px 0 #86130f,
        0 9px 12px rgba(0, 0, 0, 0.72),
        0 0 22px rgba(255, 45, 36, 0.13);
}

/* The bull image becomes a physical monitor/display */
.hero-video-frame {
    overflow: visible;
    border: 1px solid rgba(33, 141, 255, 0.72);
    border-radius: 18px;
    background: linear-gradient(145deg, #07111e, #01050a);
    transform: perspective(1300px) rotateY(-1.25deg) rotateX(0.4deg);
    box-shadow:
        0 46px 70px rgba(0, 0, 0, 0.72),
        0 18px 28px rgba(0, 0, 0, 0.64),
        0 0 36px rgba(0, 111, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -12px 20px rgba(0, 0, 0, 0.38);
}

/* Thick lower lip = monitor/base */
.hero-video-frame::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: -20px;
    height: 24px;
    border-radius: 0 0 18px 18px;
    background:
        linear-gradient(180deg, #152334 0%, #060b12 58%, #010204 100%);
    border: 1px solid rgba(35, 130, 255, 0.45);
    box-shadow:
        0 18px 24px rgba(0, 0, 0, 0.64),
        0 4px 14px rgba(0, 117, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

/* Blue halo behind the display */
.hero-video-frame::before {
    content: "";
    position: absolute;
    inset: -54px -42px -70px;
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 58%, rgba(0, 115, 255, 0.25), transparent 58%),
        radial-gradient(ellipse at 75% 75%, rgba(255, 45, 36, 0.07), transparent 45%);
    filter: blur(28px);
    pointer-events: none;
}

.hero-video-frame video {
    border-radius: 17px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-video-frame:hover {
    transform: perspective(1300px) rotateY(0deg) rotateX(0deg) translateY(-7px);
    box-shadow:
        0 56px 84px rgba(0, 0, 0, 0.78),
        0 21px 34px rgba(0, 0, 0, 0.66),
        0 0 54px rgba(0, 119, 255, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Buttons now feel like machined controls */
.btn {
    border-radius: 7px;
    border-top-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 10px 0 rgba(0, 0, 0, 0.33),
        0 14px 24px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -3px 5px rgba(0, 0, 0, 0.28);
}

.primary {
    background:
        linear-gradient(180deg, #2a9aff 0%, #0c70ee 48%, #0050bd 100%);
}

.danger {
    background:
        linear-gradient(180deg, #ff5149 0%, #df2820 50%, #9a100c 100%);
}

.outline {
    background:
        linear-gradient(180deg, #0a1018 0%, #020509 100%);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 13px 0 rgba(0, 0, 0, 0.28),
        0 19px 28px rgba(0, 0, 0, 0.61),
        0 0 20px rgba(0, 119, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.31);
}

.btn:active {
    transform: translateY(2px);
    box-shadow:
        0 4px 0 rgba(0, 0, 0, 0.28),
        0 7px 13px rgba(0, 0, 0, 0.52),
        inset 0 2px 5px rgba(0, 0, 0, 0.42);
}

/* Capability strip becomes six raised control panels */
.capabilities {
    gap: 11px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    perspective: 1200px;
}

.capabilities div {
    min-height: 84px;
    border: 1px solid rgba(42, 82, 120, 0.72);
    border-radius: 8px;
    background:
        linear-gradient(155deg, #0c1724 0%, #07101a 55%, #02060b 100%);
    box-shadow:
        0 11px 0 rgba(0, 0, 0, 0.28),
        0 18px 28px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -6px 10px rgba(0, 0, 0, 0.25);
    transform: perspective(900px) rotateX(2.5deg);
}

.capabilities div:last-child {
    border: 1px solid rgba(42, 82, 120, 0.72);
}

.capabilities div:hover {
    transform: perspective(900px) rotateX(0deg) translateY(-7px);
    border-color: rgba(25, 132, 255, 0.88);
    background:
        linear-gradient(155deg, #11253c 0%, #091523 55%, #03070d 100%);
    box-shadow:
        0 13px 0 rgba(0, 0, 0, 0.24),
        0 22px 34px rgba(0, 0, 0, 0.46),
        0 0 28px rgba(0, 119, 255, 0.13),
        inset 0 2px 0 rgba(19, 130, 255, 0.42);
}

/* Main cards: raised metal/glass panels */
.card {
    border-color: rgba(28, 101, 166, 0.72);
    background:
        linear-gradient(145deg, #0d1b2b 0%, #07111c 46%, #02060b 100%);
    box-shadow:
        0 14px 0 rgba(0, 0, 0, 0.22),
        0 30px 52px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -10px 18px rgba(0, 0, 0, 0.22);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 0 rgba(0, 0, 0, 0.20),
        0 38px 62px rgba(0, 0, 0, 0.62),
        0 0 28px rgba(0, 119, 255, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 -10px 18px rgba(0, 0, 0, 0.20);
}

/* Media inside portfolio cards looks inset */
.media {
    border-color: rgba(54, 115, 178, 0.62);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        inset 0 0 24px rgba(0, 0, 0, 0.36),
        0 10px 22px rgba(0, 0, 0, 0.44);
}

/* Inputs look recessed into the panel */
input,
select,
textarea {
    background: linear-gradient(180deg, #02060b 0%, #07101a 100%);
    box-shadow:
        inset 0 5px 10px rgba(0, 0, 0, 0.62),
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Reduce 3D transforms for touch devices */
@media (max-width: 900px) {
    .brand,
    .hero h1,
    .hero-video-frame,
    .hero-video-frame:hover,
    .capabilities div,
    .capabilities div:hover {
        transform: none;
    }

    .hero-video-frame::after {
        bottom: -12px;
        height: 16px;
    }

    .capabilities {
        gap: 8px;
    }
}
/* =========================================================
   SERVICE SHOWCASE CARDS
========================================================= */

.service-video-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-video-card:hover {
    transform: translateY(-7px);

    border-color: #1684ff;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.55),
        0 0 26px rgba(22, 132, 255, 0.22);
}

.service-watch {
    display: block;

    margin-top: 12px;

    color: #1684ff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;

    opacity: 0;

    transform: translateY(5px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.service-video-card:hover .service-watch {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   SERVICE VIDEO MODAL
========================================================= */

.service-video-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.service-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-video-window {
    position: relative;

    width: min(1100px, 95vw);

    border: 1px solid rgba(22, 132, 255, 0.65);
    border-radius: 16px;

    overflow: hidden;

    background: #000;

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 30px 100px rgba(0, 0, 0, 0.85),
        0 0 45px rgba(22, 132, 255, 0.20);

    transform: scale(0.94);

    transition: transform 0.25s ease;
}

.service-video-modal.active .service-video-window {
    transform: scale(1);
}

.service-video-window video {
    display: block;

    width: 100%;
    height: auto;

    max-height: 82vh;

    background: #000;
}

.service-video-close {
    position: absolute;

    top: 12px;
    right: 14px;

    z-index: 10;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.75);

    color: #fff;

    font-size: 30px;
    line-height: 38px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.service-video-close:hover {
    background: #1684ff;
    border-color: #1684ff;
    transform: scale(1.08);
}


/* MOBILE */
@media (max-width: 700px) {

    .service-video-modal {
        padding: 12px;
    }

    .service-video-window {
        width: 100%;
        border-radius: 10px;
    }

    .service-watch {
        opacity: 1;
        transform: none;
    }

}
/* CENTER SERVICE DEMONSTRATION CARDS */

#services .services {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    max-width: 1250px;

    margin: 28px auto 0;
}

#services .card {
    text-align: center;
}

#services .service-watch {
    display: block;
    margin-top: 14px;

    color: #1684ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;

    opacity: 1;
    transform: none;
}

/* TABLET */
@media (max-width: 1000px) {
    #services .services {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
    }
}

/* PHONE */
@media (max-width: 600px) {
    #services .services {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}
/* =====================================================
   DARK SELECT DROPDOWN FIX
   ===================================================== */

select {
    background-color: #050b13;
    color: #ffffff;
    color-scheme: dark;
}

select option {
    background: #050b13;
    color: #ffffff;
}

select option:hover,
select option:focus,
select option:checked {
    background: #0d7dff;
    color: #ffffff;
}
/* =====================================================
   CONTACT FORM TEXT SIZE UPGRADE
   ===================================================== */

/* "WHAT DO YOU NEED?" heading */
#lead-form legend {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* All service checkbox text */
#lead-form .checks label {
    font-size: 16px;
    font-weight: 800;
    min-height: 48px;
    padding: 12px 14px;
}

/* Make checkboxes slightly larger */
#lead-form .checks input[type="checkbox"] {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
}

/* TAKE THE BULL BY THE HORNS — FEATURE THIS ONE */
#lead-form .horns {
    min-height: 64px;
    padding: 15px 18px;
    gap: 12px;
    cursor: pointer;
}

/* Bigger statement */
#lead-form .horns span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
}

/* Make "I have no idea." hit harder */
#lead-form .horns strong {
    font-size: 23px;
    font-weight: 800;
    color: #ffffff;
}

/* Larger checkbox for this option */
#lead-form .horns input[type="checkbox"] {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
}

/* Notes heading */
#lead-form > label {
    font-size: 16px;
    font-weight: 800;
}

/* Keep mobile from getting oversized */
@media (max-width: 600px) {
    #lead-form .checks label {
        font-size: 15px;
    }

    #lead-form .horns span {
        font-size: 18px;
    }

    #lead-form .horns strong {
        font-size: 20px;
    }
}
