:root {
    --bg-deep: #071a2f;
    --bg-mid: #102d4d;
    --glass: rgba(9, 21, 41, 0.72);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text: #f5f7fb;
    --muted: #c5d0e4;
    --saffron: #ff9a3c;
    --green: #16b45f;
    --sky: #4fb8ff;
    --shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 154, 60, 0.95) rgba(255, 255, 255, 0.08);
}

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--saffron), var(--green));
    border-radius: 999px;
    border: 3px solid rgba(4, 17, 31, 0.85);
}

body {
    min-height: 100vh;
    color: var(--text);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(79, 184, 255, 0.18), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(255, 154, 60, 0.16), transparent 26%),
        linear-gradient(135deg, #04111f, var(--bg-deep) 45%, var(--bg-mid));
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        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: 42px 42px;
    opacity: 0.25;
    pointer-events: none;
    z-index: -3;
}

a {
    color: inherit;
}

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

#particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(5, 14, 28, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(4, 14, 24, 0.4);
}

.brand-text strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.brand-text span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.83rem;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: transparent;
    border: 0;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-toggle.active {
    transform: scale(1.08);
    color: var(--saffron);
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.96rem;
    position: relative;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    background: linear-gradient(90deg, var(--saffron), #ffffff, var(--green));
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.page-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    padding: 78px 0 58px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.hero-copy,
.hero-visual,
.glass-panel,
.feature-card,
.stat-card,
.project-card,
.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-copy {
    padding: 38px;
    border-radius: 32px;
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 9px 15px;
    border-radius: 999px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff0d9;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.hero h1,
.page-title {
    font-size: clamp(2.4rem, 6vw, 4.3rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

.hero h1 span,
.section-title span,
.page-title span {
    color: var(--saffron);
}

.hero p,
.lead,
.section-copy,
.feature-card p,
.project-card p,
.contact-card p,
.glass-panel p,
.glass-panel li {
    color: var(--muted);
    line-height: 1.7;
}

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

.btn,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    border: 0;
    cursor: pointer;
}

.btn {
    color: #091321;
    background: linear-gradient(135deg, var(--saffron), #ffd166);
    box-shadow: 0 15px 35px rgba(255, 154, 60, 0.28);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.learn-more-link {
    position: relative;
    overflow: hidden;
    border-color: rgba(79, 184, 255, 0.8);
    background: linear-gradient(120deg, rgba(79, 184, 255, 0.12), rgba(164, 92, 255, 0.26), rgba(22, 180, 95, 0.18));
    box-shadow: 0 0 8px rgba(79, 184, 255, 0.58), 0 0 22px rgba(164, 92, 255, 0.28), inset 0 0 12px rgba(255, 255, 255, 0.08);
    animation: neon-pulse 2.2s ease-in-out infinite;
}

.learn-more-link::after {
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    content: "";
    transform: skewX(-20deg);
    animation: neon-sweep 2.8s ease-in-out infinite;
}

.learn-more-link:hover {
    border-color: #ffffff;
    box-shadow: 0 0 12px rgba(79, 184, 255, 0.9), 0 0 32px rgba(164, 92, 255, 0.48), inset 0 0 16px rgba(255, 255, 255, 0.12);
}

@keyframes neon-pulse {
    0%,
    100% {
        filter: brightness(0.96);
    }

    50% {
        filter: brightness(1.2);
    }
}

@keyframes neon-sweep {
    0%,
    45% {
        left: -80%;
    }

    75%,
    100% {
        left: 140%;
    }
}

.btn:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-visual {
    border-radius: 32px;
    padding: 18px;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: 24px;
}

.launch-banner {
    margin: 0 auto 40px;
    width: min(1180px, calc(100% - 32px));
    padding: 13px 18px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(255, 154, 60, 0.96), rgba(255, 255, 255, 0.9), rgba(22, 180, 95, 0.96));
    color: #10223b;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.section {
    padding: 22px 0 58px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.stats-grid,
.feature-grid,
.project-grid,
.contact-grid,
.detail-grid {
    display: grid;
    gap: 20px;
}

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

.stat-card {
    border-radius: 26px;
    padding: 24px;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 2.1rem;
    color: var(--saffron);
}

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

.feature-card {
    border-radius: 28px;
    padding: 28px;
}

.feature-card h3,
.project-card h3,
.contact-card h3,
.glass-panel h3 {
    margin-bottom: 12px;
    font-size: 1.28rem;
}

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

.project-card {
    border-radius: 30px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-body {
    padding: 26px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 20px;
}

.badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #eef5ff;
    font-size: 0.88rem;
}

.contact-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-card,
.glass-panel {
    border-radius: 28px;
    padding: 28px;
}

.contact-card a,
.glass-panel a {
    color: #9bd2ff;
    text-decoration: none;
}

.contact-card a:hover,
.glass-panel a:hover {
    text-decoration: underline;
}

.page-hero {
    padding: 74px 0 26px;
}

.page-hero .glass-panel {
    padding: 36px;
}

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

.list-clean {
    list-style: none;
}

.list-clean li + li {
    margin-top: 12px;
}

.footer {
    margin-top: 40px;
    padding: 28px 16px 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: var(--muted);
}

.footer strong {
    color: #ffffff;
}

.spacer-top {
    margin-top: 18px;
}

.notify-banner {
    position: fixed;
    right: 24px;
    bottom: 26px;
    z-index: 60;
    width: min(380px, calc(100% - 24px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 18px 18px 20px;
    border-radius: 24px;
    background: rgba(6, 18, 34, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.34);
    animation: floatIn 0.45s ease;
}

.notify-banner.is-disabled {
    border-color: rgba(255, 154, 60, 0.36);
}

.notify-copy strong {
    display: block;
    margin-bottom: 4px;
}

.notify-copy p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.notify-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notify-btn {
    border: 0;
    cursor: pointer;
}

.notify-allow {
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    color: #0b1726;
    background: linear-gradient(135deg, var(--saffron), #ffd166);
}

.notify-allow:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

.notify-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.3rem;
}

.scroll-orb {
    position: fixed;
    right: 28px;
    bottom: 126px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.95), rgba(22, 180, 95, 0.95));
    color: #08131f;
    font-size: 1.7rem;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.92);
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 45;
}

.scroll-orb.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.scroll-orb.to-top {
    background: linear-gradient(135deg, rgba(79, 184, 255, 0.96), rgba(255, 255, 255, 0.95));
}

.notify-fab {
    position: fixed;
    left: 24px;
    bottom: 28px;
    z-index: 58;
    padding: 14px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.96), rgba(79, 184, 255, 0.96));
    color: #091321;
    font-weight: 800;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.notify-fab:hover {
    transform: translateY(-2px);
}

.notify-fab.is-enabled {
    background: linear-gradient(135deg, rgba(22, 180, 95, 0.96), rgba(255, 255, 255, 0.96));
}

.notify-fab.is-disabled {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.notify-fab.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.reveal-up {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

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

@media (max-width: 980px) {
    .hero-grid,
    .stats-grid,
    .feature-grid,
    .project-grid,
    .contact-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .navbar {
        padding: 16px;
    }

    .brand-text span {
        font-size: 0.76rem;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        min-width: 58px;
        min-height: 54px;
        padding: 5px 8px;
    }

    .menu-toggle span {
        display: block;
        font-size: 1.75rem;
        line-height: 0.9;
    }

    .menu-toggle small {
        display: block;
        color: var(--muted);
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1;
        text-transform: uppercase;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        background: rgba(3, 10, 20, 0.96);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-16px) scale(0.98);
        transform-origin: top;
        transition: max-height 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
    }

    .nav-links.active {
        max-height: 340px;
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .nav-links a {
        padding: 16px;
        width: 100%;
        text-align: center;
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-copy,
    .hero-visual,
    .glass-panel,
    .feature-card,
    .stat-card,
    .project-body,
    .contact-card {
        padding: 22px;
    }

    .hero-visual img {
        min-height: 280px;
    }

    .page-shell {
        width: min(100% - 20px, 1180px);
    }

    .notify-banner {
        right: 10px;
        left: 10px;
        bottom: 16px;
        width: auto;
        gap: 14px;
        padding: 16px;
    }

    .scroll-orb {
        right: 18px;
        bottom: 116px;
        width: 52px;
        height: 52px;
        font-size: 1.45rem;
    }

    .notify-fab {
        left: 14px;
        bottom: 18px;
        padding: 13px 18px;
        font-size: 0.92rem;
    }
}

/* AITC app catalogue and install details */
.app-card {
    position: relative;
    overflow: hidden;
}

.aitc-highlight {
    position: relative;
}

.app-highlight-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
    border: 1px solid rgba(22, 180, 95, 0.38);
    background: linear-gradient(135deg, rgba(22, 180, 95, 0.14), var(--glass));
}

.app-highlight-card > img {
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    background: #ffffff;
}

.aitc-details-hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: center;
}

.aitc-details-hero > img {
    width: 220px;
    height: 160px;
    padding: 8px;
    border-radius: 24px;
    background: #ffffff;
    object-fit: contain;
}

.founder-grid {
    grid-template-columns: repeat(3, 1fr);
}

.founder-grid .glass-panel {
    padding: 22px;
}

.aitc-feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.install-callout .glass-panel {
    display: grid;
    gap: 12px;
    justify-items: start;
    padding: 32px;
    border-color: rgba(22, 180, 95, 0.35);
    background: linear-gradient(135deg, rgba(22, 180, 95, 0.16), var(--glass));
}

.app-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), #ffffff, var(--green));
    content: "";
}

.app-card > img {
    object-fit: cover;
    object-position: center;
    background: #ffffff;
}

.app-card-heading,
.app-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.app-card-heading .eyebrow {
    margin-bottom: 8px;
    padding: 6px 10px;
    font-size: 0.68rem;
}

.app-card-heading h3 {
    max-width: 480px;
}

.app-status {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid rgba(22, 180, 95, 0.36);
    border-radius: 999px;
    background: rgba(22, 180, 95, 0.12);
    color: #9bf0bd;
    font-size: 0.76rem;
    font-weight: 800;
}

.app-status.installed {
    border-color: rgba(79, 184, 255, 0.4);
    background: rgba(79, 184, 255, 0.14);
    color: #a9dcff;
}

.app-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.app-modal[hidden] {
    display: none;
}

.app-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 22px;
}

.app-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 8, 16, 0.78);
    backdrop-filter: blur(8px);
}

