:root {
    --blue: #0059E2;
    --blue-deep: #00348A;
    --yellow: #FFB000;
    --white: #FFFFFF;
    --ink: #0B0E14;
    --ink-soft: #4A5061;
    --line: #E7EAF3;
    --panel: #F5F7FC;
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --spring-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, .92);
    background: var(--ink);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
}

.display {
    font-weight: 800;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

@media(max-width:640px) {
    .wrap {
        padding: 0 20px;
    }
}

/* Spring cursor dot (desktop only) */
.springdot {
    position: fixed;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: normal;
    transition: width .25s var(--spring), height .25s var(--spring), background .25s;
}

@media(max-width:900px) {
    .springdot {
        display: none;
    }
}

/* NAV */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: rgba(11, 14, 20, .82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.logo .dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2.2s var(--spring-soft) infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.6);
    }
}

.navlinks {
    display: flex;
    gap: 34px;
    font-size: 14.5px;
    font-weight: 600;
}

.navlinks a {
    position: relative;
    color: rgba(255, 255, 255, .85);
    padding: 4px 0;
}

.navlinks a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width .35s var(--spring);
}

.navlinks a:hover::after {
    width: 100%;
}

.navcta {
    background: var(--blue);
    color: #fff;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform .3s var(--spring), background .2s;
    display: inline-block;
}

.navcta:hover {
    transform: translateY(-2px) scale(1.03);
    background: var(--blue-deep);
}

.navburger {
    display: none;
}

@media(max-width:860px) {
    .navlinks {
        display: none;
    }

    nav {
        padding: 16px 20px;
    }
}

/* HERO */
.hero {
    padding: 170px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -160px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(0, 89, 226, .22), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.hero-photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px -18px rgba(0, 0, 0, .6);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-chip {
    position: absolute;
    background: #fff;
    color: var(--ink);
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .4);
}

.chip-top {
    top: 20px;
    left: 20px;
}

.chip-bottom {
    bottom: 20px;
    right: 20px;
    background: var(--blue);
    color: #fff;
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        order: -1;
        max-width: 320px;
        margin: 0 auto 24px;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 28px;
}

.badge span.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
    animation: led 2s infinite;
}

@keyframes led {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .45);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.eyebrow {
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(38px, 5.2vw, 68px);
}

.hero h1 em {
    font-style: normal;
    color: var(--blue);
    position: relative;
}

.hero h1 .hi {
    color: var(--blue);
}

.hero p.lead {
    font-size: 18px;
    color: rgba(255, 255, 255, .68);
    max-width: 560px;
    margin: 26px 0 38px;
    line-height: 1.65;
}

.herobtns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .35s var(--spring), box-shadow .35s var(--spring);
    box-shadow: 0 8px 26px -8px rgba(0, 89, 226, .6);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 34px -8px rgba(0, 89, 226, .7);
    background: var(--blue-deep);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, .5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s var(--spring);
}

.btn-secondary:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    transform: translateY(-4px) scale(1.02);
}

.btn-secondary svg {
    transition: transform .3s var(--spring);
}

.btn-secondary:hover svg {
    transform: scale(1.15);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 36px;
    max-width: 520px;
}

.stat h3 {
    font-size: clamp(22px, 2.8vw, 30px);
    color: var(--blue);
}

.stat span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .62);
    font-weight: 600;
    display: block;
    margin-top: 6px;
    letter-spacing: .02em;
}

@media(max-width:640px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 0;
    }
}

/* VERTICALS strip */
.verticals {
    background: var(--ink);
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.vtrack {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 22s linear infinite;
    width: max-content;
}

.vtrack span {
    color: #fff;
    opacity: .55;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.vtrack span.on {
    opacity: 1;
    color: var(--blue);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

section {
    padding: 110px 0;
}

.sectag {
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sechead {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.sechead h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    max-width: 640px;
}

.sechead p {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    max-width: 340px;
    line-height: 1.6;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--spring-soft), transform .7s var(--spring-soft);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* REEL */
.reel-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--ink);
    aspect-ratio: 16/9;
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .7);
    border: 1px solid rgba(255, 255, 255, .08);
}

.reel-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* PORTFOLIO GRID */
.port-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.port-card {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    color: var(--ink);
    transition: transform .35s var(--spring), box-shadow .35s var(--spring);
}

.port-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -26px rgba(0, 20, 60, .5);
}

