:root {
    --bg: #06111f;
    --bg-soft: #0b1a2f;
    --surface: rgba(8, 21, 40, 0.72);
    --surface-strong: rgba(9, 27, 48, 0.92);
    --surface-border: rgba(118, 182, 255, 0.18);
    --primary: #4ea7ff;
    --primary-strong: #1278ff;
    --primary-soft: #9cd0ff;
    --accent: #7cf2ff;
    --text-primary: #f5fbff;
    --text-secondary: #a7bed6;
    --text-muted: #7791ab;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(63, 135, 255, 0.26), transparent 32%),
        radial-gradient(circle at 85% 10%, rgba(35, 106, 255, 0.32), transparent 24%),
        linear-gradient(180deg, #07101d 0%, #050c16 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.25s ease;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.page-shell {
    position: relative;
    isolation: isolate;
}

.ambient {
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
}

.ambient-one {
    top: 5%;
    right: -8rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 120, 255, 0.28) 0%, rgba(18, 120, 255, 0) 70%);
    filter: blur(12px);
}

.ambient-two {
    left: -10rem;
    top: 35%;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 242, 255, 0.18) 0%, rgba(124, 242, 255, 0) 68%);
    filter: blur(20px);
}

.ambient-grid {
    inset: 0;
    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: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 78%);
    opacity: 0.35;
}

