
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg:#EFF6FF;--bg-deep:#DBEAFE;--bg-grad:linear-gradient(160deg,#EFF6FF 0%,#E0EFFE 40%,#F0F4FF 100%);
    --surface:#FFFFFF;--surface-alt:#F8FAFC;
    --card-shadow:0 2px 12px rgba(100,116,139,.08);--card-shadow-hover:0 12px 40px rgba(100,116,139,.15);
    --text:#1a1a2e;--text-mid:#5a5a7a;--text-light:#8888a8;
    --blue:#2563EB;--blue-light:#3B82F6;--blue-glow:rgba(37,99,235,.1);--blue-deep:#1D4ED8;
    --teal:#0D8F7F;--teal-light:#12B89E;--teal-glow:rgba(18,184,158,.1);
    --coral:#E8664A;--coral-glow:rgba(232,102,74,.08);
    --gold:#F5A623;--silver:#A8B2C1;--bronze:#CD7F32;--diamond:#7FD4E8;--white:#fff;
    --font-head:'Clash Display',sans-serif;--font-body:'Satoshi',sans-serif;
    --ease:cubic-bezier(.16,1,.3,1);
    --dark:#1a1a2e;--mid:#5a5a7a;--light:#8888a8;
    --accent:#2563EB;--accent-dark:#1D4ED8;--warm:#E8664A;
    --offwhite:#EFF6FF;--cream:#DBEAFE;
    --radius:14px;
    --sans:'Satoshi',sans-serif;--serif:'Clash Display',sans-serif;
    --font-serif:'Clash Display',sans-serif;
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-grad);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 1.25rem 0;
    transition: all .35s;
}
nav.scrolled {
    background: rgba(10,10,20,.92);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: .65rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    line-height: 1;
}
.logo-mark { display: none; }
.logo-icon { display: none; }
.logo-img { height: 55px; width: auto; display: block; }
.logo-text {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: .04em;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
}
.logo-text strong { font-weight: 700; }
.nav-links { display: flex; gap: .25rem; align-items: center; }
.nav-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: .5rem 1rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all .2s;
}
.nav-item svg { flex-shrink: 0; opacity: 0.5; transition: opacity .2s; color: rgba(255,255,255,.4); }
.nav-item:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-item:hover svg { opacity: 1; color: rgba(255,255,255,.7); }

.nav-dropdown { position: relative; }
.nav-dropdown .nav-item { cursor: pointer; }
.nav-dropdown .nav-item .dd-arrow {
    width: 10px; height: 10px;
    opacity: 0.4;
    transition: transform .2s, opacity .2s;
    margin-left: -0.1rem;
}
.nav-dropdown:hover .nav-item .dd-arrow,
.nav-dropdown.open .nav-item .dd-arrow { transform: rotate(180deg); opacity: 0.7; }
.nav-dd-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 220px;
    background: rgba(15,15,24,.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    padding: 0.4rem;
    opacity: 0; visibility: hidden;
    transform: translateY(-4px);
    transition: all .2s;
    z-index: 120;
}
.nav-dropdown:hover .nav-dd-menu,
.nav-dropdown.open .nav-dd-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dd-menu a {
    display: block;
    padding: .6rem .85rem;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all .15s;
}
.nav-dd-menu a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-links a.btn { color: #fff !important; margin-left: .5rem; }
.nav-links a.btn:hover { color: #fff !important; }
.nav-links a.btn svg { opacity: 0.85; }
.nav-links a.btn:hover svg { opacity: 1; }

.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.5rem;
    background: linear-gradient(135deg,var(--blue),var(--blue-light));
    color: var(--white);
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s var(--ease);
    border: none; cursor: pointer;
    box-shadow: 0 2px 12px rgba(37,99,235,.25);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,.35); }
.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid rgba(37,99,235,.2);
    box-shadow: none;
}
.btn-outline:hover { border-color: var(--blue); background: var(--blue-glow); box-shadow: none; }
.nav-cta {
    background: linear-gradient(135deg,var(--blue),var(--blue-light)) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 12px rgba(37,99,235,.25);
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(37,99,235,.35) !important; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-header .tag {
    display: inline-block;
    padding: .3rem .8rem;
    background: var(--blue-glow);
    color: var(--blue);
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.25rem;
}
.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text);
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

