:root {
    --bg: #07090d;
    --bg-2: #0b0e14;
    --panel: #10141c;
    --panel-2: #151923;
    --text: #f4f5f7;
    --muted: #9ba1ad;
    --red: #ff193d;
    --red-light: #ff3655;
    --red-dark: #a90025;
    --border: rgba(255, 35, 70, .20);
    --border-light: rgba(255, 255, 255, .08);
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    overflow-x: hidden;
}

body::selection {
    background: var(--red);
    color: white;
}

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

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 9, 13, .80);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: .3s ease;
}

.site-header.scrolled {
    border-bottom-color: var(--border-light);
    background: rgba(7, 9, 13, .94);
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.brand > span:last-child > span {
    color: var(--red);
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 26px;
    font-weight: 900;
    font-style: italic;
    border-radius: 8px;
    background: var(--red);
    box-shadow: 0 0 24px rgba(255, 25, 61, .55);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: #a9adb6;
    font-size: 13px;
    font-weight: 600;
    transition: .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: white;
}

.desktop-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -31px;
    height: 2px;
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
}

.btn,
.outline-btn {
    min-height: 50px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    transition: .3s ease;
}

.btn {
    background: var(--red);
    color: white;
    box-shadow: 0 0 25px rgba(255, 25, 61, .28);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 25, 61, .52);
    background: var(--red-light);
}

.btn span {
    font-size: 18px;
}

.btn-small {
    min-height: 42px;
    padding: 0 18px;
}

.outline-btn {
    border: 1px solid rgba(255, 255, 255, .15);
}

.outline-btn:hover {
    border-color: var(--red);
    background: rgba(255, 25, 61, .08);
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: white;
}

.mobile-nav {
    display: none;
}

/* HERO */
.hero {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 50%, rgba(255, 20, 55, .18), transparent 28%),
        linear-gradient(110deg, #07090d 45%, #0d1018 100%);
}

.hero-grid,
.cta-grid {
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to right, transparent, black 35%, black 75%, transparent);
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    right: 4%;
    top: 15%;
    border-radius: 50%;
    background: rgba(255, 15, 50, .12);
    filter: blur(90px);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
    padding-top: 80px;
}

.eyebrow,
.section-kicker {
    color: var(--red-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
}

.pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 15px var(--red);
    animation: pulse 1.5s infinite;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 900;
}

.hero h1 span,
.section-heading h2 span,
.business-inner h2 span,
.why-copy h2 span,
.cta-content h2 span {
    color: var(--red);
    text-shadow: 0 0 30px rgba(255, 25, 61, .28);
}

.hero-copy > p {
    max-width: 590px;
    margin: 28px 0 32px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.text-link {
    font-size: 13px;
    font-weight: 700;
    color: #c7cad0;
}

.text-link span {
    color: var(--red);
    margin-left: 5px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 58px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stats strong {
    font-size: 23px;
    letter-spacing: -.04em;
}

.hero-stats small {
    color: #686e79;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    height: 530px;
    display: grid;
    place-items: center;
}

.visual-card {
    position: relative;
    z-index: 2;
    width: min(510px, 100%);
    height: 335px;
    border: 1px solid rgba(255, 55, 85, .32);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(25, 28, 37, .95), rgba(8, 10, 15, .94));
    box-shadow:
        0 30px 100px rgba(0,0,0,.65),
        0 0 50px rgba(255, 25, 61, .10);
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
    overflow: hidden;
}

.visual-card::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -90px;
    bottom: -100px;
    border-radius: 50%;
    background: var(--red);
    filter: blur(100px);
    opacity: .25;
}

.visual-top {
    height: 43px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.window-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4e535d;
}

.visual-url {
    margin-left: 12px;
    color: #636975;
    font-size: 9px;
}

.visual-screen {
    padding: 42px 38px;
}

.screen-line {
    height: 10px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: #242933;
}

