:root {
    --bg: #05070d;
    --bg-soft: #0a0f1c;
    --panel: rgba(12, 18, 32, 0.78);
    --panel-strong: #10192b;
    --text: #f5f8ff;
    --muted: #9ca8bd;
    --line: rgba(131, 235, 255, 0.18);
    --cyan: #29f3ff;
    --lime: #b7ff4a;
    --pink: #ff4edb;
    --violet: #8c6bff;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(41, 243, 255, 0.14), transparent 26rem),
        radial-gradient(circle at 88% 12%, rgba(255, 78, 219, 0.11), transparent 24rem),
        linear-gradient(180deg, #03050a 0%, var(--bg) 45%, #070915 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

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

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

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.skip-link,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 999;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: #001015;
    background: var(--cyan);
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(3, 5, 10, 0.82);
    backdrop-filter: blur(18px);
}

.site-header .container {
    width: min(100% - 40px, 1680px);
    max-width: none;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(41, 243, 255, 0.55);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(41, 243, 255, 0.22), rgba(255, 78, 219, 0.12));
    box-shadow: 0 0 28px rgba(41, 243, 255, 0.24);
    color: var(--cyan);
}

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

.custom-logo {
    display: block;
    max-height: 58px;
    width: auto;
}

.primary-navigation {
    margin-left: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    display: block;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted);
    font-size: 0.94rem;
    transition: color 160ms ease, background 160ms ease;
}

.menu a:hover,
.menu a:focus {
    color: var(--text);
    background: rgba(41, 243, 255, 0.1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 86px;
    overflow: hidden;
}

.neon-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(41, 243, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 243, 255, 0.08) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 84%);
}

.aw-neon-bg {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(41, 243, 255, 0.13), transparent 26rem),
        radial-gradient(circle at 88% 30%, rgba(255, 78, 219, 0.1), transparent 25rem),
        linear-gradient(180deg, #03050a 0%, var(--bg) 50%, #070915 100%);
}

.aw-neon-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(41, 243, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 243, 255, 0.08) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 90%);
}

.aw-neon-bg > *:not(.aw-neon-grid) {
    position: relative;
    z-index: 1;
}

.aw-elementor-page {
    min-height: 100vh;
    padding-top: 96px;
}

.aw-elementor-content {
    position: relative;
    z-index: 1;
}

.aw-page-body {
    padding-top: 70px;
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: 56px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.06;
}

h1 {
    max-width: 860px;
    font-size: clamp(2.8rem, 5.2vw, 5.7rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
    font-size: 1.35rem;
}

.hero-lead {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 13px 20px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--cyan), var(--lime));
    box-shadow: 0 0 34px rgba(41, 243, 255, 0.26);
    color: #001015;
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.trust-row span,
.hosting-features span,
.usecase-grid div {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
}

.trust-row span {
    padding: 8px 12px;
    font-size: 0.9rem;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(41, 243, 255, 0.28);
    border-radius: 8px;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(16, 25, 43, 0.94), rgba(7, 9, 21, 0.78)),
        repeating-linear-gradient(90deg, transparent 0, transparent 18px, rgba(41, 243, 255, 0.04) 19px);
    box-shadow: var(--shadow), 0 0 55px rgba(41, 243, 255, 0.14);
}

.hero-panel-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    pointer-events: none;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 78, 219, 0.22);
    border-radius: 8px;
    pointer-events: none;
}

.panel-top {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 7px;
    margin-bottom: 28px;
}

.panel-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 16px currentColor;
}

.panel-top span:nth-child(2) {
    background: var(--pink);
}

.panel-top span:nth-child(3) {
    background: var(--lime);
}

.orbit-card {
    position: relative;
    z-index: 1;
    min-height: 220px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background:
        radial-gradient(circle at 50% 50%, rgba(41, 243, 255, 0.18), transparent 48%),
        rgba(255, 255, 255, 0.035);
}

