:root {
    color-scheme: dark;
    --bg: #07101f;
    --bg-soft: #0b1628;
    --surface: rgba(15, 28, 49, .78);
    --surface-solid: #101d31;
    --surface-bright: #162742;
    --border: rgba(148, 163, 184, .17);
    --border-strong: rgba(96, 165, 250, .32);
    --text: #f8fafc;
    --muted: #aebdd2;
    --muted-2: #7f91aa;
    --primary: #4f8cff;
    --primary-strong: #2563eb;
    --cyan: #38bdf8;
    --violet: #8b5cf6;
    --green: #22c55e;
    --amber: #f59e0b;
    --danger: #ef4444;
    --shadow: 0 24px 80px rgba(0, 0, 0, .28);
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;
    --header-height: 68px;
    --container: 1180px;
}

html[data-theme="light"] {
    color-scheme: light;
    --bg: #f5f8fd;
    --bg-soft: #edf3fb;
    --surface: rgba(255, 255, 255, .84);
    --surface-solid: #ffffff;
    --surface-bright: #edf4ff;
    --border: rgba(51, 65, 85, .14);
    --border-strong: rgba(37, 99, 235, .28);
    --text: #0f172a;
    --muted: #52647c;
    --muted-2: #718096;
    --shadow: 0 24px 70px rgba(30, 64, 175, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 85% -10%, rgba(37, 99, 235, .22), transparent 34rem),
        radial-gradient(circle at -10% 30%, rgba(139, 92, 246, .12), transparent 30rem),
        var(--bg);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

img,
svg {
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(20px);
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
    font-weight: 850;
    letter-spacing: -.03em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-strong), var(--cyan));
    box-shadow: 0 12px 34px rgba(37, 99, 235, .35);
    font-size: 14px;
}

.brand span:last-child {
    font-size: 19px;
}

.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link,
.nav-trigger {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 680;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.active {
    color: var(--text);
    background: var(--surface);
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 290px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-solid);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: grid;
    gap: 2px;
    padding: 11px 12px;
    border-radius: 11px;
}

.dropdown a:hover {
    background: var(--surface-bright);
}

.dropdown strong {
    font-size: 14px;
}

.dropdown small {
    color: var(--muted-2);
    font-size: 12px;
}

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

.icon-button,
.mobile-toggle {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--muted);
    background: var(--surface);
    cursor: pointer;
}

.mobile-toggle {
    display: none;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 780;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-strong), var(--primary));
    box-shadow: 0 12px 30px rgba(37, 99, 235, .28);
}

.button-secondary {
    border-color: var(--border);
    color: var(--text);
    background: var(--surface);
}