footer {
    background: #0f0f18;
    border-top: 1px solid rgba(255,255,255,.04);
    color: #fff;
    padding: 0;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    padding: 4.5rem 0 3.5rem;
}
.footer-brand .logo { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; margin-bottom: 1rem; }
.footer-brand .logo-icon { display: none; }
.footer-logo-full { display: block; margin-bottom: 1rem; }
.footer-logo-img { height: 55px; width: auto; display: block; }
.footer-brand .logo-text { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: #fff; }
.footer-tagline {
    font-size: .85rem;
    line-height: 1.6;
    color: rgba(255,255,255,.35);
    max-width: 280px;
    margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: all .2s;
}
.footer-social a:hover { background: rgba(37,99,235,.15); border-color: rgba(37,99,235,.25); color: var(--blue-light); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    margin-bottom: 1.25rem;
}
.footer-col a {
    display: block;
    font-size: .88rem;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    padding: .3rem 0;
    transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .35rem 0;
}
.footer-contact-item svg { width: 15px; height: 15px; color: rgba(255,255,255,.3); flex-shrink: 0; }
.footer-contact-item a,
.footer-contact-item span {
    font-size: .88rem;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: color .2s;
}
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.04);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

.page-hero {
    padding: 10rem 0 3.5rem;
    background: #0a0a0f;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 10% 40%,rgba(37,99,235,.1),transparent),
        radial-gradient(ellipse 60% 40% at 80% 20%,rgba(18,184,158,.06),transparent);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: .75rem;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.5);
    max-width: 600px;
    line-height: 1.7;
}
.page-hero .updated {
    font-size: .9rem;
    color: rgba(255,255,255,.3);
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}
.legal-content h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2.5rem 0 .75rem;
    letter-spacing: -.02em;
    color: var(--text);
}
.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 .5rem;
    color: var(--text);
}
.legal-content p {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1rem;
}
.legal-content ul {
    margin: .5rem 0 1rem 1.5rem;
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-mid);
}
.legal-content li { margin-bottom: .25rem; }
.legal-content a { color: var(--blue); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 6rem;
}
.blog-card {
    border: 1px solid rgba(37,99,235,.08);
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    transition: all .35s var(--ease);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}
.blog-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
}
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: .75rem; color: var(--text-light); font-weight: 600; margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .05em; }
.blog-card-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: .75rem; line-height: 1.3; letter-spacing: -.02em; }
.blog-card-excerpt { font-size: .88rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--blue);
    margin-top: 1rem;
}

.post-hero {
    padding: 10rem 0 2rem;
    background: #0a0a0f;
    color: #fff;
    position: relative;
}
.post-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 40% at 30% 50%,rgba(37,99,235,.08),transparent);
    pointer-events: none;
}
.post-hero .container { max-width: 800px; position: relative; z-index: 1; }
.post-meta {
    font-size: .85rem;
    color: rgba(255,255,255,.35);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.25); }
