@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --nb-blue: #0013c6;
    --nb-cyan: #06b6d4;
    --nb-ink: #0f172a;
    --mockup-scale: .92;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
}

.logonb-header {
    height: 2rem;
}

.topbar-sticky {
    position: sticky;
    top: 0;
}

.tb-social {
    display: grid;
    place-content: center;
    height: 2rem;
    width: 2rem;
    border-radius: .6rem;
    background: rgba(255, 255, 255, .12);
    transition: background .2s ease, transform .2s ease;
}

.tb-social:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-1px);
}



.grid-tech {
    background-image: radial-gradient(circle at 1px 1px, rgba(2, 6, 23, .06)1px, transparent 0);
    background-size: 22px 22px
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

@keyframes particleDrift {
    from {
        transform: translate3d(var(--px, 0), var(--py, 0), 0)
    }

    to {
        transform: translate3d(calc(var(--px, 0) * -1), calc(var(--py, 0) * -1), 0)
    }
}

.hero-bg {
    background: linear-gradient(90deg, var(--nb-blue), var(--nb-cyan), var(--nb-blue));
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background: rgba(59, 130, 246, .25);
    filter: blur(1px);
    animation-name: particleDrift;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate
}

.mesh-blob {
    background: radial-gradient(40% 60% at 30% 30%, rgba(37, 99, 235, .23), transparent 60%),
        radial-gradient(40% 60% at 70% 70%, rgba(6, 182, 212, .23), transparent 60%);
    filter: blur(32px)
}

.glass {
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px)
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

.btn-cta {
    box-shadow: 0 14px 26px rgba(37, 99, 235, .18);
    transition: transform .25s ease
}

.btn-cta:hover {
    transform: translateY(-2px)
}

.scroll-cue {
    animation: floatY 3s ease-in-out infinite
}

.card-hover {
    transition: transform .35s ease, box-shadow .35s ease;
}

.card-hover:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 40px rgba(2, 6, 23, .08);
}


.device {
    transform-style: preserve-3d;
    transition: transform .25s ease
}

.device:hover {
    transform: rotateX(6deg) rotateY(-6deg)
}

.device .screen {
    animation: floatY 6s ease-in-out infinite
}

.mockup-wrap {
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, .9);
    box-shadow: 0 12px 40px rgba(2, 6, 23, .08)
}

.laptop {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, .8);
    background: #fff
}

.laptop-top {
    display: flex;
    gap: .4rem;
    padding: .75rem 1rem;
    border-bottom: 1px solid #eef2f7
}

.dot {
    height: .6rem;
    width: .6rem;
    border-radius: 9999px;
    background: #e5e7eb
}

.sidebar-skel .line {
    height: 10px;
    border-radius: .5rem;
    background: #eef2f7
}

.card-skel {
    border: 1px solid #e9edf3;
    border-radius: .75rem;
    background: #fff;
    box-shadow: 0 3px 12px rgba(2, 6, 23, .03)
}

.table-skel .row {
    height: 10px;
    border-radius: .5rem;
    background: #edf1f6
}

.chart-skel {
    height: 90px;
    border-radius: .75rem;
    background: linear-gradient(90deg, #f3f4f6 20%, #e5e7eb 40%, #f3f4f6 60%);
    background-size: 200% 100%;
    animation: shimmer 2.6s linear infinite
}

.btn-pulse {
    position: relative;
}

.btn-pulse:after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: .6rem;
    border: 2px solid rgba(37, 99, 235, .45);
    animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
    0% {
        opacity: .7;
        transform: scale(.98)
    }

    100% {
        opacity: 0;
        transform: scale(1.2)
    }
}

.cursor-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: #0ea5e9;
    box-shadow: 0 0 0 6px rgba(14, 165, 233, .25);
    left: 60%;
    top: 40%;
    animation: clicky 2.6s ease-in-out infinite;
}

@keyframes clicky {

    0%,
    70% {
        transform: translate(0, 0) scale(1)
    }

    10% {
        transform: translate(6px, 4px) scale(.9)
    }

    12% {
        transform: translate(6px, 4px) scale(1)
    }
}

