:root {
    --bg-900: #070b1d;
    --bg-800: #0e1534;
    --surface: rgba(14, 23, 53, 0.56);
    --surface-alt: rgba(18, 30, 67, 0.72);
    --text-900: #eaf0ff;
    --text-700: #b4c3ea;
    --line: rgba(147, 171, 255, 0.34);
    --blue: #1f66ff;
    --blue-2: #11a2ff;
    --purple: #6f4dff;
    --gold: #ffcb74;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text-900);
    background: radial-gradient(circle at 10% 5%, rgba(27, 81, 219, 0.48), transparent 34%),
        radial-gradient(circle at 85% 12%, rgba(111, 77, 255, 0.3), transparent 36%),
        linear-gradient(160deg, var(--bg-900), var(--bg-800));
    min-height: 100vh;
    line-height: 1.65;
    overflow-x: hidden;
}

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at center, #000 40%, transparent 100%);
    z-index: 0;
}

.aurora {
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

.aurora-one {
    background: radial-gradient(circle, rgba(15, 162, 255, 0.9) 0%, rgba(15, 162, 255, 0.05) 60%);
    top: -180px;
    right: -160px;
}

.aurora-two {
    background: radial-gradient(circle, rgba(127, 84, 255, 0.82) 0%, rgba(127, 84, 255, 0.03) 60%);
    left: -220px;
    bottom: -220px;
}

.topbar,
main,
.footer {
    position: relative;
    z-index: 1;
}

.topbar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 24px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    z-index: 20;
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 30;
}

.nav-toggle summary {
    list-style: none;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(150, 173, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 24px rgba(3, 9, 28, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
}

.nav-toggle summary::-webkit-details-marker {
    display: none;
}

.nav-toggle summary span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #eff6ff;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[open] summary span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[open] summary span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[open] summary span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(150, 173, 255, 0.22);
    background: rgba(11, 18, 42, 0.96);
    box-shadow: 0 18px 42px rgba(2, 7, 24, 0.48);
    backdrop-filter: blur(16px);
    display: grid;
    gap: 8px;
    z-index: 1000;
}

.nav-mobile a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #f7faff;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    line-height: 0;
}

.brand img {
    width: min(168px, 38vw);
    height: auto;
    display: block;
    object-fit: contain;
    border: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.nav {
    display: flex;
    gap: 16px;
}

.nav a {
    color: #d9e7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.nav a:hover {
    color: #ffffff;
}

main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px 48px;
}

.hero {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 18px;
    align-items: stretch;
}

.hero-copy-wrap,
.hero-panel {
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: 0 26px 55px rgba(8, 16, 42, 0.38);
    backdrop-filter: blur(14px);
    animation: reveal-up 0.7s ease both;
}

.hero-copy-wrap {
    background: linear-gradient(145deg, rgba(20, 34, 76, 0.78), rgba(13, 23, 55, 0.78));
    padding: clamp(28px, 4vw, 56px);
}

.hero-panel {
    background: linear-gradient(160deg, rgba(23, 38, 83, 0.76), rgba(15, 27, 63, 0.8));
    padding: clamp(22px, 3vw, 34px);
    animation-delay: 0.1s;
}

.hero-copy-wrap {
    display: flex;
    flex-direction: column;
}

.eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 700;
    color: #9fb4ff;
}

