:root {

    --blue: #026DAF;
    --blue-light: #00a1df;
    --blue-dark: #003f67;

    --yellow: #F0B700;
    --yellow-dark: #c99200;

    --black: #050b10;
    --dark: #081720;

    --text: #12202b;
    --muted: #6b7b85;

    --white: #ffffff;
    --light: #f6fafc;

    --border: rgba(2, 109, 175, .13);

    --shadow:
        0 25px 70px rgba(4, 40, 60, .12);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: white;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


.section {
    padding: 120px 0;
}


.section-container,
.nav-container,
.hero-container,
.cta-container,
.footer-container {

    width: min(1180px,
            calc(100% - 40px));

    margin: auto;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 850px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(circle at 72% 40%,
            rgba(2, 109, 175, .25),
            transparent 30%),
        radial-gradient(circle at 85% 80%,
            rgba(240, 183, 0, .12),
            transparent 25%),
        #050d13;
}


.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .22;

    background-image:

        linear-gradient(rgba(255, 255, 255, .05) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .05) 1px,
            transparent 1px);

    background-size: 70px 70px;

    mask-image:
        linear-gradient(to bottom,
            black,
            transparent);
}


.hero-noise {

    position: absolute;

    inset: 0;

    opacity: .04;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}


.hero-light {

    position: absolute;

    width: 650px;
    height: 650px;

    right: -200px;
    top: 100px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(0, 130, 200, .18),
            transparent 68%);

    filter: blur(20px);
}


.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 50px;
}


.hero-content {
    padding-top: 40px;
}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--blue-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 22px;
}


.pulse {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--yellow);

    box-shadow:
        0 0 0 6px rgba(240, 183, 0, .12);

    animation:
        pulse 2s infinite;
}


@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(240, 183, 0, .4);
    }

    70% {
        box-shadow:
            0 0 0 10px rgba(240, 183, 0, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(240, 183, 0, 0);
    }

}


.hero h1 {

    max-width: 650px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(52px,
            6vw,
            78px);

    line-height: .98;

    letter-spacing: -5px;

    margin-bottom: 28px;
}


.hero h1 span {

    display: block;

    color: transparent;

    background:
        linear-gradient(100deg,
            #fff,
            var(--blue-light),
            var(--yellow));

    -webkit-background-clip: text;

    background-clip: text;
}


.hero p {

    max-width: 550px;

    color: #a9bbc5;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 16px 23px;

    border-radius: 12px;

    color: white;

    background:
        linear-gradient(135deg,
            var(--blue),
            var(--blue-light));

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 15px 35px rgba(2, 109, 175, .3);

    transition: .35s;
}


.primary-btn:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 20px 45px rgba(2, 109, 175, .4);
}


.secondary-btn {

    padding: 15px 22px;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 12px;

    color: white;

    background:
        rgba(255, 255, 255, .04);

    backdrop-filter:
        blur(10px);

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}


.secondary-btn:hover {

    border-color:
        var(--blue-light);

    background:
        rgba(2, 109, 175, .12);
}


.hero-stats {

    display: flex;

    gap: 45px;

    margin-top: 55px;
}


.hero-stats div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.hero-stats strong {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 23px;
}


.hero-stats small {

    color: #71848e;

    font-size: 10px;
}


/* =====================================================
   HERO 3D CAMERA
===================================================== */

.hero-visual {

    min-height: 650px;

    position: relative;

    perspective: 1400px;
}


.lens-glow {

    position: absolute;

    width: 420px;
    height: 420px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(0, 146, 210, .24),
            transparent 68%);

    filter: blur(10px);
}


/* CAMERA */

.camera {

    position: absolute;

    left: 50%;
    top: 50%;

    width: 380px;
    height: 300px;

    transform:
        translate(-50%, -50%) rotateY(-18deg) rotateX(7deg);

    transform-style:
        preserve-3d;

    transition:
        transform .2s ease;

    z-index: 5;
}