.hero-bell {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #1d4ed8;
    color: #fff;
    border-radius: 9999px;
    padding: .25rem .5rem;
    font-size: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    box-shadow: 0 10px 24px rgba(29, 78, 216, .25);
}

.hero-bell i {
    animation: ring .9s ease-in-out infinite;
    transform-origin: 50% 0;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0)
    }

    30% {
        transform: rotate(12deg)
    }

    60% {
        transform: rotate(-10deg)
    }
}

.reflection {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255, 255, 255, .42), transparent 45%);
}

.shadow-alive {
    box-shadow: 0 30px 60px rgba(2, 6, 23, .14);
    transition: box-shadow .35s ease
}

.shadow-alive:hover {
    box-shadow: 0 40px 80px rgba(2, 6, 23, .18)
}

.phone {
    position: absolute;
    right: -18px;
    bottom: -20px;
    width: 185px;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 40px rgba(2, 6, 23, .12);
    animation: floatY 7s ease-in-out infinite
}

@media (min-width: 1024px) {
    #deviceWrap.compact-pc {
        transform-origin: top center;
        transform: scale(var(--mockup-scale));
    }

    .phone {
        width: 190px;
        bottom: -10px;
        right: -10px;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    #deviceWrap.compact-pc {
        transform-origin: top center;
        transform: scale(.96);
    }
}

.progress-shimmer {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0)0, rgba(255, 255, 255, .7)50%, rgba(255, 255, 255, 0)100%);
    background-size: 200% 100%;
    animation: shimmer 3.5s linear infinite
}

.badge {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #2563eb;
    color: #fff;
    border-radius: 9999px;
    padding: .25rem .5rem;
    font-size: .7rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, .3)
}


.tech-carousel {
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tech-track {
    width: max-content;
    animation: techscroll 28s linear infinite;
}

@keyframes techscroll {
    to {
        transform: translateX(-50%);
    }
}

.group\/tech:hover .tech-track {
    animation-play-state: paused;
}

.tech-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #64748b;
    white-space: nowrap;
}

.tech-dot {
    width: 4px;
    height: 4px;
    border-radius: 9999px;
    background: #cbd5e1;
    display: inline-block
}


.srv-grid {
    --stagger: .06s;
}

.srv-card {
    position: relative;
    border: 1px solid #e9edf3;
    border-radius: 1.25rem;
    background: #fff;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .05);
}

.srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(2, 6, 23, .08);
    border-color: #dbe5f1;
}

.srv-glow {
    position: absolute;
    inset: -1px;
    border-radius: 1.25rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
}

.srv-card:hover .srv-glow {
    opacity: .9;
    background: radial-gradient(60% 60% at 50% 0%, rgba(37, 99, 235, .12), transparent 60%);
}

.icon-bubble {
    height: 48px;
    width: 48px;
    display: grid;
    place-items: center;
    border-radius: .9rem;
    background: #eef4ff;
    color: #2563eb;
    transform: translateZ(0);
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-4px)
    }
}

.srv-card:hover .icon-bubble i {
    animation: iconBounce .9s ease;
}

.tilt {
    transform-style: preserve-3d;
}

.tilt:hover .tilt-inner {
    transform: translateZ(12px);
}

.reveal.srv-delay-1 {
    transition-delay: calc(var(--stagger) * 1)
}

.reveal.srv-delay-2 {
    transition-delay: calc(var(--stagger) * 2)
}

.reveal.srv-delay-3 {
    transition-delay: calc(var(--stagger) * 3)
}

.reveal.srv-delay-4 {
    transition-delay: calc(var(--stagger) * 4)
}

.badge-srv {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: .7rem;
    padding: .25rem .5rem;
    border-radius: 9999px;
    color: #0b3b85;
    background: #e6efff;
}

.badge-new {
    background: #e8fff6;
    color: #0b6b4f;
}

.stack-chip {
    font-size: .75rem;
    border: 1px solid #e6ebf3;
    padding: .4rem .6rem;
    border-radius: 9999px;
    background: #fff;
}


@media (prefers-reduced-motion: reduce) {

    .device,
    .screen,
    .scroll-cue,
    [class*="animate-"],
    .hero-bg,
    .tech-track {
        animation: none !important;
        transition: none !important;
    }
}


