:root {
    --bg: #07090e;
    --surface: #0e121b;
    --surface-hover: #131925;
    --border: rgba(121, 128, 218, 0.08);
    --border-hover: rgba(121, 128, 218, 0.15);
    --head: #ffffff;
    --tx: #8da1b5;
    --mu: #5b6e82;

    /* Solid multi-colors (Muted, elegant - owl style) */
    --c-rose: #c68b96;
    --c-rose-soft: rgba(198, 139, 150, 0.04);
    --c-indigo: #7980da;
    --c-indigo-soft: rgba(121, 128, 218, 0.04);
    --c-teal: #58979e;
    --c-teal-soft: rgba(88, 151, 158, 0.04);
    --c-amber: #cba770;
    --c-amber-soft: rgba(203, 167, 112, 0.04);

    --c1: var(--c-teal);
    --c1-soft: var(--c-teal-soft);
    --g: var(--c-teal);
    --nav-bg: rgba(7, 9, 14, 0.85);
    --ft-bg: #07090e;
    --card: #0e121b;
    --ic-bg: #131925;
    --fq-bg: #0e121b;
    --pill-bg: #131925;
    --radius: 12px;
}

html.light-mode {
    --bg: #f5f7fa;
    --surface: #ffffff;
    --surface-hover: #f1f3f7;
    --border: rgba(92, 98, 156, 0.08);
    --border-hover: rgba(92, 98, 156, 0.15);
    --head: #1b1e24;
    --tx: #4b5263;
    --mu: #6c7585;

    --c-rose: #9c525b;
    --c-rose-soft: rgba(156, 82, 91, 0.03);
    --c-indigo: #5c629c;
    --c-indigo-soft: rgba(92, 98, 156, 0.03);
    --c-teal: #41787c;
    --c-teal-soft: rgba(65, 120, 124, 0.03);
    --c-amber: #8f6c3a;
    --c-amber-soft: rgba(143, 108, 58, 0.03);

    --c1: var(--c-teal);
    --c1-soft: var(--c-teal-soft);
    --g: var(--c-teal);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --ft-bg: #edf0f5;
    --card: #ffffff;
    --ic-bg: #f5f7fa;
    --fq-bg: #ffffff;
    --pill-bg: #edf0f5;
}

html.light-mode .orb {
    opacity: 0.45;
}

html.light-mode .grid-ov {
    opacity: 0.4;
}

body {
    opacity: 0;
    transition: opacity 0.18s;
}

html.ready body {
    opacity: 1;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--tx);
    -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 10px;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

a {
    text-decoration: none;
    color: var(--c1);
    transition: 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* ── BACKGROUND ── */
.bg-wrap {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: var(--bg);
    pointer-events: none;
    overflow: hidden;
}

.bg-bubble {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}

.bubble-1 {
    top: -15%;
    left: -15%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(
        circle,
        var(--c-indigo-soft) 0%,
        transparent 70%
    );
    opacity: 0.8;
    animation: drift-1 25s infinite ease-in-out;
}

.bubble-2 {
    bottom: -20%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, var(--c-rose-soft) 0%, transparent 70%);
    opacity: 0.7;
    animation: drift-2 30s infinite ease-in-out;
}

.bubble-3 {
    top: 35%;
    left: 20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--c-teal-soft) 0%, transparent 70%);
    opacity: 0.6;
    animation: drift-3 20s infinite ease-in-out;
}

html.light-mode .bubble-1,
html.light-mode .bubble-2,
html.light-mode .bubble-3 {
    opacity: 0.45;
}

@keyframes drift-1 {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(0.95);
    }

    50% {
        transform: translate3d(6vw, 5vh, 0) scale(1.05);
    }
}

@keyframes drift-2 {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1.05);
    }

    50% {
        transform: translate3d(-5vw, -6vh, 0) scale(0.95);
    }
}

@keyframes drift-3 {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(0.95);
    }

    50% {
        transform: translate3d(4vw, -4vh, 0) scale(1.05);
    }
}

.tech-owl-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: min(80vw, 550px);
    height: min(80vw, 550px);
    opacity: 0.015;
    pointer-events: none;
    z-index: -2;
    will-change: transform;
}