.app-modal-dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: min(860px, calc(100vh - 32px));
    overflow-y: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(14, 37, 60, 0.98), rgba(4, 17, 31, 0.98));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
    animation: modal-in 0.28s ease both;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1;
}

.modal-app-hero {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    align-items: center;
    padding-right: 38px;
}

.modal-app-hero img {
    width: 130px;
    height: 100px;
    padding: 5px;
    border-radius: 18px;
    background: #ffffff;
    object-fit: contain;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.modal-app-hero h2 {
    margin-bottom: 8px;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.app-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 26px 0;
}

.app-detail-grid > div,
.install-panel {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.detail-label {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.76rem;
}

.feature-list {
    margin-bottom: 24px;
}

.feature-list h3 {
    margin-bottom: 10px;
}

.feature-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 20px;
    padding-left: 20px;
    color: var(--muted);
}

.install-panel {
    display: grid;
    gap: 12px;
}

.install-panel > div:first-child span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.84rem;
}

.install-progress {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.install-progress-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.install-status {
    color: var(--muted);
    font-size: 0.84rem;
}

.hidden {
    display: none !important;
}

.install-progress-row > strong {
    min-width: 42px;
    color: var(--saffron);
    font-size: 0.82rem;
    text-align: right;
}

.install-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    transition: width 0.35s ease;
}