.srv3-tabs {
    display: inline-flex;
    gap: .25rem;
    background: #fff;
    border: 1px solid #e6ebf3;
    border-radius: 9999px;
    padding: .25rem
}

.srv3-tab {
    position: relative;
    border-radius: 9999px;
    padding: .5rem .9rem;
    font-size: .9rem;
    color: #334155
}

.srv3-tab[aria-selected="true"] {
    background: #e8f0ff;
    color: #1d4ed8;
}

.srv3-tab:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 2px
}

.srv3-card {
    position: relative;
    border: 1px solid #e6ebf3;
    border-radius: 1.1rem;
    overflow: hidden;
    background: #fff;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow: 0 12px 30px rgba(2, 6, 23, .05);
}

.srv3-card:hover {
    transform: translateY(-6px);
    border-color: #dbe5f1;
    box-shadow: 0 18px 60px rgba(2, 6, 23, .10);
}

.srv3-media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden
}

.srv3-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .6s ease
}

.srv3-card:hover .srv3-media img {
    transform: scale(1.07)
}

.srv3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .0) 40%, rgba(15, 23, 42, .18) 100%)
}

.srv3-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .25) 40%, transparent 60%);
    transform: translateX(-120%);
}

.srv3-card:hover .srv3-sheen {
    transform: translateX(120%);
    transition: transform .9s ease;
}

.srv3-body {
    padding: 1rem 1rem 1.1rem 1rem
}

.srv3-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    color: #0f172a
}

.srv3-title i {
    color: #2563eb
}

.srv3-meta {
    margin-top: .6rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    font-size: .78rem;
    color: #64748b
}

.srv3-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .55rem;
    border: 1px solid #e6ebf3;
    border-radius: 9999px;
    background: #fff
}

.srv3-feats {
    margin-top: .6rem;
    color: #475569;
    font-size: .92rem
}

.srv3-feats li {
    display: flex;
    gap: .5rem;
}

.srv3-feats i {
    color: #2563eb;
    margin-top: .2rem
}

.srv3-cta {
    margin-top: .9rem;
    display: flex;
    gap: .6rem;
    align-items: center;
}

.srv3-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: .75rem;
    padding: .55rem .9rem
}

.srv3-btn--primary {
    background: #2563eb;
    color: #fff
}

.srv3-btn--primary:hover {
    background: #1d4ed8
}

.srv3-link {
    color: #0f172a;
    text-underline-offset: 2px
}

.srv3-chip {
    font-size: .75rem;
    border: 1px solid #e6ebf3;
    padding: .35rem .55rem;
    border-radius: 9999px;
    background: #fff
}

@media (prefers-reduced-motion: reduce) {

    .srv3-card,
    .srv3-media img,
    .srv3-sheen {
        transition: none !important;
        transform: none !important
    }
}


.vchip {
    border: 1px solid #e6ebf3;
    background: #fff;
    color: #334155;
    padding: .45rem .8rem;
    border-radius: 9999px;
    font-size: .9rem;
    transition: all .2s ease;
}

.vchip[aria-selected="true"] {
    background: #e8f0ff;
    color: #1d4ed8;
    border-color: #cfe0ff;
}

.vchip:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 2px
}


.vcard {
    display: block;
    border: 1px solid #e6ebf3;
    border-radius: 1.1rem;
    background: #fff;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .05);
    min-width: 88%;
}

@media (min-width:1024px) {
    .vcard {
        min-width: 0
    }
}

.vcard:hover {
    transform: translateY(-6px);
    border-color: #dbe5f1;
    box-shadow: 0 18px 60px rgba(2, 6, 23, .10)
}

.v-media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden
}

.v-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .6s ease
}

.vcard:hover .v-media img {
    transform: scale(1.07)
}

.v-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .0) 40%, rgba(15, 23, 42, .18) 100%)
}

.v-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .22) 40%, transparent 60%);
    transform: translateX(-120%);
}

.vcard:hover .v-sheen {
    transform: translateX(120%);
    transition: transform .9s ease
}