.button-ghost {
    color: var(--muted);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 72px;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 30px;
    left: 50%;
    width: 780px;
    height: 420px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(37, 99, 235, .12);
    filter: blur(95px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
    align-items: center;
    gap: 64px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 7px 11px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: #b9d7ff;
    background: rgba(37, 99, 235, .1);
    font-size: 12px;
    font-weight: 780;
    letter-spacing: .04em;
    text-transform: uppercase;
}

html[data-theme="light"] .eyebrow {
    color: #1d4ed8;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 840px;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1.01;
    letter-spacing: -.058em;
}

.gradient-text {
    color: transparent;
    background: linear-gradient(100deg, #77a7ff, #52d6ff 48%, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead,
.page-lead {
    max-width: 700px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
}

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-top: 34px;
    color: var(--muted);
    font-size: 13px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-proof i {
    color: var(--green);
    font-style: normal;
}

.product-window {
    position: relative;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(24, 43, 72, .9), rgba(8, 19, 35, .92));
    box-shadow: var(--shadow);
}

html[data-theme="light"] .product-window {
    background: linear-gradient(160deg, #fff, #edf4ff);
}

.window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 2px 15px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--muted-2);
    opacity: .5;
}

.window-label {
    color: var(--muted-2);
    font-size: 12px;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 86px 1fr;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #091525;
}

.preview-sidebar {
    padding: 18px 13px;
    border-right: 1px solid rgba(148, 163, 184, .12);
    background: #0c1a2d;
}

.preview-logo {
    width: 34px;
    height: 34px;
    margin-bottom: 22px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
}

.preview-nav i {
    display: block;
    height: 9px;
    margin: 12px 0;
    border-radius: 10px;
    background: rgba(148, 163, 184, .18);
}

.preview-main {
    padding: 20px;
}

.preview-title {
    width: 36%;
    height: 13px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(226, 232, 240, .82);
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preview-card {
    min-height: 84px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 12px;
    background: rgba(20, 39, 66, .84);
}

.preview-card i,
.preview-table i {
    display: block;
    height: 7px;
    margin: 8px 0;
    border-radius: 10px;
    background: rgba(148, 163, 184, .2);
}

.preview-card strong {
    display: block;
    width: 46%;
    height: 18px;
    border-radius: 7px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.preview-chart {
    height: 115px;
    margin-top: 12px;
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 12px;
    background:
        linear-gradient(180deg, transparent, rgba(37, 99, 235, .12)),
        repeating-linear-gradient(0deg, transparent 0 22px, rgba(148, 163, 184, .07) 23px);
}

.preview-table {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 12px;
    background: rgba(20, 39, 66, .62);
}

.trust-strip {
    padding: 22px 0;
    border-block: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface-solid) 48%, transparent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: center;
    color: var(--muted);
    text-align: center;
    font-size: 13px;
    font-weight: 720;
}

.section {
    padding: 88px 0;
}

.section-tight {
    padding: 58px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.kicker {
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.section h2,
.page-section h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -.04em;
}

.section-head p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 18px;
}

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

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

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

.card {
    position: relative;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .08);
    backdrop-filter: blur(14px);
}

.card:hover {
    border-color: var(--border-strong);
}

.card-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(96, 165, 250, .24);
    border-radius: 13px;
    color: #dbeafe;
    background: linear-gradient(135deg, rgba(37, 99, 235, .25), rgba(56, 189, 248, .12));
    font-size: 20px;
}

html[data-theme="light"] .card-icon {
    color: #1e40af;
}

.card h3 {
    margin: 0;
    font-size: 19px;
    letter-spacing: -.02em;
}

.card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    color: #8ec5ff;
    font-size: 13px;
    font-weight: 760;
}

.product-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    overflow: hidden;
}

.product-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .14);
    filter: blur(20px);
}

.product-badge {
    align-self: flex-start;
    margin-bottom: 22px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, .14);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 30px;
}

.product-card p {
    font-size: 16px;
}

.feature-list {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}

.feature-list li {
    display: flex;
    gap: 9px;
}

.feature-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
}

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

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--border);
}

.metric {
    padding: 30px 24px;
    background: var(--surface-solid);
    text-align: center;
}

.metric strong {
    display: block;
    font-size: 30px;
    letter-spacing: -.04em;
}

.metric span {
    color: var(--muted);
    font-size: 13px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.integration {
    min-height: 94px;
    display: grid;
    place-items: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--muted);
    background: var(--surface);
    text-align: center;
    font-size: 13px;
    font-weight: 750;
}

.integration:hover {
    color: var(--text);
    border-color: var(--border-strong);
}

.ai-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .18), rgba(139, 92, 246, .12)),
        var(--surface);
    box-shadow: var(--shadow);
}

.ai-panel::before {
    content: "✦";
    position: absolute;
    right: 32px;
    top: 6px;
    color: rgba(125, 174, 255, .15);
    font-size: 160px;
    line-height: 1;
}

.ai-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 44px;
}

.ai-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.ai-capability {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(7, 16, 31, .28);
    color: var(--muted);
    font-size: 13px;
}

html[data-theme="light"] .ai-capability {
    background: rgba(255, 255, 255, .58);
}

.marketplace-band,
.cta-band {
    position: relative;
    overflow: hidden;
    padding: 50px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 0, rgba(56, 189, 248, .2), transparent 28rem),
        var(--surface-solid);
}

.band-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 34px;
}

.band-grid h2 {
    margin: 0;
}

.band-grid p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.faq-item summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 720;
}

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 14px;
}

.page-hero {
    padding: 92px 0 64px;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted-2);
    font-size: 13px;
}

.page-section {
    padding: 72px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 48px;
}

.side-nav {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: start;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
}

.side-nav a {
    display: block;
    padding: 9px 10px;
    border-radius: 9px;
    color: var(--muted);
    font-size: 13px;
}

.side-nav a:hover {
    color: var(--text);
    background: var(--surface-bright);
}

.prose {
    max-width: 850px;
}

