:root {
    --bg: #0b1020;
    --bg-soft: #121a33;
    --card: rgba(12, 20, 45, 0.72);
    --text: #eaf0ff;
    --muted: #b9c4e5;
    --accent: #6dd6ff;
    --accent-2: #8b7bff;
    --line: rgba(255, 255, 255, 0.14);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(1200px 800px at 10% 10%, rgba(109, 214, 255, 0.12), transparent 45%),
        radial-gradient(1000px 700px at 90% 15%, rgba(139, 123, 255, 0.16), transparent 42%),
        linear-gradient(145deg, var(--bg), var(--bg-soft));
    line-height: 1.5;
    overflow-x: hidden;
}

.page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.45;
    animation: float 10s ease-in-out infinite;
}

.orb-1 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--accent), transparent);
    top: 8vh;
    right: 8vw;
}

.orb-2 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--accent-2), transparent);
    bottom: 18vh;
    left: 10vw;
    animation-delay: -3s;
}

.orb-3 {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent);
    bottom: 5vh;
    right: 20vw;
    animation-delay: -6s;
}

.wrapper {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 2.5rem));
    margin: 3.2rem auto 2rem;
    display: grid;
    gap: 1.1rem;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(1.2rem, 2.5vw, 2rem);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.hero h1 {
    margin: 0;
    line-height: 1.1;
}

.brand-fire {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: clamp(0.04rem, 0.22vw, 0.18rem);
    font-size: clamp(2.1rem, 9vw, 4.4rem);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.fire-letter {
    color: rgba(234, 240, 255, 0.46);
    text-shadow: 0 0 0 rgba(109, 214, 255, 0);
    transition: color 380ms ease, text-shadow 460ms ease;
}

.fire-letter.is-lit {
    color: #ebfbff;
    text-shadow: 0 0 10px rgba(109, 214, 255, 0.58), 0 0 22px rgba(109, 214, 255, 0.28);
}

.fire-letter.fire-tld {
    font-size: 0.62em;
    line-height: 1;
    transform: translateY(-0.02em);
}

.hero-subline {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 500;
}

.eyebrow {
    margin: 0;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.subtitle,
.tagline,
.experience,
.usp,
.services p {
    color: var(--muted);
    margin: 0;
}

.subtitle {
    margin-top: 0.45rem;
}

.about h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.tagline {
    margin-top: 0.3rem;
    font-weight: 500;
}

.services {
    margin-top: 1.15rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.services article {
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.services article:hover {
    transform: translateY(-2px);
    border-color: rgba(109, 214, 255, 0.45);
}

.services h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.btn {
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-outline {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-solid {
    color: #0b1020;
    background: linear-gradient(135deg, var(--accent), #b4eeff);
}

.experience {
    margin-top: 1rem;
    font-weight: 500;
}

.usp {
    margin-top: 0.35rem;
}

.contact {
    display: grid;
    gap: 0.3rem;
}

.contact a,
.contact p {
    margin: 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    color: var(--accent);
}

.footer {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 2.5rem));
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.16s;
}

.delay-2 {
    animation-delay: 0.32s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(8px);
    }
}

@media (max-width: 800px) {
    .wrapper {
        width: min(980px, calc(100% - 1.25rem));
        margin-top: 1rem;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .footer {
        width: min(980px, calc(100% - 1.25rem));
        margin-bottom: 1rem;
    }

    .brand-fire {
        font-size: clamp(1.9rem, 13vw, 3rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