.site-header,
.hero,
.brand-strip,
.section-block,
.cta-section,
.site-footer,
.legal-shell {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 18px;
    z-index: 40;
    margin-top: 18px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid var(--surface-border);
    border-radius: 999px;
    background: rgba(5, 15, 28, 0.7);
    backdrop-filter: blur(22px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 0 28px rgba(78, 167, 255, 0.35);
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    color: var(--text-secondary);
    font-size: 0.96rem;
}

.site-nav a:hover,
.footer-links a:hover,
.legal-back:hover {
    color: var(--text-primary);
}

.nav-button,
.primary-button,
.secondary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-button,
.primary-button {
    background: linear-gradient(135deg, #68bcff 0%, #1278ff 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(18, 120, 255, 0.32);
}

.nav-button {
    padding: 11px 18px;
    font-size: 0.94rem;
}

.primary-button,
.secondary-button,
.ghost-button {
    padding: 14px 22px;
}

.store-cta {
    min-width: 280px;
    justify-content: flex-start;
    padding: 18px 22px;
    border-radius: 24px;
    font-size: 1rem;
}

.store-cta i {
    font-size: 1.6rem;
}

.store-cta-text {
    display: grid;
    gap: 2px;
    text-align: left;
}

.store-cta-text small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.secondary-button .store-cta-text small {
    color: var(--text-secondary);
}

.store-cta-text strong {
    font-size: 1.18rem;
    line-height: 1.1;
}

.store-cta-arrow {
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
}

.download-caption {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.secondary-button,
.ghost-button {
    border: 1px solid rgba(158, 208, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
}

.nav-button:hover,
.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.feature-card:hover,
.compatibility-card:hover,
.meta-card:hover,
.mini-card:hover {
    transform: translateY(-3px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 48px;
    align-items: center;
    padding: 100px 0 52px;
}

.eyebrow,
.section-kicker,
.status-pill,
.panel-label,
.signal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid rgba(156, 208, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    color: var(--primary-soft);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.eyebrow,
.section-kicker {
    padding: 9px 14px;
}

.eyebrow {
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.hero-copy h1,
.section-heading h2,
.experience-copy h2,
.cta-section h2,
.legal-hero h1 {
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3.4rem, 7vw, 6.1rem);
    margin-bottom: 22px;
}

.hero-copy h1 span,
.section-heading h2,
.experience-copy h2,
.legal-hero h1 {
    background-clip: text;
    background: linear-gradient(135deg, #ffffff 0%, #b4dcff 45%, #62b4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-copy p,
.section-heading p,
.experience-copy p,
.site-footer p,
.legal-hero p,
.legal-content p,
.legal-content li {
    color: var(--text-secondary);
}

.hero-copy p {
    max-width: 620px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

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

.meta-card,
.feature-card,
.compatibility-card,
.mini-card,
.dashboard-card,
.legal-card {
    border: 1px solid var(--surface-border);
    background: linear-gradient(180deg, rgba(14, 30, 52, 0.8) 0%, rgba(7, 18, 33, 0.92) 100%);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.meta-card {
    padding: 18px;
    border-radius: var(--radius-md);
}

.meta-card strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.meta-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.showcase-card {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(118, 182, 255, 0.22);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(9, 24, 46, 0.92) 0%, rgba(5, 15, 29, 0.96) 100%);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 66%, rgba(100, 182, 255, 0.08));
    pointer-events: none;
}

.showcase-top,
.panel-row,
.dashboard-header,
.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.status-pill,
.signal-badge,
.panel-label {
    padding: 7px 12px;
}

.status-pill.muted {
    color: var(--text-secondary);
}

.remote-stage {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 24px;
    border-radius: calc(var(--radius-xl) - 8px);
    background:
        radial-gradient(circle at center, rgba(78, 167, 255, 0.24) 0%, rgba(78, 167, 255, 0.08) 32%, transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    overflow: hidden;
}

.remote-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(35, 132, 255, 0.28) 0%, rgba(35, 132, 255, 0) 72%);
    filter: blur(16px);
    animation: pulseGlow 5.8s ease-in-out infinite;
}

.remote-icon {
    position: relative;
    z-index: 2;
    width: min(86%, 420px);
    border-radius: 32px;
    filter: drop-shadow(0 18px 48px rgba(40, 124, 255, 0.45));
    animation: floatCard 6s ease-in-out infinite;
}

.floating-chip {
    position: absolute;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(156, 208, 255, 0.22);
    background: rgba(7, 21, 39, 0.78);
    color: var(--text-primary);
    font-size: 0.85rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    animation: drift 7s ease-in-out infinite;
}

.chip-top {
    top: 10%;
    left: 8%;
}

.chip-right {
    right: 8%;
    top: 42%;
    animation-delay: -2s;
}

.chip-bottom {
    bottom: 10%;
    left: 14%;
    animation-delay: -4s;
}

.control-panel {
    display: grid;
    gap: 18px;
}

.panel-row h2 {
    max-width: 360px;
    font-size: 1.45rem;
    line-height: 1.15;
}

.mini-grid,
.feature-grid,
.compatibility-grid {
    display: grid;
    gap: 18px;
}

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

.mini-card {
    padding: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.mini-card i,
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(104, 188, 255, 0.18), rgba(18, 120, 255, 0.24));
    color: var(--primary-soft);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.09);
}

.brand-strip {
    padding: 20px 24px;
    margin-bottom: 10px;
    border: 1px solid rgba(118, 182, 255, 0.12);
    border-radius: 24px;
    background: rgba(7, 18, 33, 0.68);
    text-align: center;
}

.brand-strip p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.brand-marquee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.brand-marquee span,
.tag-cloud span,
.dashboard-buttons span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 0.92rem;
}

.section-block {
    padding: 96px 0 0;
}

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

.section-heading h2,
.experience-copy h2,
.cta-section h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin: 16px 0 16px;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.compatibility-card {
    padding: 28px;
    border-radius: var(--radius-lg);
}

.feature-card h3,
.compatibility-card h3 {
    margin: 18px 0 10px;
    font-size: 1.24rem;
}

.experience-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.check-list i {
    color: var(--accent);
}

.experience-panel {
    min-width: 0;
}

.dashboard-card {
    padding: 24px;
    border-radius: 30px;
}

.dashboard-header {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.dashboard-body {
    display: grid;
    gap: 28px;
}

.pad-ring {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid rgba(156, 208, 255, 0.16);
    background:
        radial-gradient(circle, rgba(8, 20, 40, 0.96) 0%, rgba(10, 26, 48, 0.82) 56%, rgba(98, 180, 255, 0.14) 100%);
    box-shadow:
        inset 0 0 50px rgba(75, 145, 255, 0.12),
        0 30px 60px rgba(0, 0, 0, 0.34);
}

.pad-center {
    position: absolute;
    inset: 50%;
    width: 36%;
    height: 36%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 800;
    background: radial-gradient(circle at 30% 30%, rgba(155, 210, 255, 0.28), rgba(14, 42, 76, 0.96));
    border: 1px solid rgba(156, 208, 255, 0.2);
    box-shadow: 0 0 36px rgba(40, 124, 255, 0.22);
}

.arrow {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-soft);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(156, 208, 255, 0.18);
}

.arrow.up {
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
}

.arrow.right {
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
}

.arrow.down {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
}

.arrow.left {
    left: 12%;
    top: 50%;
    transform: translateY(-50%);
}

.dashboard-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

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

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.cta-section {
    margin-top: 96px;
    margin-bottom: 26px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(118, 182, 255, 0.16);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(10, 26, 48, 0.96), rgba(7, 19, 35, 0.88));
    box-shadow: var(--shadow);
}

.cta-actions .store-cta {
    min-width: 260px;
}

.site-footer {
    padding: 34px 0 50px;
    display: grid;
    gap: 22px;
}

.footer-branding {
    display: grid;
    gap: 12px;
}

.footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-links a {
    color: var(--text-secondary);
}

.copyright {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.92rem;
}

.legal-shell {
    padding: 86px 0 50px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.legal-hero {
    margin-bottom: 30px;
}

.legal-hero h1 {
    font-size: clamp(2.7rem, 5vw, 4.4rem);
    margin: 16px 0 14px;
}

.legal-card {
    padding: 34px;
    border-radius: 30px;
}

.legal-content h2,
.legal-content h3 {
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: disc;
    margin: 0 0 16px 24px;
}

.legal-content a {
    color: var(--primary-soft);
}

.reveal {
    animation: revealUp 0.9s ease both;
}

.reveal:nth-child(2) {
    animation-delay: 0.1s;
}

.reveal:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .hero,
    .experience-section,
    .feature-grid,
    .compatibility-grid,
    .cta-section {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-copy h1 {
        max-width: none;
    }

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

    .cta-section {
        display: grid;
    }

    .store-cta {
        min-width: 0;
    }
}

@media (max-width: 860px) {
    .site-header {
        border-radius: 28px;
        padding: 16px 18px;
    }

    .site-nav {
        display: none;
    }

    .hero-meta,
    .mini-grid,
    .feature-grid,
    .compatibility-grid {
        grid-template-columns: 1fr;
    }

    .remote-stage {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .site-header,
    .hero,
    .brand-strip,
    .section-block,
    .cta-section,
    .site-footer,
    .legal-shell {
        width: min(calc(100% - 24px), var(--container));
    }

    .site-header {
        top: 12px;
        margin-top: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand {
        width: 100%;
        justify-content: center;
    }

    .nav-button {
        width: 100%;
    }

    .hero {
        padding: 56px 0 18px;
    }

    .hero-copy h1 {
        font-size: 2.9rem;
    }

    .panel-row,
    .showcase-top,
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions,
    .hero-actions {
        width: 100%;
    }

    .primary-button,
    .secondary-button,
    .ghost-button {
        width: 100%;
    }

    .store-cta {
        justify-content: flex-start;
    }

    .feature-card,
    .compatibility-card,
    .dashboard-card,
    .showcase-card,
    .legal-card,
    .cta-section {
        padding: 22px;
    }

    .legal-card {
        border-radius: 24px;
    }
}
