:root {
    --bg: #090b11;
    --bg-2: #0f1320;
    --panel: rgba(255, 255, 255, 0.03);
    --panel-strong: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --text: #d0d7e2;
    --muted: #8b94a7;
    --heading: #f6f8fc;
    --accent: #5b8cff;
    --accent-2: #7dd3fc;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(91, 140, 255, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(125, 211, 252, 0.08), transparent 28%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(9, 11, 17, 0.72);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.03em;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(91, 140, 255, 0.22), rgba(125, 211, 252, 0.2));
    border: 1px solid rgba(125, 211, 252, 0.18);
}

.brand-text {
    font-size: 1.03rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.site-nav a,
.footer-mini a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.92rem;
    padding: 9px 12px;
    border-radius: 999px;
    transition: 0.2s ease;
}

.site-nav a:hover,
.footer-mini a:hover {
    color: var(--heading);
    background: rgba(255, 255, 255, 0.04);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.22s ease;
    white-space: nowrap;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 0.92rem;
}

.btn-lg {
    padding: 14px 20px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #3567f0);
    color: white;
    box-shadow: 0 12px 30px rgba(91, 140, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(91, 140, 255, 0.35);
}

.btn-outline {
    color: var(--heading);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    border-color: rgba(91, 140, 255, 0.4);
    background: rgba(91, 140, 255, 0.08);
}

.hero {
    padding: 72px 0 48px;
    position: relative;
    overflow: clip;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
    opacity: 0.8;
}

.hero::before {
    width: 260px;
    height: 260px;
    right: -80px;
    top: 30px;
    background: radial-gradient(circle, rgba(91, 140, 255, 0.25), transparent 70%);
    animation: drift 10s ease-in-out infinite;
}

.hero::after {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.18), transparent 70%);
    animation: drift 13s ease-in-out infinite reverse;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
    opacity: 0.85;
}

.hero-orb-a {
    width: 120px;
    height: 120px;
    left: 12%;
    top: 18%;
    background: rgba(91, 140, 255, 0.24);
    animation: float 8s ease-in-out infinite;
}

.hero-orb-b {
    width: 90px;
    height: 90px;
    right: 14%;
    top: 12%;
    background: rgba(125, 211, 252, 0.18);
    animation: float 11s ease-in-out infinite reverse;
}

.hero-orb-c {
    width: 150px;
    height: 150px;
    right: 22%;
    bottom: 6%;
    background: rgba(91, 140, 255, 0.12);
    animation: float 12s ease-in-out infinite;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    margin-top: 10px;
    font-size: clamp(2.7rem, 6.5vw, 5rem);
    line-height: 0.92;
    color: var(--heading);
    letter-spacing: -0.06em;
    animation: fadeUp 700ms ease both;
}

.text-gradient {
    background: linear-gradient(135deg, #f6f8fc, #7dd3fc 48%, #5b8cff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow,
.section-kicker,
.panel-kicker,
.fact-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-2);
}

.hero-lead {
    margin-top: 18px;
    max-width: 62ch;
    font-size: 1.05rem;
    color: var(--muted);
    animation: fadeUp 850ms ease both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
    animation: fadeUp 950ms ease both;
}

.hero-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.92rem;
    animation: fadeUp 1050ms ease both;
}

.hero-panel {
    display: grid;
    gap: 14px;
    animation: floatPanel 6s ease-in-out infinite;
}

.panel-card,
.fact-card,
.work-card,
.post-card,
.contact-form,
.site-footer {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.panel-card {
    border-radius: 22px;
    padding: 20px;
    animation: cardIn 700ms ease both;
}

.panel-main h2 {
    margin-top: 8px;
    color: var(--heading);
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}

.panel-main p,
.panel-grid a,
.section-copy p,
.work-card p,
.site-footer p,
.contact-links a {
    color: var(--muted);
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.panel-grid a {
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
}

.chip-row,
.chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.9rem;
}

.section {
    padding: 70px 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.015);
    border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.two-col {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.section-title {
    margin-top: 8px;
    color: var(--heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.section-subtitle,
.section-copy {
    max-width: 70ch;
    color: var(--muted);
}

.section-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}

.section-copy {
    display: grid;
    gap: 14px;
    font-size: 1.02rem;
}

.fact-grid,
.work-grid,
.contact-grid {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.fact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact-card {
    padding: 18px;
    border-radius: 20px;
}

.fact-card strong {
    display: block;
    margin-top: 8px;
    color: var(--heading);
    font-size: 1.03rem;
}

.work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
    padding: 22px;
    border-radius: 22px;
}

.work-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--accent-2);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.work-card h3,
.contact-form h3 {
    margin-top: 10px;
    color: var(--heading);
    letter-spacing: -0.04em;
}

.work-card ul {
    margin: 16px 0 0 18px;
    color: var(--text);
}

.work-card li + li {
    margin-top: 8px;
}

.chip-cloud {
    margin-top: 26px;
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.contact-links {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-links a {
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    padding: 22px;
    border-radius: 24px;
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
    color: var(--heading);
    padding: 13px 14px;
    font: inherit;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #667085;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(91, 140, 255, 0.6);
    box-shadow: 0 0 0 4px rgba(91, 140, 255, 0.12);
}

.contact-form button {
    width: fit-content;
}

.site-footer {
    margin-top: 40px;
    border-radius: 28px 28px 0 0;
    border-bottom: 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
    align-items: center;
}

.site-footer h3 {
    color: var(--heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-mini {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #25d366;
    color: white;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
    z-index: 40;
}

.whatsapp-float:hover {
    transform: scale(1.04);
}

@media (max-width: 980px) {
    .hero-grid,
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .work-grid,
    .fact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(1120px, calc(100% - 28px));
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding-top: 44px;
    }

    .hero-copy h1 {
        font-size: clamp(2.25rem, 12vw, 3.5rem);
        line-height: 0.95;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions,
    .hero-meta,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-grid,
    .fact-grid,
    .panel-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 54px 0;
    }

    .footer-mini {
        justify-content: flex-start;
    }
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -18px, 0) scale(1.05); }
}

@keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(16px, -14px, 0) scale(1.08); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatPanel {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