.camera-body {

    position: absolute;

    left: 40px;
    top: 55px;

    width: 300px;
    height: 190px;

    border-radius: 24px;

    background:
        linear-gradient(145deg,
            #263c49,
            #0c1a22);

    border:
        1px solid rgba(255, 255, 255, .14);

    box-shadow:
        30px 40px 70px rgba(0, 0, 0, .45);

    transform:
        translateZ(20px);
}


.camera-body::before {

    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 17px;

    border:
        1px solid rgba(255, 255, 255, .06);
}


.camera-top {

    position: absolute;

    width: 110px;
    height: 35px;

    top: 38px;
    left: 95px;

    border-radius:
        12px 12px 4px 4px;

    background:
        linear-gradient(145deg,
            #304b59,
            #12242e);

    border:
        1px solid rgba(255, 255, 255, .1);

    transform:
        translateZ(25px);
}


.camera-screen {

    position: absolute;

    left: 25px;
    top: 30px;

    width: 125px;
    height: 95px;

    padding: 8px;

    overflow: hidden;

    border-radius: 7px;

    background: #061218;

    border:
        2px solid #192e39;

    box-shadow:
        inset 0 0 20px rgba(0, 150, 220, .12);
}


.screen-content {

    width: 100%;
    height: 100%;

    position: relative;

    background:
        radial-gradient(circle at 70% 50%,
            rgba(0, 150, 220, .35),
            transparent 35%);
}


.rec {

    position: absolute;

    top: 3px;
    left: 3px;

    color: #ff4b4b;

    font-size: 6px;

    animation:
        recBlink 1s infinite;
}


@keyframes recBlink {

    50% {
        opacity: .3;
    }

}


.time {

    position: absolute;

    right: 3px;
    top: 3px;

    color: white;

    font-size: 5px;
}


.focus-box {

    position: absolute;

    width: 32px;
    height: 25px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(255, 255, 255, .6);
}


.screen-lines {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(255, 255, 255, .04) 1px,
            transparent 1px);

    background-size:
        100% 12px;
}


.camera-controls {

    position: absolute;

    right: 20px;
    top: 30px;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.camera-controls span {

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background:
        #152b36;

    border:
        1px solid rgba(255, 255, 255, .1);
}


.camera-lens {

    position: absolute;

    right: -80px;
    top: 85px;

    width: 170px;
    height: 170px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(145deg,
            #162d39,
            #071218);

    border:
        2px solid rgba(255, 255, 255, .14);

    box-shadow:
        25px 30px 70px rgba(0, 0, 0, .5);

    transform:
        translateZ(55px);
}


.lens-ring {

    position: absolute;

    border-radius: 50%;

    border:
        2px solid rgba(255, 255, 255, .08);
}


.ring-one {

    width: 150px;
    height: 150px;
}


.ring-two {

    width: 125px;
    height: 125px;

    border-color:
        rgba(2, 145, 210, .35);
}


.ring-three {

    width: 105px;
    height: 105px;

    border-color:
        rgba(240, 183, 0, .25);
}


.lens-glass {

    width: 82px;
    height: 82px;

    position: relative;

    overflow: hidden;

    border-radius: 50%;

    background:
        radial-gradient(circle at 35% 30%,
            #3dbde7,
            #075579 30%,
            #03121b 70%);

    box-shadow:
        inset 0 0 25px rgba(0, 0, 0, .8),

        0 0 30px rgba(0, 145, 210, .3);
}


.lens-reflection {

    position: absolute;

    width: 35px;
    height: 20px;

    top: 15px;
    left: 12px;

    border-radius: 50%;

    transform: rotate(-35deg);

    background:
        rgba(255, 255, 255, .25);

    filter: blur(4px);
}


.camera-handle {

    position: absolute;

    top: 15px;
    left: 125px;

    width: 100px;
    height: 30px;

    border:
        8px solid #152a35;

    border-bottom: 0;

    border-radius:
        20px 20px 0 0;

    transform:
        translateZ(30px);
}


/* =====================================================
   FLOATING VIDEO CARDS
===================================================== */

.floating-video {

    position: absolute;

    z-index: 15;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px;

    border:
        1px solid rgba(255, 255, 255, .13);

    border-radius: 13px;

    background:
        rgba(10, 25, 34, .82);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .3);

    animation:
        videoFloat 5s ease-in-out infinite;
}


.mini-video {

    width: 45px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 7px;

    background:
        linear-gradient(135deg,
            #075b85,
            #0a1d28);

    color: white;

    font-size: 10px;
}


.yellow-video {

    background:
        linear-gradient(135deg,
            #e5a900,
            #513c05);
}


.purple-video {

    background:
        linear-gradient(135deg,
            #6f56ad,
            #251d42);
}


.floating-video strong {

    display: block;

    color: white;

    font-size: 10px;
}


.floating-video small {

    display: block;

    color: #7e949f;

    font-size: 7px;

    margin-top: 4px;
}


.video-one {

    top: 75px;
    right: -5px;
}


.video-two {

    bottom: 145px;
    left: 10px;

    animation-delay: 1s;
}


.video-three {

    bottom: 55px;
    right: 15px;

    animation-delay: 2s;
}


@keyframes videoFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-13px);
    }

}


.camera-data {

    position: absolute;

    left: 50%;

    bottom: 70px;

    transform:
        translateX(-50%);

    display: flex;

    gap: 15px;

    color: #77909d;

    font-family:
        "Courier New",
        monospace;

    font-size: 8px;
}


.floating-play {

    position: absolute;

    right: 45px;
    bottom: 80px;

    width: 60px;
    height: 60px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #07131c;

    background:
        var(--yellow);

    box-shadow:
        0 15px 40px rgba(240, 183, 0, .25);

    font-size: 14px;

    animation:
        playPulse 2.5s infinite;
}


@keyframes playPulse {

    50% {
        transform:
            scale(1.08);

        box-shadow:
            0 0 0 15px rgba(240, 183, 0, .06);
    }

}


/* =====================================================
   INTRO
===================================================== */

.intro {
    background: white;
}


.intro-grid {

    display: grid;

    grid-template-columns:
        .35fr 1fr;

    gap: 100px;
}


.intro-number span {

    display: block;

    color: var(--yellow);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 55px;

    line-height: 1;
}


.intro-number strong {

    display: block;

    color: #bcc8ce;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 12px;

    letter-spacing: 2px;

    line-height: 1.5;

    margin-top: 20px;
}


.intro-content {

    max-width: 720px;
}


.intro-content h2,
.section-heading h2,
.editing-content h2,
.production-content h2,
.cta-container h2 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(40px,
            5vw,
            62px);

    line-height: 1.05;

    letter-spacing: -3px;
}


.intro-content h2 span,
.section-heading h2 span,
.editing-content h2 span,
.production-content h2 span,
.cta-container h2 span {

    color: var(--blue);
}


.intro-content p {

    max-width: 650px;

    color: var(--muted);

    line-height: 1.9;

    margin-top: 22px;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {

    max-width: 720px;

    margin-bottom: 65px;
}


.section-heading p {

    color: var(--muted);

    line-height: 1.8;

    margin-top: 20px;
}


.center {

    text-align: center;

    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   SERVICES
===================================================== */

.services {

    background: var(--light);
}


.service-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.service-card {

    min-height: 310px;

    position: relative;

    padding: 32px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background: white;

    transition:
        transform .35s,
        box-shadow .35s;
}


.service-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(2, 109, 175, .06);

    transition: .4s;
}


.service-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        var(--shadow);
}


.service-card:hover::before {

    transform:
        scale(2);
}


.service-card.featured {

    color: white;

    background:
        linear-gradient(145deg,
            #005b91,
            #022f4e);

    box-shadow:
        0 25px 60px rgba(0, 65, 100, .25);
}


.service-card.featured p {
    color: #c5d8e2;
}


.service-card.featured a {
    color: var(--yellow);
}


.service-number {

    position: absolute;

    top: 25px;
    right: 28px;

    color: #aebbc2;

    font-size: 10px;

    font-weight: 700;
}


.featured .service-number {
    color: #91b7ca;
}


.service-icon {

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    margin-bottom: 35px;

    border-radius: 15px;

    color: var(--blue);

    background:
        rgba(2, 109, 175, .09);

    font-size: 20px;
}


.featured .service-icon {

    color: var(--yellow);

    background:
        rgba(255, 255, 255, .1);
}


.service-card h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 21px;

    margin-bottom: 13px;
}


.service-card p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;

    margin-bottom: 25px;
}


.service-card a {

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;
}


/* =====================================================
   SHOWCASE
===================================================== */

.showcase {
    background: white;
}


.showcase-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 18px;
}


