:root {
    --void: #06060a;
    --void-2: #0d0f1c;
    --void-3: #12142380;
    --horizon-red: #ff6a3d;
    --horizon-blue: #6fd8ff;
    --starlight: #f4f2ed;
    --dim: #8b87a0;
    --dim-2: #5e5a72;
    --line: rgba(244, 242, 237, 0.09);
    --line-strong: rgba(244, 242, 237, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--void);
    color: var(--starlight);
    font-family: "IBM Plex Sans", sans-serif;
    line-height: 1.6;
    position: relative;
    overflow-x: clip; /* overflow-x: hidden o'rniga */
}

.starfield {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(1px 1px at 20% 30%, rgba(244, 242, 237, 0.5) 0, transparent 60%), radial-gradient(1px 1px at 65% 15%, rgba(244, 242, 237, 0.35) 0, transparent 60%), radial-gradient(1.5px 1.5px at 80% 60%, rgba(244, 242, 237, 0.4) 0, transparent 60%), radial-gradient(1px 1px at 40% 80%, rgba(244, 242, 237, 0.3) 0, transparent 60%), radial-gradient(1px 1px at 10% 65%, rgba(244, 242, 237, 0.45) 0, transparent 60%), radial-gradient(1.5px 1.5px at 90% 90%, rgba(244, 242, 237, 0.3) 0, transparent 60%), radial-gradient(1px 1px at 55% 45%, rgba(244, 242, 237, 0.4) 0, transparent 60%);
    background-repeat: repeat;
    background-size: 600px 600px;
    opacity: 0.6;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

h1,
h2,
h3,
.mono {
    font-family: "Space Grotesk", sans-serif;
}

.mono {
    font-family: "JetBrains Mono", monospace;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ---------- NAV ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(6, 6, 10, 0.6);
    border-bottom: 1px solid var(--line);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    isolation: isolate;
}

nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1a1a24 0%, #000 55%, #000 100%);
    box-shadow: 0 0 0 1px var(--line-strong), 0 0 14px rgba(111, 216, 255, 0.35), 0 0 8px rgba(255, 106, 61, 0.25);
    position: relative;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    color: var(--dim);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--starlight);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ---------- LANGUAGE SWITCHER ---------- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    padding: 3px;
    background: rgba(13, 15, 28, 0.6);
    flex-shrink: 0;
}

.lang-switch a {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    background: transparent;
    border: none;
    color: var(--dim);
    padding: 6px 11px;
    border-radius: 100px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    display: inline-block;
}

.lang-switch a:hover {
    color: var(--starlight);
}

.lang-switch a.active {
    background: var(--starlight);
    color: var(--void);
}

.cta-btn {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 500;
    background: var(--starlight);
    color: var(--void);
    padding: 11px 20px;
    border-radius: 100px;
    display: inline-block;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.cta-btn:hover {
    box-shadow: 0 0 24px rgba(244, 242, 237, 0.35);
    transform: translateY(-1px);
}

.cta-ghost {
    background: transparent;
    color: var(--starlight);
    border: 1px solid var(--line-strong);
}

.cta-ghost:hover {
    border-color: var(--horizon-blue);
    box-shadow: 0 0 18px rgba(111, 216, 255, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--starlight);
    font-size: 22px;
    cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 170px 0 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 92vh;
}

.hero-copy {
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--horizon-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--horizon-blue);
}