.srvx-chip {
    border: 1px solid #e6ebf3;
    background: #fff;
    color: #334155;
    padding: .45rem .8rem;
    border-radius: 9999px;
    font-size: .9rem;
    transition: all .2s ease;
}

.srvx-chip[aria-selected="true"] {
    background: #e8f0ff;
    color: #1d4ed8;
    border-color: #cfe0ff;
}

.srvx-chip:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 2px
}

.srvx-card {
    background: #fff;
    border: 1px solid #e6ebf3;
    border-radius: 1.1rem;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    min-width: 88%;
    position: relative;
    isolation: isolate;
}

@media (min-width:1024px) {
    .srvx-card {
        min-width: 0
    }
}

.srvx-card:hover {
    transform: translateY(-6px);
    border-color: #dbe5f1;
    box-shadow: 0 18px 60px rgba(2, 6, 23, .10)
}

.srvx-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    background: conic-gradient(from 180deg, rgba(37, 99, 235, .15), rgba(99, 102, 241, .12), rgba(37, 99, 235, .15));
    filter: blur(8px);
    transition: opacity .35s ease;
}

.srvx-card:hover::before {
    opacity: 1
}

.srvx-media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f8fafc
}

.srvx-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .6s ease
}

.srvx-card:hover .srvx-media img {
    transform: scale(1.07)
}

.srvx-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .0) 40%, rgba(15, 23, 42, .18) 100%)
}

.srvx-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .22) 40%, transparent 60%);
    transform: translateX(-120%)
}

.srvx-card:hover .srvx-sheen {
    transform: translateX(120%);
    transition: transform .9s ease
}

.srvx-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: .75rem;
    padding: .25rem .5rem;
    border-radius: .6rem;
    background: #1d4ed8;
    color: #fff;
    display: inline-flex;
    gap: .35rem;
    align-items: center;
    box-shadow: 0 10px 24px rgba(29, 78, 216, .22);
}

.srvx-body {
    padding: 1rem 1rem 1.1rem
}

.srvx-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    color: #0f172a
}

.srvx-meta {
    margin-top: .35rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem .8rem;
    font-size: .8rem;
    color: #64748b
}

.srvx-meta span {
    display: inline-flex;
    gap: .35rem;
    align-items: center;
}

.srvx-feats {
    margin-top: .6rem;
    display: grid;
    gap: .35rem;
    color: #334155;
    font-size: .92rem
}

.srvx-feats li {
    display: flex;
    gap: .5rem
}

.srvx-feats i {
    color: #16a34a
}

.srvx-cta {
    margin-top: .9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem
}

.srvx-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: .75rem;
    padding: .55rem .9rem;
}

.srvx-btn--primary {
    background: #2563eb;
    color: #fff
}

.srvx-btn--primary:hover {
    background: #1d4ed8
}

.srvx-link {
    color: #1d4ed8;
    font-weight: 600
}

.srvx-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.pcard {
    background: #fff;
    border: 1px solid #e6ebf3;
    border-radius: 1.1rem;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    min-width: 88%;
}

@media (min-width:1024px) {
    .pcard {
        min-width: 0
    }
}

.pcard:hover {
    transform: translateY(-6px);
    border-color: #dbe5f1;
    box-shadow: 0 18px 60px rgba(2, 6, 23, .10)
}

.p-media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f8fafc
}

.p-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .6s ease
}

.pcard:hover .p-media img {
    transform: scale(1.07)
}

.p-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .0) 40%, rgba(15, 23, 42, .2) 100%)
}

.p-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .22) 40%, transparent 60%);
    transform: translateX(-120%)
}

.pcard:hover .p-sheen {
    transform: translateX(120%);
    transition: transform .9s ease
}

.p-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: .75rem;
    padding: .25rem .5rem;
    border-radius: .6rem;
    background: #1d4ed8;
    color: #fff;
    display: inline-flex;
    gap: .35rem;
    align-items: center;
    box-shadow: 0 10px 24px rgba(29, 78, 216, .22);
}

.p-body {
    padding: 1rem 1rem 1.1rem
}

.p-title {
    font-weight: 800;
    color: #0f172a
}

.p-text {
    margin-top: .25rem;
    color: #475569;
    font-size: .95rem
}