html.light-mode .tech-owl-bg {
    opacity: 0.008;
}

.grid-ov {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.35;
    pointer-events: none;
}

/* Sections */
.sec {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.sec-a {
    background: transparent;
}

.sec-b {
    background: var(--surface);
}

/* ── NAVBAR ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 10px 0px;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 992px) {
    .site-nav {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 1200px;
        border-radius: 16px;
        border: 1px solid var(--border);
    }

    .site-nav.scrolled {
        top: 10px;
        box-shadow: none;
        border-bottom: 1px solid var(--border);
    }
}

.np {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 24px;
    /* height: 72px; */
}

.site-nav.scrolled {
    padding: 5px 0px;
}

.nb img {
    height: 50px;
    width: auto;
}

.nl {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 8px;
}

.nl a {
    color: var(--tx);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
}

.nl a:hover,
.nl a.active {
    color: var(--head);
    background: var(--c1-soft);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--tx);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.theme-btn:hover {
    border-color: var(--c1);
    color: var(--c1);
}

.theme-btn .icon-sun {
    display: none;
}

.theme-btn .icon-moon {
    display: block;
}

html.light-mode .theme-btn .icon-sun {
    display: block;
}

html.light-mode .theme-btn .icon-moon {
    display: none;
}

.ndl {
    background: var(--surface);
    color: var(--head);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ndl:hover {
    border-color: var(--c1);
    color: var(--c1);
    background: var(--c1-soft);
}

/* ── BOTTOM MOBILE NAV ── */
.mob-nav {
    display: none;
    position: fixed;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 200;
}

.mni {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    box-shadow: none;
}

.mnl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--tx);
    padding: 8px;
    border-radius: 12px;
    transition: 0.2s;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.mnl i {
    font-size: 1.3rem;
}

.mnl:hover,
.mnl.active {
    color: var(--c1);
    background: var(--c1-soft);
}

/* WhatsApp & Scroll-top */
#wa {
    position: fixed;
    right: 16px;
    bottom: 85px;
    z-index: 199;
    transition: 0.3s;
}

#wa:hover {
    transform: scale(1.1);
}

#wa img {
    width: 50px;
    border-radius: 50%;
}

#st {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 199;
    width: 40px;
    height: 40px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx);
    font-size: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

#st.show {
    opacity: 1;
    pointer-events: all;
}

/* ── SHARED TYPOGRAPHY ── */
.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-amber);
    margin-bottom: 12px;
    display: block;
}

.sh {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--head);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.ss {
    color: var(--tx);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Card */
.gc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.gc:hover {
    border-color: var(--c1);
    background: var(--surface-hover);
}

html.light-mode .gc {
    box-shadow: none;
}

html.light-mode .gc:hover {
    box-shadow: none;
}

.grad {
    background: var(--g2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300%;
    animation: gs 5s linear infinite;
}

@keyframes gs {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* Buttons */
.bmp {
    background: var(--c-teal);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.bmp:hover {
    opacity: 0.9;
}

.bmo {
    background: var(--surface);
    color: var(--head) !important;
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.bmo:hover {
    border-color: var(--c-indigo);
    color: var(--c-indigo) !important;
    background: var(--c-indigo-soft);
}

/* Color Button Variants */
.btn-indigo {
    background: var(--c-indigo);
    color: #fff !important;
}

.btn-indigo:hover {
    opacity: 0.9;
}
.btn-teal {
    background: var(--c-teal);
    color: #fff !important;
}

.btn-teal:hover,
.btn-teal:focus,
.btn-teal:active,
.btn-teal:disabled,
.btn-teal:focus-visible {
    background: var(--c-teal) !important;
    color: #fff !important;
    opacity: 0.8;
}

.btn-amber:hover {
    opacity: 0.9;
}

/* Service section styles */
.svc {
    padding: 32px;
    height: 100%;
}

.svci {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--c1-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--c1);
    margin-bottom: 20px;
    transition: 0.3s;
}

.gc:hover .svci {
    background: var(--c1);
    color: #fff;
}

.svc h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--head);
    margin-bottom: 8px;
}

.svc p {
    font-size: 0.88rem;
    color: var(--tx);
    line-height: 1.6;
}

.ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--c1-soft);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: var(--c1);
    font-weight: 700;
    margin-top: 12px;
}