.prose h2 {
    margin-top: 50px;
    font-size: 30px;
}

.prose h3 {
    margin-top: 32px;
}

.prose p,
.prose li {
    color: var(--muted);
}

.prose a {
    color: #7db5ff;
}

.notice {
    padding: 18px 20px;
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    background: var(--surface);
    color: var(--muted);
}

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

.price-card {
    padding: 30px;
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 24px 60px rgba(37, 99, 235, .18);
}

.price {
    margin: 20px 0;
    font-size: 38px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.price small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px;
}

.form-card {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 7px;
}

.field label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 11px;
    outline: none;
    color: var(--text);
    background: var(--bg-soft);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.site-footer {
    margin-top: 30px;
    border-top: 1px solid var(--border);
    background: rgba(4, 10, 20, .32);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
    padding: 62px 0 44px;
}

.footer-brand p {
    max-width: 320px;
    color: var(--muted);
    font-size: 14px;
}

.footer-column h4 {
    margin: 0 0 14px;
    font-size: 13px;
}

.footer-column a {
    display: block;
    margin: 9px 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-column a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    color: var(--muted-2);
    font-size: 12px;
}

.mobile-menu {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .primary-nav {
        display: none;
    }

    .nav-actions .button {
        display: none;
    }

    .mobile-toggle {
        display: grid;
    }

    .mobile-menu.open {
        position: fixed;
        z-index: 999;
        top: var(--header-height);
        left: 0;
        right: 0;
        display: grid;
        gap: 8px;
        padding: 18px 20px 24px;
        border-bottom: 1px solid var(--border);
        background: var(--surface-solid);
        box-shadow: var(--shadow);
    }

    .mobile-menu a {
        padding: 11px 12px;
        border-radius: 10px;
        color: var(--muted);
    }

    .mobile-menu a:hover {
        background: var(--surface-bright);
        color: var(--text);
    }

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

    .product-window {
        max-width: 700px;
    }

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

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

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero {
        padding-top: 66px;
    }

    .hero-grid {
        gap: 38px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .grid-2,
    .grid-3,
    .price-grid {
        grid-template-columns: 1fr;
    }

    .grid-4,
    .ai-capabilities,
    .metrics {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .band-grid,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .side-nav {
        position: static;
    }

    .marketplace-band,
    .cta-band,
    .ai-panel {
        padding: 30px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .dashboard-preview {
        min-height: 330px;
        grid-template-columns: 62px 1fr;
    }

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

    .preview-card:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand span:last-child {
        font-size: 17px;
    }

    .grid-4,
    .metrics,
    .integration-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .product-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .dashboard-preview {
        grid-template-columns: 52px 1fr;
    }
}

/* =========================================================
   JKSolutions Corporate Website — RC-1 Premium Extensions
   ========================================================= */

.hero-rc1 {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero-rc1 .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
}

.hero-content {
    position: relative;
    z-index: 4;
}

.hero-orb {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: jk-orb-drift 10s ease-in-out infinite alternate;
}

.hero-orb-one {
    width: 500px;
    height: 500px;
    top: -180px;
    right: 5%;
    background: rgba(37, 99, 235, .22);
}

.hero-orb-two {
    width: 420px;
    height: 420px;
    left: -180px;
    bottom: -120px;
    background: rgba(139, 92, 246, .13);
    animation-delay: -4s;
}

.hero-grid-overlay {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

@keyframes jk-orb-drift {
    from {
        transform: translate3d(-20px, -10px, 0) scale(.96);
    }
    to {
        transform: translate3d(30px, 22px, 0) scale(1.05);
    }
}

.hero-product-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 760;
}

.hero-product-line span {
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
}

.hero-product-line i {
    color: var(--cyan);
    font-style: normal;
}

.button-large {
    min-height: 50px;
    padding-inline: 22px;
}

.product-stage {
    position: relative;
    min-height: 570px;
    perspective: 1400px;
}

.stage-glow {
    position: absolute;
    inset: 10% 3% 1%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(37, 99, 235, .32), transparent 68%);
    filter: blur(24px);
}

.stage-window {
    position: absolute;
    border: 1px solid rgba(148, 163, 184, .18);
    background: #091525;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .42);
}

.stage-window-pro {
    z-index: 2;
    inset: 0 36px 58px 0;
    overflow: hidden;
    border-radius: 23px;
    transform: rotateY(-5deg) rotateX(2deg);
}

.stage-window-server {
    z-index: 3;
    right: -10px;
    bottom: 2px;
    width: 280px;
    padding: 18px;
    border-radius: 18px;
    transform: rotateY(-4deg);
}

.stage-window-bar,
.server-mini-head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(148, 163, 184, .12);
    color: #9fb0c8;
    font-size: 11px;
}

.stage-window-bar > span {
    flex: 1;
    text-align: center;
}

.stage-window-bar b,
.server-mini-head b {
    padding: 4px 8px;
    border-radius: 999px;
    color: #86efac;
    background: rgba(34, 197, 94, .12);
    font-size: 9px;
    text-transform: uppercase;
}

.stage-body {
    min-height: 455px;
    display: grid;
    grid-template-columns: 76px 1fr;
}

.stage-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 12px;
    border-right: 1px solid rgba(148, 163, 184, .11);
    background: #0d1b2e;
}