.showcase-card {

    min-height: 360px;

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .1);
}


.showcase-image {

    width: 100%;
    height: 100%;

    min-height: 360px;

    position: relative;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    overflow: hidden;

    transition:
        transform .6s;
}


.showcase-card:hover .showcase-image {

    transform:
        scale(1.04);
}


.image-one {

    background:
        radial-gradient(circle at 70% 30%,
            rgba(0, 174, 240, .8),
            transparent 18%),
        linear-gradient(135deg,
            #0c2433,
            #031017);
}


.image-two {

    background:
        radial-gradient(circle at 35% 35%,
            rgba(240, 183, 0, .75),
            transparent 20%),
        linear-gradient(145deg,
            #493a0b,
            #151107);
}


.image-three {

    background:
        radial-gradient(circle at 60% 25%,
            rgba(126, 94, 210, .7),
            transparent 20%),
        linear-gradient(145deg,
            #271f45,
            #0e0a19);
}


.showcase-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(transparent 40%,
            rgba(0, 0, 0, .8));
}


.video-overlay {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 18px;

    color: white;
}


.showcase-play {

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(255, 255, 255, .25);

    border-radius: 50%;

    color: white;

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter:
        blur(10px);

    cursor: pointer;

    transition: .3s;
}


.showcase-play:hover {

    color: #07131c;

    background:
        var(--yellow);

    transform:
        scale(1.1);
}


.video-overlay small {

    display: block;

    color: #94aab5;

    font-size: 7px;

    letter-spacing: 1.5px;

    margin-bottom: 6px;
}


.video-overlay strong {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 15px;
}


/* =====================================================
   EDITING
===================================================== */

.editing-section {

    padding: 130px 0;

    color: white;

    background:
        radial-gradient(circle at 75% 40%,
            rgba(2, 109, 175, .16),
            transparent 30%),
        #06131c;

    overflow: hidden;
}


.editing-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    align-items: center;

    gap: 90px;
}


.editing-content p {

    max-width: 500px;

    color: #9eb2bd;

    line-height: 1.8;

    margin: 25px 0;
}


.editing-content h2 {

    max-width: 600px;
}


.editing-content h2 span {

    color: var(--yellow);
}


.editing-features {

    display: grid;

    gap: 14px;

    margin-top: 30px;
}


.editing-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #c7d5dc;

    font-size: 11px;
}