.post-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
    max-width: 720px;
}
.post-hero .post-excerpt { font-size: 1.1rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 640px; }
.post-hero-image { max-width: 800px; margin: 2.5rem auto 0; padding: 0 2rem; }
.post-hero-image img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); }
.post-content { max-width: 720px; margin: 0 auto; padding: 2.5rem 2rem 4rem; }
.post-content h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--text); margin: 2.5rem 0 1rem; line-height: 1.3; letter-spacing: -.02em; }
.post-content p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; }
.post-content strong { color: var(--text); font-weight: 600; }
.post-content em { font-style: italic; }
.post-back { max-width: 720px; margin: 0 auto; padding: 0 2rem 5rem; }
.post-back a { font-size: .9rem; font-weight: 600; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.post-back a:hover { text-decoration: underline; }

.careers-section { padding: 4rem 0 6rem; }
.careers-section h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; margin-bottom: .5rem; letter-spacing: -.02em; color: var(--text); }
.careers-intro { color: var(--text-mid); margin-bottom: 2.5rem; font-size: .95rem; }
.job-card {
    border: 1px solid rgba(37,99,235,.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.25rem;
    background: var(--surface);
    transition: all .3s var(--ease);
    box-shadow: var(--card-shadow);
}
.job-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.job-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.job-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--text); }
.job-badge {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .3rem .85rem;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: .68rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
    flex-shrink: 0;
}
.badge-filled { background: var(--teal-glow); color: var(--teal); }
.badge-open { background: var(--blue-glow); color: var(--blue); }
.job-meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.job-meta span { font-size: .85rem; color: var(--text-light); display: inline-flex; align-items: center; gap: .35rem; }
.job-desc { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }
.job-apply {
    display: inline-block;
    margin-top: 1rem;
    padding: .6rem 1.5rem;
    background: linear-gradient(135deg,var(--blue),var(--blue-light));
    color: #fff;
    border-radius: 100px;
    font-size: .85rem; font-weight: 600;
    text-decoration: none;
    transition: all .3s var(--ease);
    box-shadow: 0 2px 12px rgba(37,99,235,.25);
}
.job-apply:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.35); }
.no-openings {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(37,99,235,.08);
    margin-top: 2rem;
}
.no-openings p { color: var(--text-mid); font-size: .95rem; margin-bottom: .5rem; }
.no-openings a { color: var(--blue); text-decoration: none; font-weight: 500; }
.no-openings a:hover { text-decoration: underline; }
.culture-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; margin: 3rem 0 4rem; }
.culture-strip img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.value-card {
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(37,99,235,.08);
    box-shadow: var(--card-shadow);
}
.value-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); }
.value-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }

.wa-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998;
    width: 52px; height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.3);
    transition: transform .3s var(--ease);
    text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }

.burger { z-index: 251;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    padding: 6px;
    background: none; border: none;
    cursor: pointer; z-index: 210;
}
.burger span {
    display: block; width: 100%; height: 2px;
    background: #fff; border-radius: 2px;
    transition: all .3s;
    transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .burger { z-index: 9991 !important; display: flex; position: relative; }
    nav { background: #0a0a14 !important; z-index: 9992 !important; }
    body.nav-open { overflow: hidden; }
    .nav-links {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #08081a !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        z-index: 9990 !important;
        overflow-y: auto;
    }
    .nav-links.open { display: flex !important; }
    .nav-links .nav-item {
        display: inline-flex !important;
        padding: .75rem 1rem;
        font-size: 1.1rem;
        font-family: var(--font-head);
        font-weight: 600;
        color: rgba(255,255,255,.6);
    }
    .nav-links .nav-item:hover { color: #fff; background: rgba(255,255,255,.05); }
    .nav-dropdown .nav-dd-menu {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none;
        padding: 0 0 0 1rem;
        min-width: auto;
        display: none;
        background: transparent;
    }
    .nav-dropdown.open .nav-dd-menu { display: block; }
    .nav-dd-menu a { padding: .5rem .85rem; font-size: .92rem; color: rgba(255,255,255,.45); }
    .nav-links a.btn.nav-cta { margin: .75rem 0 0; justify-content: center; }
}
@media (max-width: 768px) {
    .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
    .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
    .blog-grid { grid-template-columns: 1fr; }
    .post-hero-image img { height: 200px; }
    .culture-strip { grid-template-columns: 1fr; }
    .culture-strip img { height: 200px; }
    .job-header { flex-direction: column; }
    .job-meta { gap: 1rem; }
    .not-found-links { grid-template-columns: repeat(2, 1fr); }
    .page-hero { padding: 7rem 0 2.5rem; }
    .page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
    .container { padding: 0 1.25rem; }
    .legal-content { padding: 2rem 1.25rem 4rem; }
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .not-found-links { grid-template-columns: 1fr; }
    .blog-card img { height: 180px; }
    .job-card { padding: 1.5rem; }
    .case-results { flex-wrap: nowrap; gap: .75rem; justify-content: space-between; }
}

.not-found-body { padding: 4rem 0 6rem; }
.not-found-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}
.not-found-card {
    display: flex; flex-direction: column;
    align-items: center; gap: .75rem;
    padding: 2rem 1.25rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(37,99,235,.08);
    text-decoration: none;
    color: var(--text);
    transition: all .3s var(--ease);
    box-shadow: var(--card-shadow);
}
.not-found-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.nf-icon { color: var(--blue); }
.nf-label { font-family: var(--font-head); font-weight: 600; font-size: .95rem; }

.cases { padding: 2rem 0 4rem; }
.cases .case-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(37,99,235,.06);
}
.cases .case-card:last-child { border-bottom: none; }
.cases .case-card:nth-child(even) { direction: rtl; }
.cases .case-card:nth-child(even) > * { direction: ltr; }
.case-img img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 16/10; }
.cases .case-tag {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--blue-glow);
    color: var(--blue);
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: .68rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .75rem;
}
.case-content h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; line-height: 1.3; margin-bottom: .5rem; letter-spacing: -.02em; }
.case-client { font-size: .85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.case-challenge h3, .case-solution h3 {
    font-family: var(--font-head); font-size: .72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-light); margin-bottom: .4rem;
}
.case-challenge p, .case-solution p { font-size: .9rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.25rem; }
.case-results {
    display: flex; gap: 2rem;
    margin-top: 1.5rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(37,99,235,.06);
}
.case-stat { text-align: center; }
.stat-number { display: block; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--blue); margin-bottom: .2rem; }
.stat-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-light); }
@media (max-width: 768px) {
    .cases .case-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
    .cases .case-card:nth-child(even) { direction: ltr; }
    .case-results { gap: 1rem; }
    .stat-number { font-size: 1rem; }
    .stat-label { font-size: .6rem; }
}