.stage-logo {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    margin-bottom: 9px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    font-size: 11px;
    font-weight: 850;
}

.stage-sidebar i {
    width: 34px;
    height: 9px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .16);
}

.stage-sidebar i.active {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.stage-content {
    padding: 22px;
}

.stage-heading {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.stage-heading small,
.stage-heading strong {
    display: block;
}

.stage-heading small {
    margin-bottom: 3px;
    color: #70839c;
    font-size: 9px;
}

.stage-heading strong {
    color: #fff;
    font-size: 16px;
}

.stage-heading > span {
    color: #73869f;
    font-size: 9px;
}

.stage-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.stage-metrics > div {
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, .11);
    border-radius: 11px;
    background: rgba(20, 39, 66, .72);
}

.stage-metrics span,
.stage-metrics strong,
.stage-metrics em {
    display: block;
}

.stage-metrics span {
    color: #7f91aa;
    font-size: 8px;
}

.stage-metrics strong {
    margin-top: 5px;
    color: #fff;
    font-size: 17px;
}

.stage-metrics em {
    color: #4ade80;
    font-size: 8px;
    font-style: normal;
}

.stage-chart {
    height: 165px;
    margin-top: 10px;
    padding: 12px 14px 4px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .11);
    border-radius: 11px;
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0 31px,
            rgba(148, 163, 184, .055) 32px
        ),
        rgba(20, 39, 66, .46);
}

.chart-label {
    display: flex;
    justify-content: space-between;
    color: #91a4bb;
    font-size: 8px;
}

.chart-label strong {
    color: #dbeafe;
    font-size: 10px;
}

.stage-chart svg {
    width: 100%;
    height: 120px;
}

.stage-table {
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .11);
    border-radius: 11px;
}

.stage-table > div {
    min-height: 29px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 0 11px;
    border-bottom: 1px solid rgba(148, 163, 184, .08);
    color: #8799af;
    font-size: 8px;
}

.stage-table > div:last-child {
    border-bottom: 0;
}

.stage-table-head {
    background: rgba(20, 39, 66, .68);
    color: #d8e2f0 !important;
    font-weight: 760;
}

.stage-table b {
    padding: 3px 6px;
    border-radius: 999px;
    font-size: 7px;
}

.status-success {
    color: #86efac;
    background: rgba(34, 197, 94, .1);
}

.status-progress {
    color: #fde68a;
    background: rgba(245, 158, 11, .1);
}

.server-mini-head {
    justify-content: space-between;
    min-height: auto;
    padding: 0 0 14px;
}

.server-rings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 15px;
}

.server-rings > div {
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle closest-side, #091525 77%, transparent 78% 99%),
        conic-gradient(
            #38bdf8 calc(var(--value) * 1%),
            rgba(148, 163, 184, .14) 0
        );
    text-align: center;
}

.server-rings strong,
.server-rings span {
    display: block;
}

.server-rings strong {
    color: #fff;
    font-size: 12px;
}

.server-rings span {
    color: #71849d;
    font-size: 7px;
}

.trust-strip-rc1 {
    position: relative;
    z-index: 3;
}

.trust-strip-rc1 strong {
    color: var(--text);
}

.stats-section {
    padding-bottom: 36px;
}

.metrics-rc1 {
    box-shadow: var(--shadow);
}