.editing-features span {

    width: 23px;
    height: 23px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--yellow);

    background:
        rgba(240, 183, 0, .1);

    font-size: 9px;
}


/* =====================================================
   TIMELINE
===================================================== */

.timeline-wrapper {

    perspective: 1000px;
}


.timeline-window {

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background:
        #0a1c27;

    border:
        1px solid rgba(255, 255, 255, .1);

    box-shadow:
        30px 35px 70px rgba(0, 0, 0, .3);

    transform:
        rotateY(-8deg) rotateX(4deg);

    transition: transform .2s;
}


.timeline-header {

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 16px;

    border-bottom:
        1px solid rgba(255, 255, 255, .07);

    color: #78909c;

    font-family:
        "Courier New",
        monospace;

    font-size: 8px;
}


.preview-screen {

    height: 230px;

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #063f5c,
            #07131c);
}


.preview-gradient {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at 65% 40%,
            rgba(0, 180, 240, .45),
            transparent 20%),

        radial-gradient(circle at 30% 70%,
            rgba(240, 183, 0, .3),
            transparent 18%);
}


.preview-screen::before {

    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .12);

    transform:
        rotateX(60deg);
}


.preview-play {

    position: relative;

    z-index: 2;

    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #07131c;

    background:
        var(--yellow);

    box-shadow:
        0 0 40px rgba(240, 183, 0, .2);
}


