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

:root {
    --bg: #050c1a;
    --bg2: #071122;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-hover: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.09);
    --glass-border-hover: rgba(100, 200, 255, 0.25);
    --ink: #e8f4ff;
    --muted: #5a7a9a;
    --mid: #8ab0cc;
    --cyan: #00d4ff;
    --teal: #00e5c3;
    --blue: #3b82f6;
    --grad: linear-gradient(135deg, #00d4ff, #3b82f6);
    --grad2: linear-gradient(135deg, #00e5c3, #00d4ff);
    --glow: rgba(0, 212, 255, 0.15);
    --sans: 'Plus Jakarta Sans', sans-serif;
    --serif: 'Lora', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
}

/* ORB BG */
.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
}

.o1 {
    width: 700px;
    height: 700px;
    background: #00d4ff;
    top: -200px;
    right: -150px;
}

.o2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -100px;
    left: -100px;
}

.o3 {
    width: 350px;
    height: 350px;
    background: #00e5c3;
    top: 40%;
    left: 30%;
}

/* MESH GRID */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 5vw;
    background: rgba(5, 12, 26, 0.75);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.07);
}

.nav-cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--bg);
    background: var(--grad);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* HERO */
#hero {
    min-height: 100vh;
    padding: 9rem 5vw 5rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pb 2s infinite;
}

@keyframes pb {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7)
    }
}

h1.hero-title {
    font-family: var(--sans);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

h1.hero-title .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1.hero-title .it {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--muted);
}

.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-g {
    background: var(--grad);
    color: var(--bg);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-g:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 212, 255, 0.3);
}

.btn-o {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--mid);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.btn-o:hover {
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--cyan);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
}

.hst-n {
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.hst-l {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    display: block;
    margin-top: 0.2rem;
}

/* FLOATING CARD RIGHT */
.hero-right {
    position: relative;
}

.floating-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.fc-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.fc-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--teal);
}

.fc-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pb 2s infinite;
}

.fc-metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-metric-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.fc-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.fc-icon.c {
    background: rgba(0, 212, 255, 0.12);
}

.fc-icon.t {
    background: rgba(0, 229, 195, 0.12);
}

.fc-icon.b {
    background: rgba(59, 130, 246, 0.12);
}

.fc-label {
    font-size: 0.72rem;
    color: var(--muted);
    display: block;
}

.fc-val {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
}

.fc-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.fc-badge.ok {
    background: rgba(0, 229, 195, 0.15);
    color: var(--teal);
}

.fc-badge.up {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue);
}

.fc-bar-section {
    margin-top: 1.2rem;
}

.fc-bar-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.fc-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.fc-bar-fill {
    height: 100%;
    border-radius: 100px;
}

.fc-bar-fill.g {
    background: var(--grad);
}

.fc-bar-fill.t {
    background: var(--grad2);
}

.fc-bar-fill.b {
    background: linear-gradient(90deg, #3b82f6, #6366f1);
}

/* SECTIONS */
section {
    padding: 7rem 5vw;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
}

.sec-title {
    font-family: var(--sans);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.1;
}

.sec-title .it {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--muted);
}

/* ABOUT */
#about {
    background: rgba(7, 17, 34, 0.5);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 4rem;
    align-items: start;
}

.about-body p {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acard {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    transition: all 0.25s;
}

.acard:hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-hover);
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.08);
}

.acard-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.acard-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: rgba(0, 212, 255, 0.1);
}

.acard h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
}

.acard p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.72;
}

/* SERVICES */
#services {}

.svc-intro {
    max-width: 600px;
    margin-bottom: 3rem;
}

.svc-intro p {
    color: var(--muted);
    font-size: 0.97rem;
    margin-top: 0.8rem;
    line-height: 1.75;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
}

.sc {
    background: var(--bg2);
    padding: 2.2rem;
    transition: all 0.25s;
    position: relative;
}

.sc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.sc:hover {
    background: rgba(0, 212, 255, 0.03);
}

.sc:hover::before {
    transform: scaleX(1);
}

.sc-ico {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.sc-n {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.sc h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
}

.sc p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.stag {
    font-size: 0.62rem;
    font-weight: 600;
    background: rgba(0, 212, 255, 0.08);
    color: var(--cyan);
    border: 1px solid rgba(0, 212, 255, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

/* STACK */
#stack {
    background: rgba(7, 17, 34, 0.6);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.8rem;
    margin-top: 3rem;
}

.si {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.22s;
    backdrop-filter: blur(10px);
}

.si:hover {
    border-color: rgba(0, 212, 255, 0.25);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.1);
}

.si .ico {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.si span {
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--muted);
    display: block;
}

.si:hover span {
    color: var(--cyan);
}

/* PROCESS */
#process {}

.proc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 3.5rem;
}

.ps {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: all 0.25s;
}

.ps:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 36px rgba(0, 212, 255, 0.08);
    transform: translateY(-4px);
}

.ps-bubble {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--bg);
    margin-bottom: 1.2rem;
}

.ps h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.ps p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.75;
}

/* CONTACT */
#contact {
    background: rgba(7, 17, 34, 0.5);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    margin-top: 4rem;
}

.ci h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ci p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.cd {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cd-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cd label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    display: block;
}

.cd span {
    font-size: 0.88rem;
    color: var(--ink);
}

.contact-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.fg {
    margin-bottom: 1rem;
}

.fg label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.fg textarea {
    min-height: 100px;
    resize: none;
}

.fg select option {
    background: var(--bg2);
}

.f-btn {
    width: 100%;
    background: var(--grad);
    color: var(--bg);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.95rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.f-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 212, 255, 0.3);
}

/* FOOTER */
footer {
    background: rgba(5, 12, 26, 0.9);
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.f-logo {
    font-size: 0.95rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.f-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.f-links a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.f-links a:hover {
    color: var(--cyan);
}

.f-copy {
    font-size: 0.7rem;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media (max-width: 1000px) {

    .hero-grid,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

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

    .proc-steps {
        grid-template-columns: 1fr 1fr;
    }

    nav .nav-links {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}