.port-video {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--ink);
}

.port-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.port-body {
    padding: 22px 24px;
}

.port-cat {
    color: var(--blue);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.port-body h4 {
    font-size: 17.5px;
    margin-bottom: 8px;
}

.port-body p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

@media(max-width:760px) {
    .port-grid {
        grid-template-columns: 1fr;
    }
}

/* SERVICES */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    overflow: hidden;
}

.svc {
    background: #fff;
    color: var(--ink);
    padding: 38px 32px;
    transition: background .35s var(--spring-soft);
}

.svc:hover {
    background: var(--panel);
}

.svc .num {
    color: var(--blue);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .05em;
    margin-bottom: 22px;
    display: block;
}

.svc h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.svc p {
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.65;
}

@media(max-width:900px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:640px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
}

/* PROCESS */
#process {
    background: var(--ink);
    color: #fff;
}

#process .sectag {
    color: var(--yellow);
}

#process .sechead p {
    color: rgba(255, 255, 255, .55);
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    align-items: start;
}

.step:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.step .sn {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
}

.step h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #fff;
}

.step p {
    color: rgba(255, 255, 255, .6);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 560px;
}

.step:hover .sn {
    color: var(--yellow);
    transition: color .3s;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.about-photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--blue-deep), var(--ink));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px -20px rgba(0, 20, 60, .5);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo .initials {
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, .16);
}

.about-photo .tag {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: var(--blue);
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13.5px;
}

.about-copy p {
    color: rgba(255, 255, 255, .8);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-copy strong {
    color: #fff;
}

.tools {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.tools span {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform .4s var(--spring), box-shadow .4s var(--spring);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px -24px rgba(0, 20, 60, .5);
    border-color: var(--blue);
}

.why-card .ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-card h4 {
    font-size: 17.5px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

@media(max-width:860px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* TESTIMONIALS */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.test-card {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 26px;
    background: #fff;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .35s var(--spring);
}

.test-card:hover {
    transform: translateY(-6px);
}

.test-src {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.test-src svg {
    flex-shrink: 0;
}

.test-quote {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.65;
    flex-grow: 1;
}

.test-who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.test-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.test-name {
    font-weight: 700;
    font-size: 14.5px;
}

.test-role {
    font-size: 12.5px;
    color: var(--ink-soft);
}

@media(max-width:860px) {
    .test-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:640px) {
    .test-grid {
        grid-template-columns: 1fr;
    }
}

/* CONNECT */
#connect {
    background: #0F1219;
    color: #fff;
}

#connect .sectag {
    color: var(--blue);
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.connect-card {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    transition: all .35s var(--spring);
}

.connect-card:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-6px);
}

.connect-card .plat {
    font-weight: 700;
    font-size: 15.5px;
    color: #fff;
}

.connect-card .handle {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}

.connect-card:hover .handle {
    color: rgba(255, 255, 255, .85);
}

.connect-card .arrow {
    align-self: flex-end;
    transition: transform .35s var(--spring);
}

.connect-card:hover .arrow {
    transform: translate(4px, -4px);
}

@media(max-width:860px) {
    .connect-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:480px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.cta-final {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    border-radius: 28px;
    padding: 74px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 70%);
}

.cta-final h2 {
    color: #fff;
    font-size: clamp(28px, 4.4vw, 48px);
    max-width: 640px;
    margin: 0 auto 18px;
    position: relative;
}

.cta-final p {
    color: rgba(255, 255, 255, .8);
    font-size: 16.5px;
    max-width: 460px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-final .herobtns {
    justify-content: center;
    position: relative;
}

.cta-final .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta-final .btn-secondary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--blue);
}

footer {
    padding: 44px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.footwrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

footer p {
    color: rgba(255, 255, 255, .7);
    font-size: 13.5px;
}

.foot-links {
    display: flex;
    gap: 22px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
}

.foot-links a:hover {
    color: var(--blue);
}

.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 400;
    background: #25D366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .6);
    transition: transform .35s var(--spring);
}

.wa-float:hover {
    transform: scale(1.1) rotate(6deg);
}