.hero h1 {
    font-size: clamp(38px, 4.6vw, 58px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.01em;
}

.hero h1 .accent {
    background: linear-gradient(100deg, var(--horizon-blue), var(--horizon-red) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p.lead {
    margin-top: 22px;
    color: var(--dim);
    font-size: 16.5px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.hero-meta div .num {
    font-family: "Space Grotesk", sans-serif;
    font-size: 26px;
    font-weight: 600;
}

.hero-meta div .lbl {
    font-size: 12.5px;
    color: var(--dim-2);
    margin-top: 2px;
}

/* ---------- BLACK HOLE VISUAL ---------- */
.hole-stage {
    position: relative;
    width: 560px;
    height: 560px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lens-grid {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background-image: repeating-radial-gradient(circle at 50% 50%, transparent 0 34px, rgba(111, 216, 255, 0.05) 35px, transparent 36px);
    animation: spin-slow 90s linear infinite;
}

.disk {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    animation: spin-slow 22s linear infinite;
}

.disk::before,
.disk::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.disk::before {
    background: conic-gradient(from 0deg, rgba(111, 216, 255, 0.9) 0deg, rgba(111, 216, 255, 0.55) 40deg, rgba(255, 106, 61, 0.15) 120deg, rgba(255, 106, 61, 0.55) 200deg, rgba(255, 106, 61, 0.85) 250deg, rgba(111, 216, 255, 0.9) 360deg);
    filter: blur(18px);
    opacity: 0.85;
    mask: radial-gradient(circle, transparent 0 30%, black 34% 46%, transparent 50%);
    -webkit-mask: radial-gradient(circle, transparent 0 30%, black 34% 46%, transparent 50%);
}

.disk::after {
    background: conic-gradient(from 0deg, rgba(111, 216, 255, 0.7) 0deg, transparent 60deg, transparent 160deg, rgba(255, 106, 61, 0.6) 230deg, transparent 300deg, rgba(111, 216, 255, 0.7) 360deg);
    filter: blur(2px);
    mask: radial-gradient(circle, transparent 0 31%, black 33% 40%, transparent 44%);
    -webkit-mask: radial-gradient(circle, transparent 0 31%, black 33% 40%, transparent 44%);
}

.photon-ring {
    position: absolute;
    width: 196px;
    height: 196px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(244, 242, 237, 0.5), 0 0 22px 2px rgba(111, 216, 255, 0.55), 0 0 55px 10px rgba(255, 106, 61, 0.25);
}

.event-horizon {
    position: absolute;
    width: 176px;
    height: 176px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, #050508 0%, #000 60%, #000 100%);
    z-index: 3;
}

.orbit {
    position: absolute;
    border: 1px dashed var(--line);
    border-radius: 50%;
}

.orbit-1 {
    width: 340px;
    height: 340px;
    animation: spin-slow 40s linear infinite;
}

.orbit-2 {
    width: 440px;
    height: 440px;
    animation: spin-slow 60s linear infinite reverse;
}

.orbit-3 {
    width: 540px;
    height: 540px;
    animation: spin-slow 80s linear infinite;
}

.orbit-node {
    position: absolute;
    top: -13px;
    left: calc(50% - 13px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.orbit-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--horizon-blue);
    box-shadow: 0 0 10px 2px rgba(111, 216, 255, 0.7);
}

.orbit-2 .orbit-dot {
    background: var(--horizon-red);
    box-shadow: 0 0 10px 2px rgba(255, 106, 61, 0.7);
}

.orbit-3 .orbit-dot {
    background: var(--starlight);
    box-shadow: 0 0 8px 2px rgba(244, 242, 237, 0.5);
}

.orbit-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    color: var(--starlight);
    background: rgba(13, 15, 28, 0.9);
    border: 1px solid var(--line-strong);
    padding: 4px 9px;
    border-radius: 100px;
    white-space: nowrap;
}

.orbit-1 .orbit-tag-wrap {
    animation: spin-slow 40s linear infinite reverse;
}

.orbit-2 .orbit-tag-wrap {
    animation: spin-slow 60s linear infinite;
}

.orbit-3 .orbit-tag-wrap {
    animation: spin-slow 80s linear infinite reverse;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ---------- SECTION SHELL ---------- */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.section-head {
    max-width: 600px;
    margin-bottom: 56px;
}

.section-head .eyebrow {
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.section-head p {
    color: var(--dim);
    margin-top: 14px;
    font-size: 15.5px;
}

.divider {
    height: 1px;
    background: var(--line);
    width: 100%;
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.service-card {
    background: var(--void);
    padding: 36px 32px;
    position: relative;
    transition: background 0.25s ease;
}

.service-card:hover {
    background: var(--void-2);
}

.service-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    color: var(--horizon-blue);
}

.service-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--dim);
    font-size: 14.5px;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.service-tags span {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--dim);
    border: 1px solid var(--line-strong);
    padding: 4px 9px;
    border-radius: 100px;
}

/* ---------- PRICING ---------- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.price-card {
    background: var(--void-2);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: rgba(111, 216, 255, 0.4);
    box-shadow: 0 0 40px rgba(111, 216, 255, 0.06);
}

.price-card .ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--horizon-blue);
    border: 1px solid rgba(111, 216, 255, 0.4);
    padding: 3px 9px;
    border-radius: 100px;
}

.price-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-card .desc {
    color: var(--dim);
    font-size: 13.5px;
    margin-bottom: 22px;
    min-height: 40px;
}

.price-card .price {
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 2px;
}

.price-card .price sup {
    font-size: 14px;
    font-weight: 500;
    color: var(--dim);
}

.price-card .from {
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    color: var(--dim-2);
    margin-bottom: 24px;
}

.price-card ul {
    list-style: none;
    flex: 1;
    margin-bottom: 26px;
}

.price-card li {
    font-size: 13.5px;
    color: var(--starlight);
    padding: 8px 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.price-card li:first-child {
    border-top: none;
}

.price-card li::before {
    content: "—";
    color: var(--horizon-blue);
    flex-shrink: 0;
}

.price-card .cta-btn {
    width: 100%;
    text-align: center;
}

.price-group-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dim-2);
    margin: 44px 0 18px;
}

/* ---------- PROCESS ---------- */
.process-list {
    border-top: 1px solid var(--line);
}

.process-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

.process-item .step-num {
    font-family: "JetBrains Mono", monospace;
    color: var(--dim-2);
    font-size: 14px;
    padding-top: 4px;
}

.process-item h4 {
    font-size: 18px;
    font-weight: 600;
}

.process-item p {
    color: var(--dim);
    font-size: 14.5px;
    margin-top: 6px;
}

/* ---------- CONTACT / FOOTER ---------- */
.contact-panel {
    background: radial-gradient(ellipse at top left, rgba(111, 216, 255, 0.08), transparent 60%), radial-gradient(ellipse at bottom right, rgba(255, 106, 61, 0.07), transparent 60%), var(--void-2);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 64px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-panel h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 600;
    max-width: 480px;
}

.contact-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

footer {
    padding: 48px 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

footer .logo {
    font-size: 15px;
}

footer .foot-links {
    display: flex;
    gap: 26px;
}

footer .foot-links a {
    font-size: 13.5px;
    color: var(--dim);
}

footer .copy {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--dim-2);
}
@media (max-width: 400px) {
  .hole-stage {
    width: 92vw;
    height: 92vw;
  }
  .orbit-tag {
    font-size: 9.5px;
    padding: 2px 6px;
  }
}

@media (max-width: 640px) {
    nav {
        padding: 14px 16px;
        gap: 10px;
    }

    .logo {
        font-size: 16px;
    }

    .cta-btn {
        padding: 5px 10px;
        font-size: 9px;
        white-space: nowrap;
    }

    .wrap {
        padding: 0 18px;
    }

    .lang-switch a {
        padding: 5px 8px;
    }
}


@media (max-width: 980px) {
    .hole-stage {
        width: min(85vw, 400px);
        height: min(85vw, 400px);
        transform: none;
    }

    .lens-grid {
        inset: -20px;
    }

    .disk {
        width: 79%;
        height: 79%;
    }

    .photon-ring {
        width: 35%;
        height: 35%;
    }

    .event-horizon {
        width: 31%;
        height: 31%;
    }

    .orbit-1 {
        width: 61%;
        height: 61%;
    }

    .orbit-2 {
        width: 79%;
        height: 79%;
    }

    .orbit-3 {
        width: 96%;
        height: 96%;
    }

    .orbit-tag {
        font-size: 10.5px;
        padding: 3px 7px;
    }

    .nav {
        width: 100%;
    }

    .hero {
        width: 100%;
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 150px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero p.lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .hole-stage {
        width: 400px;
        height: 400px;
        transform: scale(0.85);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .process-item {
        grid-template-columns: 50px 1fr;
    }

    .process-item p {
        grid-column: 2/3;
    }

    .contact-panel {
        flex-direction: column;
        text-align: center;
        padding: 44px 28px;
    }
}
