:root {
    --bg: #0f1324;
    --bg2: #121730;
    --paper: #ffffff;
    --muted: #e6e9f5;
    --ink: #111418;
    --ink-soft: #32405a;
    --brand: #7a5cff;
    --brand-2: #00d4a6;
    --accent: #ff8a3d
}

* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

body {
    font: 500 16px/1.6 'Rubik', sans-serif;
    background: linear-gradient(160deg, var(--bg) 0%, var(--bg2) 55%) fixed;
    color: #eaf0ff
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: opacity .2s ease
}

a:hover {
    opacity: .8
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px
}

.grid {
    display: grid;
    gap: 24px
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700
}

.btn-primary {
    background: var(--brand);
    color: #fff
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .25);
    color: #fff
}

.btn-light {
    background: #fff;
    color: var(--ink)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px
}

.nav a {
    color: #fff
}

.nav .menu {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.brand {
    font-weight: 800;
    letter-spacing: .4px
}

.tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 212, 166, .14);
    color: #b8fff0;
    font-size: 12px
}

.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 19, 36, .30), rgba(15, 19, 36, .75)), url('../imgcase/imgro1.webp') center/cover no-repeat;
    filter: saturate(1.1)
}

.hero > div {
    position: relative;
    z-index: 2
}

.display {
    font-size: clamp(32px, 5.5vw, 60px);
    line-height: 1.1;
    margin: 0 0 14px;
    font-weight: 800
}

.lead {
    font-size: clamp(16px, 2.2vw, 20px);
    opacity: .92;
    margin: 0 0 24px
}

.ribbon {
    position: absolute;
    inset: auto -40px 0 auto;
    height: 120px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    filter: blur(60px);
    opacity: .55
}

.card {
    background: #0e1327;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 18px;
    padding: 22px;
    color: #fff
}

.card.light {
    background: #fff;
    color: var(--ink)
}

.muted {
    color: #b9c2e3
}

.split {
    display: grid;
    gap: 28px
}

.section {
    padding: 64px 20px;
}

.section.light {
    background: #f6f7ff;
    color: var(--ink)
}

.section.light .muted {
    color: #506184
}

.section.paper {
    background: #fff;
    color: var(--ink)
}

.kpi {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 16px
}

.kpi .box {
    background: rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 16px;
    text-align: center
}

.kpi .big {
    font-size: 28px;
    font-weight: 800
}

.feature {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 20px
}

.feature .card h3 {
    margin: 0 0 8px;
    font-size: 18px
}

.strip {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: center
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.badge i {
    font-size: 18px
}

.footer {
    padding: 28px 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px
}

.footer a {
    color: #bcd2ff
}

.form {
    display: grid;
    gap: 14px
}

.input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff
}

.input:focus, textarea:focus {
    outline: 2px solid var(--brand)
}

.label {
    font-size: 14px;
    opacity: .9
}

.note {
    font-size: 13px
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
}

.ribbon2 {
    position: absolute;
    top: -80px;
    right: 0px;
    width: 200px;
    height: 200px;
    background: radial-gradient(closest-side, rgba(122, 92, 255, .6), transparent);
    filter: blur(20px)
}

.jobs-grid {
    display: grid;
    gap: 24px
}

.jobs-grid .job {
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    padding: 18px;
    border: 1px solid #e6e9f5
}

.jobs-grid .job h3 {
    margin: 0 0 8px
}

.legal {
    max-width: 900px;
    margin: 0 auto
}

h1, h2, h3 {
    margin: .2em 0 .4em
}

.subtle {
    color: #7183a8
}

@media (min-width: 880px) {
    .split {
        grid-template-columns:1.1fr .9fr
    }

    .strip {
        grid-template-columns:1.2fr .8fr
    }

    .feature {
        grid-template-columns:repeat(3, 1fr)
    }
}

.hero, .header, section {
    overflow: hidden;
}

@media screen and (max-width: 800px) {
    .feature, .strip, .grid,.kpi{
        grid-template-columns: minmax(0,1fr) !important;
    }
}