/* Avail button */
.avail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    background: var(--c1-soft);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c1);
    cursor: pointer;
    transition: 0.25s;
    width: 100%;
    justify-content: center;
    border: none;
}

.avail-btn:hover {
    background: var(--c1);
    color: #fff;
}

/* Contact form */
.cf {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
}

.fc {
    background: var(--bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    color: var(--head) !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    transition: 0.25s !important;
    width: 100% !important;
    display: block !important;
}

.fc::placeholder {
    color: var(--mu) !important;
}

.fc:focus {
    border-color: var(--c1) !important;
    outline: none !important;
}

.bsend {
    width: 100%;
    background: var(--c1);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.bsend:hover {
    opacity: 0.9;
}

/* FOOTER */
footer {
    background: var(--ft-bg);
    border-top: 1px solid var(--border);
    padding: 28px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sa {
    width: 34px;
    height: 34px;
    background: var(--ic-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mu);
    font-size: 0.9rem;
    transition: 0.25s;
    margin: 0 3px;
}

.sa:hover {
    background: var(--c1-soft);
    border-color: var(--c1);
    color: var(--c1);
}

/* Info card */
.ic {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: 0.3s;
}

.icl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c1);
    font-weight: 700;
}

.icv {
    font-size: 0.9rem;
    color: var(--head);
    font-weight: 600;
    margin-top: 4px;
}

.icv a {
    color: var(--head);
}

.icv a:hover {
    color: var(--c1);
}

/* Contact info */
.cii {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.cii:hover {
    border-color: var(--c1);
    background: var(--surface-hover);
}

.ciic {
    width: 42px;
    height: 42px;
    background: var(--c1-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--c1);
    flex-shrink: 0;
}

.cil {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tx);
    font-weight: 600;
}

.civ {
    font-size: 0.9rem;
    color: var(--head);
    font-weight: 600;
}

.civ a {
    color: var(--head);
}

.civ a:hover {
    color: var(--c1);
}

/* FAQ */
.fqi {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    background: var(--surface);
    transition: 0.3s;
    overflow: hidden;
}

.fqi.open {
    border-color: var(--c1);
}

.fqq {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.fqq h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--head);
    margin: 0;
}

.fqic {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c1);
    font-size: 1.2rem;
    transition: 0.35s;
}

.fqi.open .fqic {
    transform: rotate(45deg);
}

.fqa {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--tx);
    line-height: 1.6;
}

.fqi.open .fqa {
    display: block;
}

/* Stat numbers */
.sn {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--head);
    display: block;
    line-height: 1;
}

.sl {
    font-size: 0.65rem;
    color: var(--mu);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 3px;
}

/* Pills */
.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.pill {
    background: var(--pill-bg);
    border: 1px solid var(--border);
    color: var(--tx);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: "Fira Code", monospace;
    transition: 0.2s;
}

.pill:hover {
    border-color: var(--c1);
    color: var(--c1);
    background: var(--surface);
}

/* Badge */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.74rem;
    color: var(--c1);
    font-weight: 600;
    margin-bottom: 22px;
    animation: bpulse 2.2s ease-in-out infinite;
}

@keyframes bpulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(79, 142, 247, 0.25);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(79, 142, 247, 0);
    }
}

.dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 1.3s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }
}

/* Portfolio preview */
.pi {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.pi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gc:hover .pi img {
    transform: scale(1.07);
}

.pov {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4, 7, 15, 0.95),
        rgba(79, 142, 247, 0.5)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: 0.35s;
}

.gc:hover .pov {
    opacity: 1;
}

.pov a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.2s;
}

.pov a:hover {
    background: var(--c1);
    border-color: var(--c1);
    transform: scale(1.15);
}

.pb {
    padding: 12px 14px;
}

.pb h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--head);
    margin-bottom: 3px;
}

.pb p {
    font-size: 0.73rem;
    color: var(--mu);
}

/* Page Hero (non-home pages) */
.page-hero {
    padding: 120px 0 60px;
    position: relative;
    z-index: 1;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--s1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

/* AI-generated pages list */
.ai-page-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: 0.3s;
    text-decoration: none;
    color: var(--tx);
}