.metrics-rc1 .metric strong {
    color: transparent;
    background: linear-gradient(100deg, #7da9ff, #54d7ff);
    -webkit-background-clip: text;
    background-clip: text;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.platform-card {
    position: relative;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .1);
}

.platform-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .12);
    filter: blur(12px);
}

.platform-card-pro,
.platform-card-server {
    grid-column: span 6;
}

.platform-card-mail {
    grid-column: 3 / span 8;
    min-height: 390px;
}

.platform-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.platform-symbol {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 13px 30px rgba(37, 99, 235, .25);
    font-size: 19px;
    font-weight: 850;
}

.platform-card-server .platform-symbol {
    background: linear-gradient(135deg, #7c3aed, #38bdf8);
}

.platform-card-mail .platform-symbol {
    background: linear-gradient(135deg, #0891b2, #22c55e);
}

.platform-card h3 {
    position: relative;
    z-index: 2;
    margin: 20px 0 8px;
    font-size: 32px;
    letter-spacing: -.04em;
}

.platform-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--muted);
}

.platform-feature-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 26px 0;
}

.platform-feature-grid span {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--muted);
    background: color-mix(in srgb, var(--surface-solid) 50%, transparent);
    font-size: 12px;
    text-align: center;
}

.platform-card .product-actions {
    position: relative;
    z-index: 2;
}

.architecture-section {
    border-block: 1px solid var(--border);
    background:
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--surface-solid) 32%, transparent),
            transparent
        );
}

.architecture-flow {
    display: grid;
    grid-template-columns:
        minmax(130px, 1fr) auto
        minmax(130px, 1fr) auto
        minmax(130px, 1fr) auto
        minmax(130px, 1fr) auto
        minmax(130px, 1fr);
    align-items: center;
    gap: 10px;
}

.architecture-node {
    min-height: 150px;
    display: grid;
    place-content: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--surface);
    text-align: center;
}

.architecture-node i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin: 0 auto 11px;
    border-radius: 9px;
    color: var(--cyan);
    background: rgba(37, 99, 235, .12);
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
}

.architecture-node strong,
.architecture-node span {
    display: block;
}

.architecture-node strong {
    font-size: 14px;
}

.architecture-node span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}

.architecture-node-primary {
    border-color: var(--border-strong);
    box-shadow: 0 15px 40px rgba(37, 99, 235, .12);
}

.architecture-arrow {
    color: var(--cyan);
    font-size: 21px;
}

.service-rail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 26px;
}

.service-rail span {
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: var(--surface);
    font-size: 11px;
}

.ai-panel-rc1 {
    padding: 54px;
}

.ai-terminal {
    position: relative;
    z-index: 2;
    padding: 18px;
    border: 1px solid rgba(96, 165, 250, .25);
    border-radius: 18px;
    background: rgba(4, 12, 25, .62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

html[data-theme="light"] .ai-terminal {
    background: rgba(255, 255, 255, .64);
}

.ai-terminal-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 11px;
}

.ai-terminal-head b {
    color: var(--green);
}

.ai-message {
    max-width: 90%;
    margin-top: 16px;
    padding: 13px 15px;
    border-radius: 13px;
    font-size: 12px;
}

.ai-message-user {
    margin-left: auto;
    color: #dbeafe;
    background: rgba(37, 99, 235, .25);
}

html[data-theme="light"] .ai-message-user {
    color: #1e3a8a;
}

.ai-message-system {
    color: var(--muted);
    background: var(--surface);
}

.ai-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.ai-suggestions span {
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--cyan);
    font-size: 10px;
}

.capability-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.capability-table {
    width: 100%;
    min-width: 730px;
    border-collapse: collapse;
    background: var(--surface-solid);
}

.capability-table th,
.capability-table td {
    padding: 17px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    font-size: 13px;
}

.capability-table th:first-child,
.capability-table td:first-child {
    text-align: left;
}

.capability-table th {
    color: var(--text);
    background: var(--surface-bright);
    font-size: 12px;
}

.capability-table td {
    color: var(--muted);
}

.capability-table tr:last-child td {
    border-bottom: 0;
}

.capability-table .yes {
    color: var(--green);
    font-size: 18px;
    font-weight: 900;
}

.capability-table .dash {
    color: var(--muted-2);
}