.sol-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: .72rem; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--blue);
    margin-bottom: .75rem;
}
.sol-hero-img { max-width: 900px; margin: 2.5rem auto 0; border-radius: var(--radius); overflow: hidden; }
.sol-hero-img img { width: 100%; height: 300px; object-fit: cover; display: block; filter: brightness(.85) saturate(.9); }
@media(max-width:600px){ .sol-hero-img img { height: 200px; } }
.sol-challenges { padding: 5rem 0; }
.sol-challenges h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; margin-bottom: 2.5rem; text-align: center; letter-spacing: -.02em; }
.sol-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.sol-item {
    padding: 2rem;
    border: 1px solid rgba(37,99,235,.08);
    border-radius: 16px;
    background: var(--surface);
    transition: all .3s var(--ease);
    box-shadow: var(--card-shadow);
}
.sol-item:hover { border-color: rgba(37,99,235,.2); transform: translateY(-2px); box-shadow: var(--card-shadow-hover); }
.sol-item h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; margin-bottom: .75rem; color: var(--text); }
.sol-item p { font-size: .92rem; color: var(--text-mid); line-height: 1.6; }
.sol-approach { padding: 5rem 0; background: var(--surface); }
.sol-approach h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; margin-bottom: 2.5rem; text-align: center; letter-spacing: -.02em; }
.sol-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 960px; margin: 0 auto; }
.sol-step { text-align: center; }
.step-num { display: inline-block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--blue); margin-bottom: .75rem; }
.sol-step h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; margin-bottom: .75rem; }
.sol-step p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }
.sol-case-link { padding: 4rem 0; }
.sol-case-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 2.5rem;
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 20px;
    text-align: center;
    background: var(--surface);
    box-shadow: var(--card-shadow);
}
.sol-case-box .case-tag { margin-bottom: 1rem; }
.sol-case-box h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
.sol-case-box p { color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.6; }
.sol-cta {
    padding: 5rem 0;
    text-align: center;
    background: #0a0a0f;
    color: #fff;
    position: relative;
}
.sol-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%,rgba(37,99,235,.08),transparent);
    pointer-events: none;
}
.sol-cta .container { position: relative; z-index: 1; }
.sol-cta h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; margin-bottom: .75rem; }
.sol-cta p { color: rgba(255,255,255,.5); margin-bottom: 2rem; }
.sol-cta .btn { background: linear-gradient(135deg,var(--blue),var(--blue-light)); color: #fff; }
.sol-cta .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,.4); }
.sol-industries { padding: 5rem 0; background: var(--surface); }
.sol-industries h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; text-align: center; margin-bottom: .5rem; letter-spacing: -.02em; }
.sol-industries-sub { text-align: center; color: var(--text-mid); margin-bottom: 2.5rem; }
.sol-card {
    display: block;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid rgba(37,99,235,.08);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all .3s var(--ease);
    box-shadow: var(--card-shadow);
}
.sol-card:hover { border-color: rgba(37,99,235,.2); transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.sol-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); }
.sol-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.5; }
@media (max-width: 768px) {
    .sol-grid { grid-template-columns: 1fr; }
    .sol-steps { grid-template-columns: 1fr; gap: 2.5rem; }
}