.hero h1 {
    margin: 12px 0 14px;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 4.9vw, 3.6rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.hero-copy {
    margin: 0;
    max-width: 65ch;
    color: var(--text-700);
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(130deg, var(--blue), var(--purple));
    box-shadow: 0 10px 28px rgba(59, 101, 255, 0.45);
}

.btn-secondary {
    color: #f1f5ff;
    border: 1px solid rgba(150, 173, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
}

.hero-metrics {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-metrics div,
.service-card,
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(155, 176, 255, 0.18);
}

.hero-metrics div {
    border-radius: 16px;
    padding: 14px 12px;
    backdrop-filter: blur(10px);
}

.hero-metrics strong {
    display: block;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1rem;
    color: #f8fbff;
}

.hero-metrics span {
    display: block;
    margin-top: 4px;
    color: var(--text-700);
    font-size: 0.9rem;
}

.hero-art {
    margin-bottom: 12px;
}

.orbit-svg {
    display: block;
    width: min(100%, 320px);
    margin: 0 auto;
    overflow: visible;
}

.orbit-ring,
.orbit-path,
.orbit-node {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.orbit-ring {
    stroke: rgba(157, 179, 255, 0.28);
    stroke-width: 1.2;
    transform-origin: 180px 180px;
    animation: spin-slow 20s linear infinite;
}

.orbit-ring-two {
    animation-duration: 13s;
    animation-direction: reverse;
}

.orbit-path {
    stroke: rgba(120, 194, 255, 0.56);
    stroke-width: 2.2;
    stroke-dasharray: 8 10;
    animation: dash-flow 7s linear infinite;
}

.orbit-node {
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 2.3;
    transform-box: fill-box;
    transform-origin: center;
    animation: float-node 5.8s ease-in-out infinite;
}

.orbit-node-one {
    transform: translate(248px, 106px);
}

.orbit-node-two {
    transform: translate(114px, 238px);
    animation-delay: 0.8s;
}

.orbit-node path {
    stroke: #ffffff;
    stroke-width: 2.4;
    fill: none;
}

.hero-panel h2 {
    margin: 0 0 10px;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.2rem;
}

.hero-panel ul {
    margin: 0;
    padding-left: 18px;
}

.hero-panel li {
    color: var(--text-700);
}

.studio-strip {
    margin-top: 16px;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(31, 102, 255, 0.16), rgba(111, 77, 255, 0.18));
    border: 1px solid rgba(148, 173, 255, 0.34);
    padding: 14px 18px;
    color: #eaf2ff;
    font-weight: 500;
    box-shadow: 0 12px 26px rgba(6, 15, 40, 0.35);
}

.studio-strip p {
    margin: 0;
}

.apps-section {
    margin-top: 28px;
}

.section-head {
    margin-bottom: 16px;
}

.section-head h2 {
    margin: 0;
    color: #edf2ff;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.section-head p {
    margin: 6px 0 0;
    color: #c8d8ff;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

.app-card {
    background: linear-gradient(165deg, rgba(16, 29, 68, 0.84), rgba(13, 24, 58, 0.84));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 14px 32px rgba(5, 14, 38, 0.44);
    animation: reveal-up 0.78s ease both;
}

.app-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.app-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(171, 191, 255, 0.4);
    background: rgba(20, 30, 62, 0.82);
    box-shadow: 0 8px 16px rgba(3, 9, 28, 0.45);
}

.app-tag {
    margin: 0;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 0.46rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: none;
    color: #eff6ff;
    border: 1px solid rgba(172, 193, 255, 0.2);
    background: linear-gradient(135deg, rgba(52, 82, 174, 0.52), rgba(113, 84, 255, 0.34));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 18px rgba(7, 14, 34, 0.24);
}

.app-tag-tools {
    background: linear-gradient(135deg, rgba(24, 95, 232, 0.62), rgba(112, 83, 255, 0.38));
}

.app-tag-maps {
    background: linear-gradient(135deg, rgba(17, 162, 255, 0.62), rgba(54, 120, 255, 0.38));
}

.app-card h3 {
    margin: 6px 0 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.1rem;
    line-height: 1.3;
}

.app-card p {
    margin: 0;
    color: var(--text-700);
    font-size: 0.95rem;
}

.app-card a {
    margin-top: 14px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    color: #87adff;
}

.app-card a:hover {
    color: #b4c5ff;
}

.contact-section {
    margin-top: 28px;
}

.contact-card {
    border-radius: 24px;
    padding: clamp(22px, 3.5vw, 36px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    box-shadow: 0 24px 50px rgba(4, 12, 30, 0.34);
    backdrop-filter: blur(14px);
}

.contact-card h2 {
    margin: 8px 0 10px;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.contact-card p {
    margin: 0;
    color: var(--text-700);
}

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

.contact-grid div {
    padding: 16px;
    border-radius: 16px;
    min-width: 0;
}

.contact-grid span {
    display: block;
    margin-bottom: 6px;
    color: #9eb2e9;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-grid strong,
.contact-grid a {
    color: #f4f7ff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    word-break: normal;
    overflow-wrap: anywhere;
}

.contact-grid a:hover {
    color: #dce6ff;
    text-decoration: underline;
}

.policy-main {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.policy-card {
    width: min(920px, 100%);
    background: linear-gradient(165deg, rgba(18, 31, 73, 0.84), rgba(13, 24, 58, 0.86));
    border-radius: 24px;
    border: 1px solid var(--line);
    padding: clamp(22px, 3.8vw, 44px);
    box-shadow: 0 24px 50px rgba(4, 12, 30, 0.44);
    backdrop-filter: blur(14px);
    animation: reveal-up 0.7s ease both;
}

.policy-card h1,
.policy-card h2 {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.policy-card h1 {
    margin: 8px 0;
}

.policy-card h2 {
    margin: 20px 0 8px;
    font-size: 1.15rem;
}

.policy-card p,
.policy-card li {
    color: var(--text-700);
}

.policy-card ul {
    margin: 8px 0;
    padding-left: 20px;
}

.policy-card a {
    color: #8ab0ff;
}

.footer {
    max-width: 1180px;
    margin: 14px auto 34px;
    padding: 0 24px;
    color: #b7c9f7;
    font-size: 0.93rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 12px;
}

.footer a {
    color: #dee8ff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes dash-flow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -72;
    }
}

@keyframes float-node {

    0%,
    100% {
        transform: translate(var(--node-x, 0), var(--node-y, 0)) translateY(0);
    }

    50% {
        transform: translate(var(--node-x, 0), var(--node-y, 0)) translateY(-8px);
    }
}

.orbit-node-one {
    --node-x: 248px;
    --node-y: 106px;
}

.orbit-node-two {
    --node-x: 114px;
    --node-y: 238px;
}

@media (max-width: 930px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 8.2vw, 2.9rem);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .topbar {
        padding-top: 16px;
        align-items: center;
    }

    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-mobile {
        right: 0;
    }

    .btn {
        width: 100%;
    }

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

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

    .footer {
        margin-top: 20px;
    }
}

@media (min-width: 721px) {
    .nav-mobile {
        display: none;
    }
}