.preview-info {

    position: absolute;

    bottom: 12px;
    left: 15px;

    display: flex;

    gap: 8px;
}


.preview-info span {

    padding: 5px 7px;

    border-radius: 4px;

    color: #a7bac4;

    background:
        rgba(0, 0, 0, .35);

    font-size: 6px;
}


.timeline-ruler {

    display: flex;

    justify-content: space-between;

    padding:
        8px 15px;

    color: #536d79;

    font-family:
        "Courier New",
        monospace;

    font-size: 6px;

    border-top:
        1px solid rgba(255, 255, 255, .06);
}


.track {

    display: grid;

    grid-template-columns:
        55px 1fr;

    min-height: 50px;

    border-top:
        1px solid rgba(255, 255, 255, .05);
}


.track-label {

    display: grid;

    place-items: center;

    color: #627b87;

    font-size: 6px;

    border-right:
        1px solid rgba(255, 255, 255, .06);
}


.track-content {

    display: flex;

    align-items: center;

    gap: 4px;

    padding: 5px;
}


.clip {

    height: 34px;

    display: flex;

    align-items: center;

    padding: 0 8px;

    border-radius: 4px;

    color: white;

    font-size: 6px;

    font-weight: 700;
}


.clip-blue {

    width: 27%;

    background:
        linear-gradient(90deg,
            #075f8e,
            #087eb5);
}


.clip-yellow {

    width: 23%;

    background:
        linear-gradient(90deg,
            #b98b00,
            #e0ac00);
}


.clip-purple {

    width: 18%;

    background:
        linear-gradient(90deg,
            #514087,
            #7459b5);
}


.audio-track {

    gap: 2px;
}


.audio-track div {

    height: 20px;

    flex: 1;

    background:
        repeating-linear-gradient(90deg,
            rgba(80, 200, 160, .6) 0 2px,
            transparent 2px 5px);
}


.playhead {

    position: absolute;

    width: 1px;

    top: 270px;

    bottom: 0;

    left: 57%;

    background:
        var(--yellow);

    box-shadow:
        0 0 12px var(--yellow);

    animation:
        playhead 5s linear infinite;
}


@keyframes playhead {

    from {
        left: 15%;
    }

    to {
        left: 85%;
    }

}


/* =====================================================
   PROCESS
===================================================== */

.process {

    background:
        #f7fafc;
}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.process-item {

    position: relative;

    min-height: 300px;

    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: white;

    transition: .35s;
}


.process-item:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);
}


.process-item>span {

    display: block;

    color: var(--yellow);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 28px;

    margin-bottom: 30px;
}


.process-icon {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        rgba(2, 109, 175, .08);

    margin-bottom: 25px;
}


.process-item h3 {

    font-family:
        "Space Grotesk",
        sans-serif;

    margin-bottom: 12px;
}


.process-item p {

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =====================================================
   PRODUCTION FORMATS
===================================================== */

.production {

    background: white;
}


.production-box {

    position: relative;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 70px;

    align-items: center;

    padding: 70px;

    overflow: hidden;

    border-radius: 28px;

    color: white;

    background:
        linear-gradient(135deg,
            #063e60,
            #06151f);

    box-shadow:
        0 30px 80px rgba(0, 60, 90, .18);
}


.production-box::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -180px;
    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(240, 183, 0, .16),
            transparent 70%);
}


.production-content {

    position: relative;

    z-index: 2;
}


.production-content h2 span {
    color: var(--yellow);
}


.production-content p {

    max-width: 500px;

    color: #a9c0cc;

    line-height: 1.8;

    margin-top: 20px;
}


.format-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.format-card {

    height: 145px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 22px;

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 17px;

    background:
        rgba(255, 255, 255, .045);

    transition: .35s;
}


.format-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(240, 183, 0, .5);
}


