* {
    box-sizing: border-box;
}

:root {
    --bg-dark-1: #0a121e;
    --bg-dark-2: #060a12;
    --glass-bg: rgba(18, 26, 40, 0.5);
    --text-primary: #e6f7ff;
    --text-secondary: #9ca3af;
    --neon-blue: #1b6bff;
    --neon-cyan: #00d1ff;
    --neon-indigo: #8b5cf6;
    --neon-green: #10b981;
    --spotlight-color: rgba(4, 255, 156, 0.1);
    --line-soft: rgba(255, 255, 255, 0.08);
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    scroll-behavior: auto;
}

body {
    --x: 50%;
    --y: 50%;
    position: relative;
    isolation: isolate;
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    background-color: var(--bg-dark-1);
    background-image: linear-gradient(330deg, var(--bg-dark-1) 0%, #111827 50%, var(--bg-dark-2) 100%);
    background-attachment: fixed;
    animation: none;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.96;
    filter: blur(92px);
    background:
        radial-gradient(64vw 52vw at 10% 10%, rgba(0, 209, 255, 0.12) 0%, rgba(27, 107, 255, 0.08) 16%, rgba(27, 107, 255, 0.04) 28%, transparent 64%),
        radial-gradient(58vw 46vw at 90% 8%, rgba(139, 92, 246, 0.11) 0%, rgba(236, 72, 153, 0.07) 18%, rgba(236, 72, 153, 0.03) 30%, transparent 62%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.92;
    filter: blur(108px);
    background:
        radial-gradient(66vw 54vw at 14% 90%, rgba(16, 185, 129, 0.1) 0%, rgba(0, 209, 255, 0.05) 18%, rgba(0, 209, 255, 0.02) 30%, transparent 66%),
        radial-gradient(60vw 48vw at 88% 84%, rgba(251, 191, 36, 0.1) 0%, rgba(236, 72, 153, 0.05) 16%, rgba(236, 72, 153, 0.02) 28%, transparent 62%),
        radial-gradient(44vw 32vw at 54% 28%, rgba(56, 189, 248, 0.05) 0%, rgba(139, 92, 246, 0.03) 16%, transparent 46%);
}

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

#particle-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.72;
}

.cursor-spotlight {
    --spot-x: 50%;
    --spot-y: 50%;
    --spot-opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: var(--spot-opacity);
    transition: opacity 0.18s ease;
    background:
        radial-gradient(
            680px circle at var(--spot-x) var(--spot-y),
            rgba(255, 255, 255, 0.11) 0%,
            rgba(0, 209, 255, 0.08) 16%,
            rgba(139, 92, 246, 0.05) 30%,
            rgba(14, 22, 38, 0.025) 48%,
            transparent 74%
        );
}

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

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 14px 34px rgba(2, 8, 20, 0.18);
}

.site-header {
    position: relative;
    top: auto;
    z-index: 30;
    padding: 0;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 14px max(18px, calc((100vw - 1220px) / 2 + 18px));
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: rgba(10, 16, 28, 0.34);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(27, 107, 255, 0.96), rgba(139, 92, 246, 0.92));
    box-shadow: 0 16px 36px rgba(27, 107, 255, 0.28);
    overflow: hidden;
}