.pulse-dot {
    display: block;
    width: 92px;
    height: 92px;
    margin: 18px auto 28px;
    border: 1px solid rgba(41, 243, 255, 0.55);
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan) 0 10%, rgba(41, 243, 255, 0.16) 11% 48%, transparent 49%);
    box-shadow: 0 0 44px rgba(41, 243, 255, 0.34);
    animation: pulse 2.5s ease-in-out infinite;
}

.orbit-card p,
.orbit-card strong {
    display: block;
    text-align: center;
}

.orbit-card p {
    margin: 0 0 6px;
    color: var(--muted);
}

.orbit-card strong {
    font-size: 1.35rem;
}

.metric-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.metric-stack div {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px;
    background: rgba(5, 7, 13, 0.62);
}

.metric-stack span,
.process-item span,
.service-icon {
    color: var(--lime);
    font-weight: 900;
}

.metric-stack p {
    margin: 0;
    color: var(--muted);
}

.section {
    padding: 100px 0;
}

.intro-band,
.hosting-band {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.intro-grid,
.hosting-layout,
.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
}

.intro-grid > p,
.hosting-layout p,
.section-heading + p {
    margin: 0;
    color: var(--muted);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

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

.service-card,
.post-card,
.cta-box {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(16, 25, 43, 0.78), rgba(8, 12, 22, 0.8));
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
}

.service-card {
    min-height: 280px;
    padding: 24px;
}

.service-card h3 {
    margin-top: 34px;
}

.service-card p,
.process-item p,
.post-card p,
.page-content,
.cta-box p {
    color: var(--muted);
}

.sticky-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding: 0 0 28px;
}

.process-item p {
    margin: 12px 0 0;
}

.hosting-layout {
    align-items: center;
}

.hosting-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hosting-features span {
    padding: 18px;
    color: var(--text);
}

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

.usecase-grid div {
    min-height: 82px;
    display: flex;
    align-items: center;
    padding: 18px;
    color: var(--text);
    font-weight: 800;
}

.cta-section {
    padding-top: 40px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 7vw, 72px);
}

.cta-box::after {
    content: "";
    position: absolute;
    top: -35%;
    right: -10%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(41, 243, 255, 0.18);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 243, 255, 0.15), transparent 65%);
}

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

.site-footer {
    border-top: 1px solid var(--line);
    background: #03050a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    gap: 36px;
    padding: 56px 0;
}

.footer-brand {
    margin-bottom: 16px;
}

.site-footer h2 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: var(--muted);
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.page-hero {
    padding: 150px 0 70px;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 20% 30%, rgba(41, 243, 255, 0.13), transparent 30rem);
}

.content-list {
    display: grid;
    gap: 18px;
}

.post-card {
    padding: 24px;
}

.post-card h2 {
    font-size: 1.6rem;
}

.text-link {
    color: var(--cyan);
    font-weight: 800;
}

.page-content {
    max-width: 860px;
}

.page-content a {
    color: var(--cyan);
    text-decoration: underline;
}

.page-content img,
.page-content iframe {
    border-radius: 8px;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.78;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@media (max-width: 980px) {
    .hero-layout,
    .intro-grid,
    .hosting-layout,
    .process-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .services-grid,
    .usecase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sticky-heading {
        position: static;
    }
}

@media (max-width: 760px) {
    .header-inner {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-navigation {
        position: fixed;
        top: 70px;
        right: 16px;
        left: 16px;
        display: none;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 12px;
        background: rgba(3, 5, 10, 0.96);
        box-shadow: var(--shadow);
    }

    .primary-navigation.is-open {
        display: block;
    }

    .menu {
        display: grid;
        gap: 4px;
    }

    .menu a {
        border-radius: 8px;
        padding: 13px;
    }

    .hero-section {
        padding-top: 116px;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-layout {
        gap: 34px;
    }

    .hero-panel {
        padding: 14px;
    }

    .services-grid,
    .usecase-grid,
    .hosting-features {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 0;
    }

    .process-item {
        grid-template-columns: 48px 1fr;
    }

    .button {
        width: 100%;
    }
}