.format-card strong {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 27px;
}


.format-card small {

    color: #819ba8;

    font-size: 8px;

    margin-top: 8px;
}


.format-card.vertical {

    height: 180px;
}


.format-card.square {

    height: 125px;
}


.format-card.cinema {

    height: 155px;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    position: relative;

    overflow: hidden;

    padding: 125px 0;

    color: white;

    background:
        #050d13;
}


.cta-light {

    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: -320px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(2, 109, 175, .35),
            transparent 70%);
}


.cta-grid {

    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:

        linear-gradient(rgba(255, 255, 255, .05) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .05) 1px,
            transparent 1px);

    background-size:
        50px 50px;
}


.cta-container {

    position: relative;

    text-align: center;
}


.cta-badge {

    display: inline-block;

    padding: 9px 14px;

    border:
        1px solid rgba(255, 255, 255, .15);

    border-radius: 50px;

    color: #93aab5;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;
}


.cta-container h2 {

    max-width: 850px;

    margin: auto;
}


.cta-container h2 span {

    color: var(--yellow);
}


.cta-container p {

    max-width: 560px;

    margin:
        25px auto 35px;

    color: #9dafb9;

    line-height: 1.8;
}


.large {

    padding:
        18px 27px;
}


 

/* =====================================================
   REVEAL ANIMATION
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.reveal.active {

    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1050px) {

    .hero-container {

        grid-template-columns:
            1fr 1fr;

        gap: 20px;
    }


    .hero h1 {

        font-size: 57px;
    }


    .camera {

        transform:
            translate(-50%, -50%) scale(.82) rotateY(-18deg) rotateX(7deg);
    }


    .service-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media(max-width:800px) {

    .nav-links {
        display: none;
    }


    .hero {

        min-height: auto;

        padding:
            145px 0 80px;
    }


    .hero-container {

        grid-template-columns: 1fr;
    }


    .hero-content {

        text-align: center;
    }


    .hero p {

        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons {

        justify-content: center;
    }


    .hero-stats {

        justify-content: center;
    }


    .hero-visual {

        min-height: 600px;

        margin-top: 20px;
    }


    .intro-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .intro-number {

        display: flex;

        align-items: center;

        gap: 20px;
    }


    .intro-number strong {

        margin-top: 0;
    }


    .showcase-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .large-card {

        grid-column:
            1 / -1;
    }


    .editing-grid {

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .production-box {

        grid-template-columns: 1fr;

        padding: 45px;

        gap: 45px;
    }

}


@media(max-width:600px) {

    .section {

        padding:
            80px 0;
    }


    .section-container,
    .nav-container,
    .hero-container,
    .cta-container,
    .footer-container {

        width:
            calc(100% - 28px);
    }


    .hero h1 {

        font-size: 45px;

        letter-spacing: -3px;
    }


    .hero p {

        font-size: 13px;
    }


    .hero-stats {

        gap: 20px;
    }


    .hero-stats strong {

        font-size: 18px;
    }


    .hero-visual {

        min-height: 480px;

        transform:
            scale(.72);

        margin:
            -40px -65px;
    }


    .floating-video {

        display: none;
    }


    .camera-data {

        display: none;
    }


    .floating-play {

        right: 60px;
    }


    .service-grid,
    .process-grid {

        grid-template-columns: 1fr;
    }


    .showcase-grid {

        grid-template-columns: 1fr;
    }


    .large-card {

        grid-column: auto;
    }


    .showcase-card,
    .showcase-image {

        min-height: 300px;
    }


    .production-box {

        padding: 30px 22px;
    }


    .format-grid {

        grid-template-columns: 1fr;
    }


    .format-card,
    .format-card.vertical,
    .format-card.square,
    .format-card.cinema {

        height: 130px;
    }


    .intro-content h2,
    .section-heading h2,
    .editing-content h2,
    .production-content h2,
    .cta-container h2 {

        font-size: 38px;

        letter-spacing: -2px;
    }


    .footer-container {

        flex-direction: column;

        gap: 18px;

        text-align: center;
    }

}