.brand-mark.small {
    width: 38px;
    height: 38px;
    font-size: 12px;
    border-radius: 12px;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.brand-copy small {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8ea2bf;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.site-nav a {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a4b6d2;
}

.site-nav a:hover,
.header-cta:hover {
    color: #ffffff;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.96), rgba(27, 107, 255, 0.94));
    box-shadow: 0 0 10px 2px rgba(0, 209, 255, 0.28), 0 0 20px 5px rgba(27, 107, 255, 0.18);
}

.ticker-wrap {
    position: relative;
    top: 0;
    z-index: 24;
    overflow: hidden;
    margin-top: 0;
    border-top: 1px solid rgba(0, 209, 255, 0.14);
    border-bottom: 1px solid rgba(0, 209, 255, 0.14);
    background: rgba(7, 12, 22, 0.62);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.ticker-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    padding: 12px 0;
    animation: none;
}

.ticker-track span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
}

.nf-announcement-bar {
    position: relative;
    z-index: 24;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(0, 209, 255, 0.14);
    background: rgba(7, 12, 22, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 28px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.nf-announcement-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 72px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 209, 255, 0.18);
    background: rgba(0, 209, 255, 0.1);
    color: #d7f7ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nf-announcement-viewport {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 22px;
    overflow: hidden;
}

.nf-announcement-message {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    padding-right: 36px;
    color: #ecfbff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    will-change: transform;
}

.page-shell {
    position: relative;
    z-index: 2;
}

.hero-section {
    padding: 48px 0 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 34px;
    align-items: center;
}

.hero-grid.is-reverse > :first-child {
    order: 2;
}

.hero-grid.is-reverse > :last-child {
    order: 1;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d7f7ff;
    border: 1px solid rgba(0, 209, 255, 0.18);
    background: rgba(0, 209, 255, 0.08);
}

.hero-copy h1 {
    margin: 18px 0 16px;
    max-width: 760px;
    font-size: clamp(44px, 6.2vw, 78px);
    line-height: 0.94;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.hero-lead {
    max-width: 680px;
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary,
.card-cta {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.96), rgba(27, 107, 255, 0.94));
    box-shadow: 0 0 10px 2px rgba(0, 209, 255, 0.3), 0 0 20px 5px rgba(27, 107, 255, 0.2);
}

.btn-secondary {
    color: #d8ecff;
    border: 1px solid rgba(139, 92, 246, 0.18);
    background: rgba(18, 26, 40, 0.45);
}

.hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.stat-pill {
    min-width: 160px;
    padding: 16px 18px;
    border-radius: 18px;
}

.stat-pill strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.stat-pill span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #95a8c4;
}

.hero-preview {
    position: relative;
}

.preview-frame {
    overflow: hidden;
    border-radius: 30px;
    padding: 14px;
}

.preview-frame img,
.preview-frame iframe {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
    cursor: zoom-in;
}

.preview-frame video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.preview-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.mini-shot {
    overflow: hidden;
    border-radius: 20px;
    padding: 10px;
}

.mini-shot img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
    cursor: zoom-in;
}

.mini-shot video {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 14px;
}

.mini-shot span {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d9f4ff;
}

.preview-badge {
    position: absolute;
    z-index: 2;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #dff7ff;
}

.preview-badge-top {
    top: -14px;
    left: -12px;
}

.preview-badge-bottom {
    right: -10px;
    bottom: 18px;
}

.product-section,
.workflow-section,
.benefit-section,
.closing-section {
    padding: 34px 0;
}

.pricing-section {
    padding: 8px 0 34px;
}

.pricing-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 22px;
    padding: 28px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(0, 209, 255, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.12), transparent 30%),
        var(--glass-bg);
}

.pricing-copy h2 {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.pricing-copy p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #9eb0c8;
}

.pricing-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.pricing-points li {
    position: relative;
    margin-top: 10px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.75;
    color: #c5d2df;
}

.pricing-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 209, 255, 0.6);
}

.pricing-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 14, 24, 0.55);
    box-shadow: inset 0 0 30px rgba(0, 209, 255, 0.05);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.price-before {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #7d8da5;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.price-now {
    margin-top: 6px;
    font-size: clamp(42px, 6vw, 62px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.price-period {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9edcff;
}

.price-note {
    margin: 16px 0 0;
    font-size: 13px;
    line-height: 1.8;
    color: #9fb1c8;
}

.pricing-cta {
    margin-top: 22px;
    width: 100%;
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 24px;
    text-align: center;
}

.section-heading h2,
.workflow-card h2,
.closing-card h2 {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.section-heading p,
.workflow-card p,
.closing-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #97a7c0;
}

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

.product-card {
    position: relative;
    border-radius: 30px;
    padding: 24px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
}

.product-tag-blue {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
}

.product-tag-violet {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
}

.product-tag-green {
    background: linear-gradient(135deg, #059669, #06b6d4);
}

.product-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.product-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(27, 107, 255, 0.98), rgba(139, 92, 246, 0.9));
}

.product-head h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.05;
    color: #ffffff;
}

