:root {
    --bg: #040404;
    --bg-soft: #0c0f14;
    --card: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.12);
    --card-border-hover: rgba(255, 255, 255, 0.22);
    --text: #f5f7fb;
    --muted: #aeb7c4;
    --accent: #ffffff;
    --accent-soft: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-hover: 0 30px 90px rgba(0, 0, 0, 0.55);
    --radius: 22px;
    --blur: 18px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(68, 110, 255, 0.10), transparent 22%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 18%),
        radial-gradient(circle at bottom center, rgba(86, 127, 255, 0.08), transparent 25%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    width: 320px;
    height: 320px;
    top: 80px;
    left: -80px;
    background: rgba(102, 153, 255, 0.35);
}

.glow-2 {
    width: 420px;
    height: 420px;
    bottom: 60px;
    right: -120px;
    background: rgba(255, 255, 255, 0.16);
}

.hero {
    min-height: 100vh;
    padding: 28px 24px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-image: url("/static/images/hero.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(2, 5, 10, 0.76), rgba(2, 5, 10, 0.92));
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.glass {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.04)
    );
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}

.nav {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.nav::before,
.card::before,
.about-card::before,
.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.10) 0%,
        rgba(255, 255, 255, 0.03) 35%,
        rgba(255, 255, 255, 0.00) 60%
    );
    opacity: 0.7;
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-family: "Orbitron", sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    display: inline-block;
    transition: transform 0.25s ease, filter 0.25s ease, text-shadow 0.25s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

.logo-text::before {
    content: "";
    position: absolute;
    inset: -6px -10px;
    border-radius: 14px;
    background: radial-gradient(circle, rgba(130, 180, 255, 0.18), transparent 70%);
    opacity: 0.75;
    z-index: -1;
    filter: blur(14px);
}

.logo-text:hover {
    transform: translateY(-1px) scale(1.03);
    filter: brightness(1.08);
    text-shadow: 0 0 18px rgba(180, 220, 255, 0.30);
}

.nav-links {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.nav-links a {
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
    animation: slowFloat 7s ease-in-out infinite;
}

.eyebrow,
.section-label {
    color: var(--muted);
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.98;
    margin-bottom: 20px;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.tagline {
    max-width: 760px;
    margin: 0 auto 32px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--muted);
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.02)
    );
    opacity: 0;
    transition: opacity 0.25s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.10);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--card-border-hover);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
    z-index: 1;
}

.section {
    margin-bottom: 90px;
}

.section-header {
    margin-bottom: 28px;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.about-card,
.contact-box,
.card {
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.about-card {
    padding: 28px;
    color: var(--muted);
    font-size: 1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

.card {
    padding: 24px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.10),
        rgba(255, 255, 255, 0.05)
    );
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.card h3 {
    font-size: 1.25rem;
}

.card p {
    color: var(--muted);
    margin-bottom: 20px;
}

.price {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.card-link {
    display: inline-block;
    font-weight: 700;
    position: relative;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.card-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.card-link:hover {
    transform: translateX(4px);
}

.card-link:hover::after {
    transform: scaleX(1);
}

.contact-box {
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-title {
    color: var(--muted);
    font-size: 0.92rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
    animation-delay: 0.10s;
}

.delay-2 {
    animation-delay: 0.20s;
}

.delay-3 {
    animation-delay: 0.35s;
}

.delay-4 {
    animation-delay: 0.50s;
}

.delay-5 {
    animation-delay: 0.65s;
}

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

@keyframes slowFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 900px) {
    .nav {
        flex-direction: column;
        gap: 14px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .hero {
        background-position: 72% center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 18px 16px 40px;
        background-position: 68% center;
    }

    .container {
        padding: 0 16px 60px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .logo-text {
        font-size: 1.02rem;
        letter-spacing: 0.14em;
    }

    .page-glow {
        display: none;
    }
}