.game-hud{position:fixed;bottom:1.5rem;left:1.5rem;display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;background:rgba(10,10,20,.92);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.1);border-radius:100px;z-index:190;transition:all .35s var(--ease);box-shadow:0 4px 24px rgba(0,0,0,.25)}
.game-hud:hover{border-color:rgba(37,99,235,.3);box-shadow:0 4px 32px rgba(37,99,235,.15)}
.game-hud__toggle{display:flex;align-items:center;gap:.5rem;background:none;border:none;cursor:pointer;transition:all .25s;padding:0}
.game-hud__toggle:hover{opacity:.8}
.hud-xp-mini{display:flex;flex-direction:column;gap:2px}
.hud-tier-label{font-family:var(--font-head);font-size:.55rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.hud-tier-label.bronze{color:var(--bronze)}.hud-tier-label.silver{color:var(--silver)}.hud-tier-label.gold{color:var(--gold)}.hud-tier-label.diamond{color:var(--diamond)}
.hud-xp-bar{width:70px;height:4px;background:rgba(255,255,255,.1);border-radius:4px;overflow:hidden}
.hud-xp-fill{height:100%;background:linear-gradient(90deg,var(--blue),var(--blue-light));border-radius:4px;transition:width .6s var(--ease);width:0}
.hud-xp-num{font-family:var(--font-head);font-size:.62rem;font-weight:600;color:rgba(255,255,255,.5)}
.hud-streak{display:flex;align-items:center;gap:.25rem;padding:.25rem .5rem;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:100px;font-family:var(--font-head);font-size:.62rem;font-weight:700;color:rgba(255,255,255,.4);transition:all .3s}
.hud-streak.hot{color:var(--coral);border-color:rgba(232,102,74,.4);background:rgba(232,102,74,.15)}
.hud-streak svg{color:inherit}
.hud-panel{position:absolute;bottom:calc(100% + .75rem);left:0;width:280px;background:rgba(10,10,20,.95);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);border:1px solid rgba(37,99,235,.15);border-radius:14px;padding:0;max-height:0;overflow:hidden;opacity:0;transition:all .3s var(--ease);pointer-events:none;box-shadow:0 8px 32px rgba(0,0,0,.4)}
.hud-panel.open{max-height:500px;opacity:1;padding:1rem;pointer-events:auto}
.hud-panel__header{display:flex;justify-content:space-between;align-items:center;margin-bottom:.75rem}
.hud-panel__title{font-family:var(--font-head);font-size:.75rem;font-weight:600;color:#fff;text-transform:uppercase;letter-spacing:.08em}
.hud-panel__close{background:none;border:none;color:var(--text-light);cursor:pointer;padding:2px;transition:color .2s}
.hud-panel__close:hover{color:#fff}
.hud-panel__stats{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem;margin-bottom:.75rem}
.hud-stat{text-align:center;padding:.5rem .25rem;background:rgba(255,255,255,.03);border-radius:8px;border:1px solid rgba(255,255,255,.06)}
.hud-stat__val{display:block;font-family:var(--font-head);font-size:1rem;font-weight:700;color:var(--blue-light)}
.hud-stat__label{font-size:.48rem;color:var(--text-light);text-transform:uppercase;letter-spacing:.06em}
.hud-panel__section{margin-bottom:.6rem}
.hud-panel__stitle{font-size:.55rem;font-weight:600;color:var(--text-light);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.4rem}
.hud-panel__badges{display:grid;grid-template-columns:repeat(6,1fr);gap:.35rem}
.hud-badge{width:100%;aspect-ratio:1;display:flex;align-items:center;justify-content:center;border-radius:8px;border:1px solid rgba(255,255,255,.06);background:rgba(255,255,255,.02);transition:all .2s}
.hud-badge.unlocked{background:rgba(37,99,235,.12);border-color:rgba(37,99,235,.25);color:var(--blue-light)}
.hud-badge.locked{opacity:.2;color:var(--text-light)}
.hud-badge svg{width:16px;height:16px}
.hud-panel__activity{max-height:120px;overflow-y:auto}
.hud-activity__empty{font-size:.65rem;color:var(--text-light);font-style:italic}
.hud-activity__row{display:flex;align-items:center;gap:.4rem;padding:.25rem 0;border-bottom:1px solid rgba(255,255,255,.04);font-size:.6rem}
.hud-activity__text{flex:1;color:var(--text-mid);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hud-activity__xp{color:var(--blue-light);font-weight:600;font-family:var(--font-head);white-space:nowrap}
.hud-activity__time{color:var(--text-light);font-size:.5rem;white-space:nowrap}
.hud-panel__reset{display:flex;align-items:center;gap:.35rem;width:100%;justify-content:center;padding:.4rem;background:none;border:1px solid rgba(232,102,74,.15);border-radius:8px;color:var(--text-light);font-size:.55rem;cursor:pointer;transition:all .2s;margin-top:.25rem}
.hud-panel__reset:hover{background:rgba(232,102,74,.1);border-color:rgba(232,102,74,.3);color:var(--coral)}
.hud-panel__reset svg{color:inherit}

.xp-popup{position:fixed;font-family:var(--font-head);font-size:1.1rem;font-weight:700;color:var(--blue);text-shadow:0 0 16px rgba(37,99,235,.4);animation:xpFloat 1.4s var(--ease) forwards;pointer-events:none;z-index:9997}
@keyframes xpFloat{0%{opacity:1;transform:translateY(0) scale(1)}60%{opacity:1}100%{opacity:0;transform:translateY(-70px) scale(1.3)}}
.toast-container{position:fixed;top:60px;right:1rem;z-index:9996;display:flex;flex-direction:column;gap:.5rem;max-width:340px}
.toast{display:flex;align-items:center;gap:.75rem;padding:.85rem 1.1rem;background:var(--surface);border:1px solid rgba(37,99,235,.2);border-radius:14px;animation:toastIn .5s var(--ease) forwards,toastOut .4s 3.5s var(--ease) forwards;box-shadow:0 8px 32px rgba(100,116,139,.15)}
.toast-icon{width:36px;height:36px;border-radius:50%;background:var(--blue-glow);display:flex;align-items:center;justify-content:center;color:var(--blue);flex-shrink:0}
.toast-text strong{display:block;font-family:var(--font-head);font-size:.78rem;font-weight:600;color:var(--text)}
.toast-text span{font-size:.68rem;color:var(--text-mid)}
.toast-xp{font-family:var(--font-head);font-size:.82rem;font-weight:700;color:var(--blue);margin-left:auto;white-space:nowrap}
@keyframes toastIn{from{opacity:0;transform:translateX(120px)}to{opacity:1;transform:translateX(0)}}
@keyframes toastOut{from{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(120px)}}

@media(max-width:900px){
    .game-hud{bottom:1rem;left:1rem;padding:.35rem .6rem;gap:.35rem}
}
@media(max-width:480px){
    .game-hud{bottom:.75rem;left:.75rem;padding:.3rem .5rem;gap:.3rem;border-radius:80px}
}