.product-head p {
    margin: 6px 0 0;
    font-size: 12px;
    color: #a5b7cf;
}

.product-desc {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.85;
    color: #9eaec5;
}

.product-media {
    overflow: hidden;
    margin-top: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.product-media img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: zoom-in;
}

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

.product-media-split img {
    height: 180px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.chip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #a9eeff;
    border: 1px solid rgba(0, 209, 255, 0.16);
    background: rgba(0, 209, 255, 0.08);
}

.product-card ul,
.workflow-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.product-card li,
.workflow-card li {
    position: relative;
    padding-left: 18px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.75;
    color: #c4d0df;
}

.product-card li::before,
.workflow-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 209, 255, 0.6);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    margin-top: 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gallery-section {
    padding: 34px 0;
}

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

.screen-card {
    overflow: hidden;
    border-radius: 28px;
    padding: 12px;
}

.screen-card img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    cursor: zoom-in;
}

.screen-card video {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
}

.screen-card figcaption {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d8f1ff;
}

.workflow-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.workflow-grid.is-reverse > :first-child {
    order: 2;
}

.workflow-grid.is-reverse > :last-child {
    order: 1;
}

.workflow-card,
.closing-card {
    border-radius: 30px;
    padding: 28px;
}

.workflow-highlight {
    background:
        radial-gradient(circle at top right, rgba(0, 209, 255, 0.12), transparent 35%),
        var(--glass-bg);
}

.mini-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.mini-points div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-soft);
}

.mini-points strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
}

.mini-points span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.7;
    color: #9fb0c6;
}

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

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

.benefit-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(27, 107, 255, 0.96), rgba(139, 92, 246, 0.92));
}

.benefit-card h3 {
    margin: 18px 0 10px;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.benefit-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.85;
    color: #98aac2;
}

.closing-card {
    text-align: center;
}

.closing-card p {
    max-width: 760px;
    margin: 0 auto;
}

.closing-card .btn {
    margin-top: 24px;
}

.site-footer {
    position: relative;
    z-index: 2;
    padding: 0 0 30px;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(3, 8, 18, 0.82);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.image-lightbox[hidden] {
    display: none;
}

.image-lightbox-dialog {
    max-width: min(1200px, calc(100vw - 80px));
    max-height: calc(100vh - 120px);
    padding: 14px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 26, 40, 0.82);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.image-lightbox-dialog img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 148px);
    border-radius: 18px;
}

.image-lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.96), rgba(27, 107, 255, 0.94));
    box-shadow: 0 0 10px 2px rgba(0, 209, 255, 0.28), 0 0 20px 5px rgba(27, 107, 255, 0.18);
}

body.lightbox-open {
    overflow: hidden;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 12px;
    color: #9fb0c7;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand strong {
    display: block;
    font-size: 15px;
    color: #ffffff;
}

.footer-brand p,
.footer-copy {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.7;
}