.install-progress span.active {
    animation: install-glow 1s ease-in-out infinite alternate;
}

.modal-actions {
    justify-content: flex-end;
}

.modal-open {
    overflow: hidden;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }

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

@keyframes install-glow {
    from { filter: brightness(0.9); }
    to { filter: brightness(1.25); }
}

@media (max-width: 600px) {
    .app-card-heading,
    .modal-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .app-status {
        align-self: flex-start;
    }

    .app-actions .btn,
    .app-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .app-modal {
        padding: 10px;
    }

    .app-highlight-card,
    .aitc-details-hero {
        grid-template-columns: 1fr;
    }

    .app-highlight-card > img {
        min-height: 190px;
    }

    .aitc-details-hero > img {
        width: 150px;
        height: 110px;
    }

    .founder-grid,
    .aitc-feature-grid {
        grid-template-columns: 1fr;
    }

    .install-callout .glass-panel {
        padding: 22px;
    }

    .app-modal-dialog {
        max-height: calc(100vh - 20px);
        padding: 22px 18px;
        border-radius: 22px;
    }

    .modal-app-hero {
        grid-template-columns: 1fr;
        padding-right: 36px;
    }

    .modal-app-hero img {
        width: 112px;
        height: 84px;
    }

    .app-detail-grid,
    .feature-list ul {
        grid-template-columns: 1fr;
    }
}

/* FlyVio Coming Soon Section */
.coming-soon-panel {
    position: relative;
    overflow: hidden;
    padding: 48px !important;
    border: 1px solid rgba(79, 184, 255, 0.4) !important;
    background: linear-gradient(135deg, rgba(79, 184, 255, 0.12), rgba(22, 180, 95, 0.08), var(--glass)) !important;
    box-shadow: 0 0 40px rgba(79, 184, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.08) !important;
}

.coming-soon-panel::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 184, 255, 0.15), transparent 70%);
    animation: float-bg 8s ease-in-out infinite;
    pointer-events: none;
}

.coming-soon-panel::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 180, 95, 0.12), transparent 70%);
    animation: float-bg-reverse 10s ease-in-out infinite;
    pointer-events: none;
}