.ai-page-card:hover {
    border-color: var(--c1);
    background: var(--surface-hover);
    color: var(--tx);
}

.ai-page-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--c1-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--c1);
    flex-shrink: 0;
}

/* MOBILE */
@media (max-width: 991px) {
    body {
        padding-top: 58px;
        padding-bottom: 60px;
    }

    .np {
        justify-content: space-between;
    }

    .nl {
        display: none;
    }

    .mob-nav {
        display: flex;
    }

    #wa {
        bottom: 110px;
        right: 1px;
    }

    #st {
        bottom: 68px;
        right: 12px;
    }

    .sec {
        padding: 40px 0 !important;
    }

    .cf {
        padding: 20px 16px;
    }

    /* Responsive Typography for mobile-first app feel */
    .sh {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
    }

    .ss {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .eyebrow {
        font-size: 0.7rem !important;
        margin-bottom: 8px !important;
    }

    .page-hero {
        padding: 40px 0 20px 0 !important;
    }

    .hbtns {
        margin-bottom: 24px !important;
    }
}

@media (max-width: 576px) {
    .ndl {
        padding: 6px 12px;
        font-size: 0.74rem;
    }

    .fc {
        font-size: 16px !important;
    }
}

/* index page */

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
}

.hh {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--head);
    margin-bottom: 24px;
}

.hp {
    font-size: 1.1rem;
    color: var(--tx);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 32px;
}

.hbtns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: 14px;
    flex: 1;
    min-width: 120px;
    transition: 0.2s;
}

.hiw {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Code IDE Mockup */
.code-ide {
    width: 100%;
    max-width: 440px;
    background: #0b0f17;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    font-family: "Fira Code", monospace;
    text-align: left;
    transition: 0.2s;
    box-shadow: none;
}

html.light-mode .code-ide {
    background: #ffffff;
    border-color: var(--border);
}

.code-ide:hover {
    border-color: var(--c-rose);
}

.ide-header {
    background: #0f1420;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

html.light-mode .ide-header {
    background: #f8fafc;
}

.ide-dots {
    display: flex;
    gap: 6px;
}

.ide-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background: #ff5f56;
}
.dot-yellow {
    background: #ffbd2e;
}
.dot-green {
    background: #27c93f;
}

.ide-title {
    font-size: 0.78rem;
    color: var(--mu);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.ide-action {
    color: var(--mu);
    opacity: 0.7;
}

.ide-body {
    display: flex;
    padding: 16px 8px;
    font-size: 0.8rem;
    line-height: 1.5;
}

.ide-lines {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-right: 12px;
    border-right: 1px solid var(--border);
    color: var(--mu);
    opacity: 0.5;
    user-select: none;
    width: 32px;
}

.ide-lines span {
    font-size: 0.75rem;
}

.ide-code {
    margin: 0;
    padding-left: 12px;
    flex-grow: 1;
    overflow-x: auto;
    color: var(--tx);
    white-space: pre-wrap;
}

.ide-code code {
    font-family: "Fira Code", monospace;
    font-size: 0.78rem;
}

/* Syntax Highlighting */
.ide-code .kw {
    color: var(--c-indigo);
    font-weight: 500;
}
.ide-code .cls {
    color: var(--c-teal);
}
.ide-code .fn {
    color: var(--c-rose);
}
.ide-code .str {
    color: var(--c-amber);
}
.ide-code .var {
    color: var(--head);
}
.ide-code .num {
    color: var(--c-rose);
}

.about-img {
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: none;
    width: 100%;
    transition: 0.2s;
}

.about-img:hover {
    border-color: var(--c-indigo);
}

/* About Image Mobile Framing & High-Tech Decorative Corners */
@media (max-width: 991px) {
    .about-img-wrap {
        position: relative;
        max-width: 280px;
        margin: 0 auto 30px;
        padding: 10px;
    }

    .about-img-wrap::before,
    .about-img-wrap::after,
    .about-img-wrap .corner-br {
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        border: 2px solid var(--c-indigo);
        pointer-events: none;
        z-index: 5;
    }

    /* Top Left Corner */
    .about-img-wrap::before {
        top: 0;
        left: 0;
        border-right: none;
        border-bottom: none;
    }

    /* Top Right Corner */
    .about-img-wrap::after {
        top: 0;
        right: 0;
        border-left: none;
        border-bottom: none;
    }

    /* Bottom Left Corner */
    .about-img-wrap .corner-bl {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 16px;
        height: 16px;
        border: 2px solid var(--c-indigo);
        border-right: none;
        border-top: none;
        pointer-events: none;
        z-index: 5;
    }

    /* Bottom Right Corner */
    .about-img-wrap .corner-br {
        bottom: 0;
        right: 0;
        border-left: none;
        border-top: none;
    }
}

/* Colored Service Cards (Zero gradients) */
.svc-teal {
    --card-c: var(--c-teal);
    --card-c-soft: var(--c-teal-soft);
}
.svc-indigo {
    --card-c: var(--c-indigo);
    --card-c-soft: var(--c-indigo-soft);
}
.svc-rose {
    --card-c: var(--c-rose);
    --card-c-soft: var(--c-rose-soft);
}
.svc-amber {
    --card-c: var(--c-amber);
    --card-c-soft: var(--c-amber-soft);
}

.svc {
    padding: 32px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svc:hover {
    border-color: var(--card-c, var(--c1));
    box-shadow: none;
}

.svci {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--card-c-soft, var(--c1-soft));
    color: var(--card-c, var(--c1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: 0.2s;
}

.svc:hover .svci {
    background: var(--card-c, var(--c1));
    color: #ffffff;
}

.svc h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--head);
    margin-bottom: 12px;
}

.svc p {
    font-size: 0.88rem;
    color: var(--tx);
    line-height: 1.5;
    margin: 0;
}

/* Portfolio Cards (Minimalist Flat Cards) */
.project-flat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}

.project-flat-card:hover {
    border-color: var(--c-rose);
    background: var(--surface-hover);
}

.project-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--head);
    margin-bottom: 10px;
}