.nf-floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nf-floating-actions.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nf-floating-actions.has-shortcuts {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nf-floating-link,
.nf-back-to-top {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 16, 28, 0.78);
    box-shadow:
        0 12px 28px rgba(3, 8, 20, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nf-floating-link:hover,
.nf-back-to-top:hover {
    transform: translateY(-1px);
}

.nf-floating-link img {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    object-fit: cover;
}

.nf-back-to-top {
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px) scale(0.92);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nf-floating-actions.is-visible .nf-back-to-top {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.nf-back-to-top span {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

@keyframes background-pan {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes marquee-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .pricing-card,
    .workflow-grid,
    .product-grid,
    .benefit-grid,
    .mini-points,
    .screen-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .preview-badge-top {
        left: 12px;
        top: 12px;
    }

    .preview-badge-bottom {
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 720px) {
    .nf-floating-actions {
        right: 14px;
        bottom: 14px;
    }

    .nf-floating-link,
    .nf-back-to-top {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .nf-floating-link img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 820px) {
    .site-header {
        position: relative;
        padding-top: 0;
    }

    .ticker-wrap {
        position: relative;
        top: 0;
    }

    .topbar,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    #particle-canvas {
        display: none;
    }

    .cursor-spotlight {
        display: none;
    }

    body::before,
    body::after {
        display: none;
    }

    .glass-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: 1px solid rgba(139, 92, 246, 0.08);
        background: rgba(18, 26, 40, 0.42);
    }

    .container {
        width: min(100% - 20px, 1220px);
    }

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

    .hero-copy h1 {
        font-size: 42px;
    }

    .topbar,
    .product-card,
    .workflow-card,
    .benefit-card,
    .closing-card {
        border-radius: 24px;
    }

    .nf-announcement-bar {
        gap: 10px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .nf-announcement-chip {
        min-width: 62px;
        min-height: 32px;
        padding: 0 12px;
        font-size: 10px;
    }

    .nf-announcement-message {
        font-size: 13px;
    }

    .preview-badge {
        display: none;
    }
}

/* Simplified landing layout */
.hero-section {
    padding: 58px 0 26px;
}

.hero-grid {
    align-items: stretch;
    gap: 28px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: clamp(40px, 5.8vw, 74px);
    line-height: 0.96;
}

.hero-lead {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.85;
}

.hero-actions {
    margin-top: 24px;
}

.hero-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.hero-quick-item {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 22px;
    text-align: center;
}

.hero-quick-item span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e7f8ff;
}

.hero-preview-simple .preview-frame {
    min-height: 0;
    padding: 14px;
    border-radius: 28px;
}

.hero-preview-simple {
    display: grid;
    gap: 14px;
    align-content: start;
}

.hero-preview-simple .preview-frame img,
.hero-preview-simple .preview-frame video,
.hero-preview-simple .preview-frame iframe {
    width: 100%;
    height: 300px;
    min-height: 0;
    object-fit: cover;
}

.hero-preview-simple .hero-quick-grid {
    margin-top: 0;
}

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

.section-heading-simple h2 {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.section-heading-simple p {
    max-width: 620px;
}

.demo-section {
    padding: 18px 0 28px;
}

.demo-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 18px;
    padding: 18px;
    border-radius: 30px;
    align-items: stretch;
    overflow: hidden;
}

.demo-shell.is-single {
    grid-template-columns: 1fr;
}

.demo-stage {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    transition: opacity 0.32s ease, transform 0.32s ease, filter 0.32s ease;
}

.demo-stage__frame {
    min-width: 0;
}

.demo-stage__media {
    display: block;
    width: 100%;
    height: 430px;
    border-radius: 16px;
    object-fit: cover;
    background: rgba(9, 14, 24, 0.92);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    cursor: zoom-in;
}

.demo-stage__caption {
    padding: 4px 2px 0;
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.demo-stage__caption strong,
.demo-card__body strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e4f8ff;
}

.demo-card-list {
    display: grid;
    gap: 12px;
    align-content: start;
    transition: opacity 0.32s ease, transform 0.32s ease, filter 0.32s ease;
}

.demo-card-list:empty {
    display: none;
}

.demo-shell.is-transitioning .demo-stage {
    opacity: 0;
    transform: scale(0.985);
    filter: blur(3px);
    pointer-events: none;
}

.demo-shell.is-transitioning .demo-card-list {
    pointer-events: none;
}

.demo-shell.is-transitioning .demo-stage__caption {
    opacity: 0;
    transform: translateY(8px);
}

.demo-transition-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.demo-transition-piece {
    position: absolute;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(9, 14, 24, 0.94);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    transform-origin: top left;
    will-change: transform, opacity, border-radius, box-shadow;
}

.demo-transition-piece.is-placeholder {
    display: grid;
    place-items: center;
    padding: 14px;
    background:
        radial-gradient(circle at top left, rgba(0, 209, 255, 0.12), transparent 38%),
        linear-gradient(135deg, rgba(10, 18, 32, 0.96), rgba(18, 26, 40, 0.96));
}

.demo-transition-piece.is-placeholder span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #def8ff;
}

.demo-transition-piece img,
.demo-transition-piece video,
.demo-transition-piece iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    pointer-events: none;
}

.demo-card {
    width: 100%;
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.demo-card:hover,
.demo-card:focus-visible {
    transform: translateX(-2px);
    border-color: rgba(0, 209, 255, 0.22);
    box-shadow: 0 20px 40px rgba(2, 8, 20, 0.22);
}

.demo-card:focus-visible {
    outline: 2px solid rgba(0, 209, 255, 0.32);
    outline-offset: 3px;
}

.demo-card.is-clone-target {
    opacity: 0;
}

.demo-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(9, 14, 24, 0.92);
}

.demo-card__media img,
.demo-card__media video,
.demo-card__media iframe {
    display: block;
    width: 100%;
    height: 112px;
    border-radius: 12px;
    object-fit: cover;
    background: rgba(9, 14, 24, 0.92);
    cursor: zoom-in;
    pointer-events: none;
}

.demo-card__body {
    min-width: 0;
    display: grid;
    gap: 8px;
    align-content: center;
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.demo-card__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 209, 255, 0.16);
    background: rgba(0, 209, 255, 0.08);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d8f7ff;
}

.demo-card__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 112px;
    padding: 14px;
    border-radius: 16px;
    background:
        radial-gradient(circle at top left, rgba(0, 209, 255, 0.12), transparent 38%),
        linear-gradient(135deg, rgba(10, 18, 32, 0.94), rgba(18, 26, 40, 0.94));
}