.screen-line.large { width: 72%; height: 24px; background: linear-gradient(90deg, var(--red), #30242a); }
.screen-line.medium { width: 51%; }
.screen-line.small { width: 35%; }

.screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 42px;
}

.screen-grid div {
    height: 100px;
    border: 1px solid rgba(255, 35, 70, .12);
    border-radius: 5px;
    background: linear-gradient(145deg, #171b24, #0e1118);
}

.electric-symbol {
    position: absolute;
    z-index: 3;
    right: 6%;
    top: 3%;
    font-size: 300px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 3px var(--red);
    transform: rotate(-13deg);
    filter: drop-shadow(0 0 13px var(--red)) drop-shadow(0 0 55px rgba(255, 25, 61, .6));
    opacity: .85;
    pointer-events: none;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(255, 25, 61, .22);
    border-radius: 50%;
    transform: rotate(-25deg);
}

.orbit-1 { width: 590px; height: 230px; }
.orbit-2 { width: 650px; height: 290px; opacity: .5; }

.floating-tag {
    position: absolute;
    z-index: 5;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: rgba(12, 14, 20, .82);
    backdrop-filter: blur(10px);
    color: #d9dce2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    box-shadow: 0 0 25px rgba(255, 25, 61, .08);
}

.tag-one { left: 3%; top: 15%; }
.tag-two { right: 3%; bottom: 24%; }
.tag-three { left: 12%; bottom: 11%; }

/* SECTIONS */
.section {
    padding: 125px 0;
}

.services,
.projects {
    background: var(--bg-2);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 58px;
}

.section-heading h2,
.business-inner h2 {
    margin-top: 13px;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -.055em;
}

.section-heading > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    max-width: 450px;
    padding-bottom: 5px;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 30px 25px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    background: linear-gradient(150deg, #12161e, #0d1016);
    transition: .35s ease;
}

.service-card:hover,
.service-card.featured {
    border-color: rgba(255, 25, 61, .35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.service-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 10%, rgba(255,25,61,.16), transparent 45%);
}

.card-number {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #3b404a;
    font-size: 10px;
    font-weight: 800;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 25, 61, .25);
    border-radius: 8px;
    color: var(--red);
    font-size: 24px;
    background: rgba(255, 25, 61, .05);
    box-shadow: inset 0 0 25px rgba(255, 25, 61, .06);
}

.service-card h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    position: relative;
    color: #8d929d;
    font-size: 12px;
    line-height: 1.7;
}

.service-card a {
    position: absolute;
    left: 25px;
    bottom: 25px;
    color: var(--red-light);
    font-size: 10px;
    font-weight: 800;
}

/* BUSINESS */
.business-section {
    padding: 70px 0;
    background: #090b10;
    border-block: 1px solid rgba(255,255,255,.05);
}

.business-inner {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.business-inner h2 {
    font-size: 38px;
}

.business-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.business-list span {
    padding: 13px 17px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 5px;
    color: #9da2ac;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .11em;
    background: #0e1117;
    transition: .25s;
}

.business-list span:hover {
    color: white;
    border-color: var(--border);
}

/* PROJECTS */
.projects-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 18px;
}

.project-card {
    border: 1px solid rgba(255,255,255,.07);
    background: #0d1016;
    border-radius: 8px;
    overflow: hidden;
    transition: .35s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
}

.project-large {
    grid-row: span 2;
}

.project-image {
    min-height: 260px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 65% 35%, rgba(255,25,61,.38), transparent 23%),
        linear-gradient(135deg, #171b24, #090b10);
}

.project-large .project-image {
    min-height: 510px;
}

.project-image::before,
.project-image::after {
    content: "";
    position: absolute;
    background: rgba(255, 25, 61, .14);
}

.project-image::before {
    width: 1px;
    top: 0;
    bottom: 0;
    left: 67%;
}

.project-image::after {
    height: 1px;
    left: 0;
    right: 0;
    top: 35%;
}