.p-tags {
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .6rem;
    font-size: .8rem;
    color: #64748b
}

.p-tags span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.p-cta {
    margin-top: .8rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.p-link {
    color: #1d4ed8;
    font-weight: 600
}

.p-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

@media (prefers-reduced-motion: reduce) {

    .srvx-card,
    .srvx-media img,
    .srvx-sheen,
    .pcard,
    .p-media img,
    .p-sheen {
        transition: none !important;
        transform: none !important
    }
}

.portfolio-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem .6rem;
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    background: #fff;
    font-size: .85rem;
}

.portfolio-clip {
    position: absolute;
    left: .75rem;
    top: .75rem;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    color: #fff;
    font-size: .75rem;
    padding: .25rem .5rem;
    border-radius: .5rem;
}

.portfolio-img {
    aspect-ratio: 16/10;
    object-fit: cover;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: .75rem;
    padding: .625rem 1rem;
    border: 1px solid #e2e8f0;
    transition: background .2s ease, border .2s ease, color .2s ease;
}

.portfolio-btn:hover {
    border-color: #2563eb;
    color: #1d4ed8;
}

.portfolio-btn-primary {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.portfolio-btn-primary:hover {
    background: #1d4ed8;
}

.portfolio-kbd {
    font-size: .7rem;
    border: 1px solid #e2e8f0;
    border-bottom-width: 2px;
    padding: .15rem .4rem;
    border-radius: .375rem;
    background: #fff;
}

.portfolio-skeleton {
    animation: pulse 1.2s ease-in-out infinite;
    background: linear-gradient(90deg, #f1f5f9, #e2e8f0, #f1f5f9);
    background-size: 200% 100%;
}

.hero-grid {
    background: linear-gradient(180deg, rgba(2, 6, 23, .02), transparent), linear-gradient(90deg, rgba(2, 6, 23, .03) 1px, transparent 1px), linear-gradient(0deg, rgba(2, 6, 23, .03) 1px, transparent 1px);
    background-size: 100% 100%, 24px 24px, 24px 24px;
}

.founder-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .75rem;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    font-size: .8rem;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem .5rem;
    border-radius: .5rem;
    font-size: .72rem;
}

.founder-shadow {
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.founder-avatar {
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(37, 99, 235, .25);
}

.founder-progress {
    height: .5rem;
    border-radius: 999px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.founder-progress span {
    position: absolute;
    inset: 0 auto 0 0;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.v-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    color: #0f172a
}

.v-text {
    margin-top: .35rem;
    font-size: .92rem;
    color: #475569
}


@media (prefers-reduced-motion: reduce) {

    .vcard,
    .v-media img,
    .v-sheen {
        transition: none !important;
        transform: none !important
    }
}


.ally-marquee-wrap {
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    border: 1px solid #e6ebf3;
    border-radius: 1rem;
    background: #fff;
}

.ally-marquee-track {
    width: max-content;
    animation: allyScroll 26s linear infinite;
}

@keyframes allyScroll {
    to {
        transform: translateX(-50%);
    }
}

.ally-marquee-wrap:hover .ally-marquee-track {
    animation-play-state: paused;
}

.ally-logo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .8rem;
    border: 1px solid #e6ebf3;
    border-radius: 9999px;
    background: #fff;
    color: #334155;
    font-size: .9rem
}

.ally-logo .flag {
    font-size: 1.05rem
}


.ally-card {
    background: #fff;
    border: 1px solid #e6ebf3;
    border-radius: 1.1rem;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .05);
    min-width: 88%;
}

@media (min-width:1024px) {
    .ally-card {
        min-width: 0
    }
}

.ally-card:hover {
    transform: translateY(-6px);
    border-color: #dbe5f1;
    box-shadow: 0 18px 60px rgba(2, 6, 23, .10)
}

.ally-media {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.ally-avatar {
    height: 64px;
    width: 64px;
    border-radius: 1rem;
    background: #1d4ed8;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(29, 78, 216, .25);
}

.ally-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .0) 20%, rgba(15, 23, 42, .08) 100%)
}

.ally-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .22) 40%, transparent 60%);
    transform: translateX(-120%)
}