.project-desc {
    font-size: 0.85rem;
    color: var(--tx);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
}

.project-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-rose);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.project-link:hover {
    color: var(--c-rose);
    gap: 10px;
}

.project-link-empty {
    font-size: 0.82rem;
    color: var(--tx);
    opacity: 0.6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Project Glimpse Notice */
.project-glimpse-notice {
    max-width: 680px;
    margin: 48px auto 0 auto;
    padding: 24px;
    border: 1px dashed var(--border);
    border-radius: 16px;
    background: var(--surface-soft, rgba(255, 255, 255, 0.01));
}

.notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-indigo);
    background: var(--c-indigo-soft);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(121, 128, 218, 0.15);
}

.notice-text {
    font-size: 0.82rem;
    color: var(--tx);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.fqi {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    cursor: pointer;
    transition: all 0.25s ease;
}

.fqi:last-child {
    border-bottom: none !important;
}

.fqi:hover {
    border-color: var(--border-hover) !important;
    background: transparent !important;
}

.fqi.open {
    border-color: var(--border-hover) !important;
    background: transparent !important;
}

.fqq {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 14px 4px !important;
    user-select: none;
    transition: color 0.2s ease;
}

.fqi:hover .fqq h3 {
    color: var(--c-indigo) !important;
}

.fqq h3 {
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: var(--head) !important;
    margin: 0 !important;
    transition: color 0.2s ease;
}

.fqic {
    font-size: 1.1rem !important;
    color: var(--c-indigo) !important;
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

.fqi.open .fqic {
    transform: rotate(45deg) !important;
    color: var(--c-rose, var(--c1)) !important;
}

.fqa {
    display: none;
    margin: 0 !important;
    padding: 0 4px 14px 4px !important;
    font-size: 0.84rem !important;
    line-height: 1.55 !important;
    color: var(--tx) !important;
    border-top: none !important;
    padding-top: 0 !important;
    transition: all 0.3s ease;
}

.fqi.open .fqa {
    display: block !important;
}

@media (max-width: 991px) {
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    .hero .hbtns {
        justify-content: center;
    }
    .hero .stats {
        justify-content: center;
    }
    .hiw {
        margin-top: 40px;
    }
}

/* Compact About Teaser */
.compact-about {
    padding: 50px 0 !important;
}

.compact-about .about-img-wrap {
    max-width: 240px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.compact-about .about-img {
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.compact-about .about-img:hover {
    transform: scale(1.02);
    border-color: var(--c-indigo);
}

.compact-about .sh {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    margin-bottom: 12px !important;
}

.compact-about .ss {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
    margin-bottom: 16px !important;
}

.compact-about .ic {
    background: var(--surface-hover, rgba(255, 255, 255, 0.02)) !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    height: 100% !important;
    transition: all 0.25s ease !important;
}

.compact-about .icl {
    font-size: 0.95rem !important;
    color: var(--c-indigo) !important;
    flex-shrink: 0 !important;
    width: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-right: 1px solid var(--border) !important;
    padding-right: 8px !important;
    margin-bottom: 0 !important;
}

.compact-about .icv {
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    color: var(--head) !important;
    margin-top: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.compact-about .bmo {
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
    border-radius: 8px !important;
}

/* Hover Muting Overrides (Muted, quiet border tint only) */
.gc:hover .pi img {
    transform: none !important;
}
.svc:hover .svci {
    background: var(--card-c-soft, var(--c1-soft)) !important;
    color: var(--card-c, var(--c1)) !important;
}

/* Brand Section Styling */
.brand-hud-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.hud-status {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tx);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hud-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
}

.hud-code {
    font-size: 0.72rem;
    font-family: monospace;
    color: var(--tx);
    opacity: 0.6;
}

.hud-metric-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.hud-metric {
    flex: 1;
    background: var(--surface-soft, rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hud-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tx);
    opacity: 0.5;
}

.hud-val {
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-rose {
    color: var(--c-rose) !important;
}

.text-indigo {
    color: var(--c-indigo) !important;
}

.hud-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed var(--border);
    border-radius: 12px;
}

.hud-svg {
    width: 100%;
    height: auto;
}

.brand-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.brand-pill {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--tx);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.brand-pill i {
    font-size: 0.9rem;
}

.brand-pill.teal-pill i {
    color: var(--c-teal);
}
.brand-pill.rose-pill i {
    color: var(--c-rose);
}
.brand-pill.indigo-pill i {
    color: var(--c-indigo);
}

/* about page */

.about-img {
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    transition: 0.3s ease;
    display: block;
}

.about-img:hover {
    border-color: var(--c-indigo);
    transform: scale(1.02);
}

/* Focus cards */
.focus-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.focus-card:hover {
    border-color: var(--c-indigo);
    background: var(--surface-hover);
    transform: translateY(-2px);
}

.focus-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--c-indigo-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--c-indigo);
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.focus-card:hover .focus-icon {
    background: var(--c-indigo);
    color: #fff;
}

.focus-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--head);
    margin-bottom: 10px;
}

.focus-card p {
    font-size: 0.86rem;
    color: var(--tx);
    line-height: 1.6;
    margin: 0;
}

/* Skills */
.skill-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--pill-bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--tx);
    margin: 6px;
    transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-tag.tag-rose:hover {
    border-color: var(--c-rose);
    color: var(--c-rose);
    background: var(--c-rose-soft);
}

.skill-tag.tag-indigo:hover {
    border-color: var(--c-indigo);
    color: var(--c-indigo);
    background: var(--c-indigo-soft);
}

.skill-tag.tag-teal:hover {
    border-color: var(--c-teal);
    color: var(--c-teal);
    background: var(--c-teal-soft);
}

.skill-tag.tag-amber:hover {
    border-color: var(--c-amber);
    color: var(--c-amber);
    background: var(--c-amber-soft);
}

/* Founder Spotlight Section */
.founder-spotlight {
    background: var(--surface-soft, rgba(255, 255, 255, 0.01));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}

.founder-ic {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    transition: 0.25s ease;
}

.founder-ic:hover {
    border-color: var(--c-indigo);
    background: var(--surface-hover);
}

.founder-icl {
    font-size: 1rem;
    color: var(--c-indigo);
    flex-shrink: 0;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
    padding-right: 8px;
}

.founder-icv {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--head);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.founder-icv a {
    color: var(--head);
}

.founder-icv a:hover {
    color: var(--c-indigo);
}