.project-image-2 {
    background:
        radial-gradient(circle at 30% 50%, rgba(255,25,61,.3), transparent 25%),
        linear-gradient(135deg, #171b24, #0b0e14);
}

.project-image-3 {
    background:
        radial-gradient(circle at 75% 65%, rgba(255,25,61,.28), transparent 25%),
        linear-gradient(135deg, #151923, #080a0e);
}

.fake-browser {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 9%;
    height: 55%;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(8,10,14,.72);
    border-radius: 7px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

.fake-browser span {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 12px 1px 0 5px;
    border-radius: 50%;
    background: #444a54;
}

.project-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    color: rgba(255,255,255,.12);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .18em;
}

.project-placeholder b {
    color: rgba(255,25,61,.35);
    font-size: 80px;
    line-height: .9;
}

.project-info {
    min-height: 95px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-info span {
    color: var(--red-light);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
}

.project-info h3 {
    margin-top: 6px;
    font-size: 16px;
}

.project-info > a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    color: var(--red);
}

/* PROCESS */
.process {
    background: #080a0f;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.09);
}

.process-item {
    position: relative;
    padding: 38px 28px 10px 0;
}

.process-item:not(:last-child) {
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,.07);
}

.process-item > span {
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
}

.process-item h3 {
    margin: 24px 0 13px;
    font-size: 18px;
}

.process-item p {
    max-width: 220px;
    color: #7f858f;
    font-size: 12px;
    line-height: 1.75;
}

/* WHY */
.why-section {
    padding: 130px 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255,25,61,.09), transparent 25%),
        #0d1016;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.why-copy h2 {
    margin-top: 15px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: .96;
    letter-spacing: -.06em;
}

.why-point {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.why-point > span {
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
}

.why-point h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.why-point p {
    max-width: 390px;
    color: #858b95;
    font-size: 12px;
    line-height: 1.7;
}

/* CTA */
.cta-section {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 55%, rgba(255,25,61,.17), transparent 28%),
        #080a0e;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin: 15px 0 22px;
    font-size: clamp(45px, 6vw, 75px);
    line-height: .95;
    letter-spacing: -.065em;
}

.cta-content p {
    color: #9298a2;
    font-size: 14px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

/* FOOTER */
.footer {
    padding: 70px 0 25px;
    background: #05070a;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 350px;
    margin-top: 18px;
    color: #707681;
    font-size: 12px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 8px;
    color: #555b66;
    font-size: 9px;
    letter-spacing: .15em;
}

.footer-column a {
    color: #8d929b;
    font-size: 11px;
    transition: .2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #4f555f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.footer-bottom b {
    color: var(--red);
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

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

.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }

@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,25,61,.55); }
    50% { box-shadow: 0 0 0 8px rgba(255,25,61,0); }
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .desktop-nav { gap: 18px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding-bottom: 80px; }
    .hero-visual { max-width: 680px; width: 100%; margin: 0 auto; }
    .section-heading { grid-template-columns: 1fr; gap: 20px; }
    .business-inner { grid-template-columns: 1fr; gap: 35px; }
    .why-grid { gap: 60px; }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 30px), var(--container)); }

    .desktop-nav,
    .nav > .btn-small {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: none;
        padding: 12px 20px 25px;
        flex-direction: column;
        gap: 18px;
        background: rgba(7,9,13,.98);
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
        color: #aaaeb7;
        font-size: 13px;
        font-weight: 700;
    }

    .hero {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 62px);
    }

    .hero-copy > p {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
        justify-content: space-between;
    }

    .hero-stats strong { font-size: 19px; }

    .hero-visual {
        height: 390px;
    }

    .visual-card {
        width: 92%;
        height: 245px;
    }

    .visual-screen {
        padding: 25px 20px;
    }

    .screen-grid {
        margin-top: 25px;
    }

    .screen-grid div {
        height: 55px;
    }

    .electric-symbol {
        font-size: 210px;
        right: -4%;
    }

    .floating-tag {
        font-size: 7px;
        padding: 7px 9px;
    }

    .section {
        padding: 85px 0;
    }

    .section-heading h2,
    .business-inner h2 {
        font-size: 39px;
    }

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

    .service-card {
        min-height: 270px;
    }

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

    .project-large {
        grid-row: auto;
    }

    .project-large .project-image {
        min-height: 300px;
    }

    .process-line {
        grid-template-columns: 1fr;
    }

    .process-item {
        padding: 28px 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .process-item:not(:last-child) {
        margin-right: 0;
        border-right: 0;
    }

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

    .why-copy h2 {
        font-size: 47px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stats div {
        min-width: 80px;
    }

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