.ally-card:hover .ally-sheen {
    transform: translateX(120%);
    transition: transform .9s ease
}

.ally-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: .7rem;
    padding: .25rem .5rem;
    border-radius: 9999px;
    background: #e8fff6;
    color: #0b6b4f;
    display: inline-flex;
    gap: .35rem;
    align-items: center
}

.ally-body {
    padding: 1rem 1rem 1.1rem
}

.ally-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    color: #0f172a
}

.pill {
    font-size: .72rem;
    padding: .25rem .5rem;
    background: #eef2ff;
    color: #1d4ed8;
    border-radius: 9999px
}

.ally-desc {
    margin-top: .35rem;
    font-size: .95rem;
    color: #475569
}

.ally-stack {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .5rem;
    margin-top: .6rem;
    color: #334155;
    font-size: .85rem
}

.ally-stack li {
    display: inline-flex;
    gap: .35rem;
    align-items: center;
    border: 1px solid #e6ebf3;
    border-radius: 9999px;
    padding: .25rem .5rem;
    background: #fff
}

.ally-meta {
    margin-top: .6rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    font-size: .8rem;
    color: #64748b
}

.ally-cta {
    margin-top: .9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem
}

.btn-ally {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: .75rem;
    padding: .55rem .9rem;
    background: #2563eb;
    color: #fff
}

.btn-ally:hover {
    background: #1d4ed8
}

.ally-note {
    font-size: .75rem;
    color: #64748b
}


@media (prefers-reduced-motion: reduce) {

    .ally-marquee-track,
    .ally-card,
    .ally-sheen {
        animation: none !important;
        transition: none !important;
        transform: none !important
    }
}


.chip {
    border: 1px solid #e6ebf3;
    background: #fff;
    color: #334155;
    padding: .45rem .8rem;
    border-radius: 9999px;
    font-size: .9rem;
    transition: all .2s ease;
}

.chip[aria-selected="true"] {
    background: #e8f0ff;
    color: #1d4ed8;
    border-color: #cfe0ff;
}

.chip:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 2px
}


.faq-card {
    position: relative;
    border: 1px solid #e6ebf3;
    border-radius: 1rem;
    background: #fff;
    padding: 1rem 1.1rem;
    transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}

.faq-card:hover {
    box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
    border-color: #dbe5f1;
    transform: translateY(-2px)
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    gap: .75rem
}

.q {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
    color: #0f172a
}

.qicon {
    color: #2563eb;
    transition: transform .25s ease
}

.group[open] .qicon {
    transform: translateY(-1px)
}

.toggle {
    color: #64748b
}

.faq-body {
    margin-top: .75rem;
    color: #475569;
    font-size: .95rem
}

.sheen {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 20%, rgba(37, 99, 235, .08) 40%, transparent 60%);
    opacity: 0;
    transition: opacity .35s ease
}

.faq-card:hover .sheen {
    opacity: 1
}


@media (prefers-reduced-motion: reduce) {
    .faq-card {
        transition: none !important
    }

    .qicon {
        transition: none !important
    }
}


.field .fi {
    position: relative;
}

.field .fi i {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8
}

.field .fi .inp {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: .75rem;
    padding: .6rem .8rem .6rem 2.25rem;
    outline: none;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.field .fi .inp:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15)
}

.field .err {
    display: none;
    margin-top: .3rem;
    font-size: .8rem;
    color: #b91c1c
}

.field.invalid .err {
    display: block
}

.field.invalid .fi .inp {
    border-color: #ef4444;
    animation: shake .24s linear 2
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(2px)
    }

    75% {
        transform: translateX(-2px)
    }
}


.fi-textarea i {
    top: 1rem;
    transform: none
}

.fi-textarea .inp {
    padding-left: 2.25rem;
    resize: vertical
}


.range-wrap {
    position: relative;
    padding: 10px 0
}

.range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 9999px;
    background: #e5e7eb;
    outline: none
}

.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 9999px;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .15)
}

.range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 9999px;
    background: #2563eb;
    cursor: pointer
}

.range-track {
    position: absolute;
    left: 0;
    top: 50%;
    height: 6px;
    background: #93c5fd;
    border-radius: 9999px;
    pointer-events: none;
    transform: translateY(-50%)
}