.demo-card__placeholder span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #def8ff;
}

.product-section-simple {
    padding: 28px 0 34px;
}

.product-grid-simple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 14px;
    border-radius: 26px;
}

.product-card__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(8, 14, 26, 0.92);
}

.product-card__image {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    cursor: zoom-in;
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(180deg, rgba(4, 8, 18, 0.46), rgba(4, 8, 18, 0.84));
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffd3d3;
}

.product-card.is-out-of-stock {
    opacity: 0.72;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-price {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.product-price-wrap {
    display: grid;
    justify-items: end;
    gap: 4px;
}

.product-price-compare {
    font-size: 12px;
    font-weight: 800;
    color: #7d8da5;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.product-head-simple h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.product-head-simple p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.75;
}

.chip-row-simple {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-row-simple span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cbe7ff;
}

.product-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.product-card__actions > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    flex: 1 1 0;
    margin-top: 0;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.closing-section-simple {
    padding: 18px 0 52px;
}

.closing-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px 30px;
    border-radius: 30px;
    text-align: center;
}

.closing-card h2 {
    margin: 14px auto 10px;
    max-width: 760px;
}

.closing-card p {
    max-width: 680px;
    margin: 0 auto;
}

.closing-card .btn {
    margin-top: 24px;
}

.site-footer {
    padding: 0 0 34px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand strong {
    display: block;
    color: #ffffff;
}

.footer-brand p,
.footer-copy {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: #90a4c1;
}

@media (max-width: 1100px) {
    .hero-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .demo-shell {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .hero-section {
        padding-top: 34px;
    }

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

    .hero-preview-simple .preview-frame img,
    .hero-preview-simple .preview-frame video,
    .hero-preview-simple .preview-frame iframe,
    .demo-stage__media,
    .demo-stage video,
    .demo-stage iframe {
        height: 280px;
    }

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

    .demo-card__media img,
    .demo-card__media video,
    .demo-card__media iframe,
    .demo-card__placeholder {
        height: 180px;
    }

    .product-grid-simple {
        grid-template-columns: 1fr;
    }

    .footer-inner,
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero-copy h1 {
        font-size: 40px;
    }

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

    .hero-quick-item {
        min-height: 60px;
        justify-content: flex-start;
    }

    .demo-shell,
    .closing-card,
    .product-card {
        border-radius: 24px;
    }

    .product-card__image {
        height: 208px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .demo-stage,
    .demo-card-list,
    .demo-stage__caption,
    .demo-card__body,
    .demo-transition-piece {
        transition: none !important;
        animation: none !important;
    }
}