.capability-table .linked {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 999px;
    color: #93c5fd;
    background: rgba(37, 99, 235, .1);
    font-size: 10px;
    font-weight: 750;
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.integration-categories article {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
}

.integration-categories h3 {
    margin: 0 0 15px;
    font-size: 16px;
}

.integration-categories article > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.integration-categories span {
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: var(--surface-solid);
    font-size: 11px;
}

.center-actions {
    justify-content: center;
}

.security-section {
    border-block: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 14% 25%,
            rgba(37, 99, 235, .12),
            transparent 28rem
        );
}

.security-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 58px;
}

.security-copy p {
    color: var(--muted);
}

.security-features {
    display: grid;
    gap: 10px;
}

.security-features article {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.security-features i {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--cyan);
    background: rgba(37, 99, 235, .12);
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
}

.security-features strong,
.security-features span {
    display: block;
}

.security-features strong {
    font-size: 13px;
}

.security-features span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.demo-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.demo-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .11);
}

.demo-card-visual {
    min-height: 230px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(56, 189, 248, .19),
            transparent 18rem
        ),
        #0a1728;
}

.demo-card-server {
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(139, 92, 246, .2),
            transparent 18rem
        ),
        #0a1728;
}

.demo-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #73869e;
    font-size: 9px;
}

.demo-browser-bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #52647b;
}

.demo-browser-bar span {
    margin-left: 10px;
}

.demo-preview-lines {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, .13);
    border-radius: 14px;
    background: rgba(14, 31, 53, .82);
}

.demo-preview-lines b {
    display: block;
    width: 35%;
    height: 13px;
    border-radius: 999px;
    background: #dbeafe;
}

.demo-preview-lines > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 18px 0;
}

.demo-preview-lines > div i {
    height: 54px;
    border-radius: 10px;
    background: rgba(37, 99, 235, .18);
}

.demo-preview-lines > span {
    display: block;
    width: 100%;
    height: 8px;
    margin-top: 9px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .14);
}

.demo-preview-lines > span:last-child {
    width: 65%;
}

.demo-card-content {
    padding: 28px;
}

.demo-card-content h3 {
    margin: 10px 0;
    font-size: 23px;
}

.demo-card-content p {
    color: var(--muted);
}

.cta-band-rc1 {
    isolation: isolate;
}

.cta-glow {
    position: absolute;
    z-index: -1;
    top: -150px;
    right: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .18);
    filter: blur(30px);
}

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

    .product-stage {
        max-width: 760px;
        width: 100%;
        margin-inline: auto;
    }

    .architecture-flow {
        grid-template-columns: repeat(5, 1fr);
    }

    .architecture-arrow {
        display: none;
    }
}

@media (max-width: 900px) {
    .platform-card-pro,
    .platform-card-server,
    .platform-card-mail {
        grid-column: 1 / -1;
    }

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

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

    .architecture-node:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .hero-rc1 {
        min-height: auto;
    }

    .product-stage {
        min-height: 420px;
    }

    .stage-window-pro {
        inset: 0 10px 50px 0;
        transform: none;
    }

    .stage-window-server {
        right: 0;
        width: 235px;
    }

    .stage-body {
        min-height: 340px;
        grid-template-columns: 54px 1fr;
    }

    .stage-sidebar {
        padding-inline: 8px;
    }

    .stage-sidebar i {
        width: 25px;
    }

    .stage-content {
        padding: 14px;
    }

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

    .stage-metrics > div:last-child {
        display: none;
    }

    .stage-chart {
        height: 130px;
    }

    .stage-chart svg {
        height: 91px;
    }

    .stage-table {
        display: none;
    }

    .platform-feature-grid,
    .integration-categories,
    .demo-card-grid {
        grid-template-columns: 1fr;
    }

    .architecture-flow {
        grid-template-columns: 1fr;
    }

    .architecture-node:last-child {
        grid-column: auto;
    }

    .ai-panel-rc1 {
        padding: 30px 22px;
    }
}

@media (max-width: 480px) {
    .product-stage {
        min-height: 375px;
    }

    .stage-window-pro {
        right: 0;
        bottom: 44px;
    }

    .stage-window-server {
        width: 210px;
        padding: 13px;
    }

    .stage-window-bar {
        padding-inline: 10px;
    }

    .stage-heading > span {
        display: none;
    }

    .platform-card {
        padding: 24px;
    }

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