.seg {
    display: inline-grid;
    grid-auto-flow: column;
    gap: .3rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: .3rem;
    border-radius: .9rem
}

.seg input {
    display: none
}

.seg label {
    cursor: pointer;
    padding: .45rem .8rem;
    border-radius: .6rem;
    font-size: .9rem;
    color: #334155
}

.seg input:checked+label {
    background: #e8f0ff;
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #cfe0ff
}


.drop {
    display: flex;
    align-items: center;
    gap: .6rem;
    justify-content: center;
    border: 1px dashed #cbd5e1;
    border-radius: .9rem;
    padding: 1rem;
    color: #334155;
    background: #f8fafc;
    transition: border-color .2s ease, background .2s ease
}

.drop:hover {
    border-color: #2563eb;
    background: #f1f5ff
}


.btn-cta2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: .75rem;
    padding: .7rem 1rem;
    background: #2563eb;
    color: #fff;
    transition: transform .2s ease, box-shadow .2s ease
}

.btn-cta2:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, .25)
}

.btn-cta2[disabled] {
    opacity: .7;
    cursor: not-allowed
}

.btn-cta2 .btn-loading {
    display: none
}

.btn-cta2.loading .btn-label {
    display: none
}

.btn-cta2.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    animation: spinFade .8s linear infinite
}

@keyframes spinFade {
    0% {
        opacity: .8;
        transform: rotate(0)
    }

    100% {
        opacity: 1;
        transform: rotate(360deg)
    }
}


.toast {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: none;
    align-items: center;
    gap: .7rem;
    background: #0ea5e9;
    color: #fff;
    border-radius: .9rem;
    padding: .75rem 1rem;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .2);
    z-index: 60
}

.toast.show {
    display: flex;
    animation: toastIn .25s ease
}

@keyframes toastIn {
    from {
        transform: translateY(6px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}


@media (prefers-reduced-motion: reduce) {

    .btn-cta2,
    .toast {
        animation: none !important;
        transition: none !important
    }
}


.f-title {
    @apply font-semibold text-slate-900;
}


.f-list {
    margin-top: .6rem;
    display: grid;
    gap: .4rem;
    font-size: .95rem
}

.f-list a {
    color: #475569;
    text-underline-offset: 3px
}

.f-list a:hover {
    color: #1d4ed8;
    text-decoration: underline
}

.f-social {
    height: 38px;
    width: 38px;
    display: grid;
    place-items: center;
    border-radius: .75rem;
    border: 1px solid #e6ebf3;
    color: #334155;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.f-social:hover {
    transform: translateY(-2px);
    border-color: #cfe0ff;
    color: #1d4ed8;
    box-shadow: 0 10px 20px rgba(29, 78, 216, .12)
}

.f-news {
    margin-top: .6rem
}

.f-news-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    height: 36px;
    padding: 0 .9rem;
    border-radius: .6rem;
    background: #2563eb;
    color: #fff;
    transition: transform .15s ease, box-shadow .2s ease;
}

.f-news-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, .25)
}

.f-news-hint {
    margin-top: .35rem;
    font-size: .75rem;
    color: #94a3b8
}

.f-news-err {
    display: none;
    margin-top: .35rem;
    font-size: .8rem;
    color: #b91c1c
}

.f-news-ok {
    display: none;
    margin-top: .35rem;
    font-size: .85rem;
    color: #0b6b4f
}

.f-mini {
    color: #64748b
}

.f-mini:hover {
    color: #1d4ed8;
    text-decoration: underline;
    text-underline-offset: 3px
}

.f-mini-btn {
    border: 1px solid #e6ebf3;
    background: #fff;
    color: #334155;
    border-radius: .5rem;
    padding: .25rem .5rem;
    transition: all .15s ease;
}

.f-mini-btn:hover {
    color: #1d4ed8;
    border-color: #cfe0ff;
    transform: translateY(-1px)
}


@media (prefers-reduced-motion: reduce) {

    .f-social,
    .f-news-btn,
    .f-mini-btn {
        transition: none !important;
        transform: none !important;
        box-shadow: none !important
    }
}