.coming-soon-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coming-soon-badge {
    display: inline-flex;
    width: fit-content;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(79, 184, 255, 0.2), rgba(255, 154, 60, 0.2));
    border: 1px solid rgba(79, 184, 255, 0.4);
    box-shadow: 0 0 16px rgba(79, 184, 255, 0.3);
    animation: pulse-badge 2.5s ease-in-out infinite;
}

.coming-soon-badge span {
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4fb8ff, #ffd166, #16b45f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-panel h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #ffffff, #4fb8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.coming-soon-text {
    font-size: 1rem;
    color: #b8d4e8;
    line-height: 1.8;
    max-width: 600px;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 12px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(79, 184, 255, 0.2);
    transition: all 0.35s ease;
}

.feature-item:hover {
    background: rgba(79, 184, 255, 0.12);
    border-color: rgba(79, 184, 255, 0.5);
    transform: translateX(4px);
    box-shadow: 0 0 20px rgba(79, 184, 255, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(79, 184, 255, 0.2);
    border-radius: 12px;
}

.coming-soon-cta {
    margin-top: 8px;
    padding: 12px 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffd166;
    letter-spacing: 0.05em;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes float-bg-reverse {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 40px); }
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 16px rgba(79, 184, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(79, 184, 255, 0.6);
    }
}

@media (max-width: 768px) {
    .coming-soon-panel {
        padding: 32px !important;
    }

    .coming-soon-panel h2 {
        font-size: 1.6rem;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
    }

    .coming-soon-badge {
        padding: 10px 16px;
    }

    .coming-soon-badge span {
        font-size: 0.9rem;
    }
}

/* Install callout default styling override */
.install-callout .coming-soon-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FlyVio Coming Soon Header Section */
.coming-soon-header {
    position: relative;
    padding: 48px 0 !important;
    margin-bottom: 28px;
}

.coming-soon-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 184, 255, 0.12), transparent 70%);
    animation: float-bg 8s ease-in-out infinite;
    pointer-events: none;
}

.coming-soon-header::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 180, 95, 0.1), transparent 70%);
    animation: float-bg-reverse 10s ease-in-out infinite;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.coming-soon-badge-header {
    display: inline-flex;
    width: fit-content;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(79, 184, 255, 0.15), rgba(255, 154, 60, 0.15));
    border: 1px solid rgba(79, 184, 255, 0.35);
    box-shadow: 0 0 16px rgba(79, 184, 255, 0.25);
    animation: pulse-badge 2.5s ease-in-out infinite;
}

.coming-soon-badge-header span {
    font-size: 0.92rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4fb8ff, #ffd166, #16b45f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Reduce motion while scrolling to avoid jank */
.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
   transition: none !important;
   animation: none !important;
}

/* Specifically disable heavy animated pseudo-elements and backgrounds */
.reduce-motion .coming-soon-panel::before,
.reduce-motion .coming-soon-panel::after,
.reduce-motion .coming-soon-header::before,
.reduce-motion .coming-soon-header::after,
.reduce-motion .coming-soon-badge,
.reduce-motion .coming-soon-badge-header,
.reduce-motion .learn-more-link::after,
.reduce-motion .learn-more-link,
.reduce-motion .feature-item {
   animation: none !important;
   transition: none !important;
}

/* Slightly reduce canvas opacity when paused to indicate light pause (optional) */
.reduce-motion #particles {
   opacity: 0.85;
   will-change: auto;
}

/* Ensure transforms are GPU-accelerated where used */
.coming-soon-panel::before,
.coming-soon-panel::after,
.coming-soon-badge,
.coming-soon-badge-header {
   will-change: transform, opacity;
   transform: translate3d(0,0,0);
}

.section-title span {
    animation: glow-text 3s ease-in-out infinite;
}

@keyframes glow-text {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 154, 60, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 154, 60, 0.6);
    }
}

.flyvio-highlight {
    border: 2px solid rgba(79, 184, 255, 0.4) !important;
    background: linear-gradient(135deg, rgba(79, 184, 255, 0.08), rgba(22, 180, 95, 0.06), var(--glass)) !important;
    box-shadow: 0 0 30px rgba(79, 184, 255, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.06) !important;
    transition: all 0.45s ease;
}

.flyvio-highlight:hover {
    border-color: rgba(79, 184, 255, 0.6) !important;
    box-shadow: 0 0 50px rgba(79, 184, 255, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .coming-soon-header {
        padding: 32px 0 !important;
    }

    .coming-soon-badge-header {
        padding: 8px 14px;
    }

    .coming-soon-badge-header span {
        font-size: 0.85rem;
    }
}
