:root {
    --bg: #04070d;
    --bg-2: #0a1220;
    --panel: rgba(9, 16, 29, 0.72);
    --panel-strong: rgba(10, 18, 32, 0.9);
    --line: rgba(126, 176, 255, 0.18);
    --line-strong: rgba(255, 193, 64, 0.25);
    --text: #eef4ff;
    --muted: #9eacc8;
    --blue: #57b0ff;
    --blue-2: #2f6fff;
    --gold: #ffc24a;
    --gold-2: #ff8a24;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --radius: 24px;
    --radius-sm: 16px;
    --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(52, 125, 255, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 166, 45, 0.12), transparent 30%),
        linear-gradient(180deg, #03060c 0%, #08101b 48%, #050912 100%);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.site-bg,
.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

.site-bg::before,
.site-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(65px);
    opacity: .35;
}
.site-bg::before {
    width: 460px;
    height: 460px;
    top: -110px;
    left: -120px;
    background: rgba(31, 109, 255, 0.35);
}
.site-bg::after {
    width: 420px;
    height: 420px;
    top: 10%;
    right: -100px;
    background: rgba(255, 158, 34, 0.28);
}

.grid-overlay {
    z-index: -1;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(105, 140, 200, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(105, 140, 200, 0.07) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 85%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(4, 8, 15, 0.92), rgba(4, 8, 15, 0.7));
    border-bottom: 1px solid rgba(87, 176, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(60, 132, 255, 0.28));
    flex: 0 0 auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 0.92;
}

.brand-name,
.brand-sub {
    letter-spacing: 0.08em;
    font-weight: 900;
}

.brand-name {
    font-size: 1.25rem;
    color: #f4f8ff;
    text-shadow: 0 0 22px rgba(78, 160, 255, 0.25);
}

.brand-sub {
    font-size: 0.95rem;
    color: var(--gold);
    text-shadow: 0 0 22px rgba(255, 177, 67, 0.22);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: #dfe8fa;
    font-size: 0.98rem;
    padding: 10px 12px;
    border-radius: 999px;
    transition: 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: #fff;
    background: rgba(87, 176, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(87, 176, 255, 0.18), 0 0 0 1px rgba(87, 176, 255, 0.08);
    outline: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.icon-btn,
.action-btn {
    border: 0;
    cursor: pointer;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #edf3ff;
    background: linear-gradient(180deg, rgba(13, 22, 40, 0.9), rgba(9, 15, 28, 0.9));
    box-shadow: inset 0 0 0 1px rgba(87, 176, 255, 0.15), 0 10px 18px rgba(0, 0, 0, 0.26);
}

.small-btn { padding-inline: 18px; }

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.action-btn-primary {
    color: #08111d;
    background: linear-gradient(135deg, var(--gold), #ffab33 55%, #ffd57e 100%);
    box-shadow: 0 14px 30px rgba(255, 172, 51, 0.22);
}

.action-btn-secondary {
    color: #f2f7ff;
    background: linear-gradient(180deg, rgba(14, 24, 42, 0.85), rgba(9, 15, 28, 0.95));
    box-shadow: inset 0 0 0 1px rgba(87, 176, 255, 0.16), 0 14px 30px rgba(27, 58, 122, 0.18);
}

.hero-section {
    padding: 56px 0 28px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d9ebff;
    background: rgba(87, 176, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(87, 176, 255, 0.15);
}

.hero-copy h1,
.section-heading h2,
.dashboard-preview h2,
.cta-card h2 {
    margin: 0;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 7vw, 5.6rem);
}

.hero-copy p,
.section-heading p,
.product-card p,
.feature-card p,
.update-card p,
.dashboard-preview p,
.footer-text,
.cta-card p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-copy p {
    max-width: 62ch;
    margin: 22px 0 0;
    font-size: 1.06rem;
}

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

.card-glass {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(14, 24, 42, 0.8), rgba(8, 14, 24, 0.92));
    box-shadow: inset 0 0 0 1px rgba(126, 176, 255, 0.12), var(--shadow);
}

.card-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 164, 255, 0.1), transparent 34%, rgba(255, 183, 72, 0.08) 76%, transparent 100%);
    pointer-events: none;
}

.hero-visual {
    padding: clamp(20px, 3vw, 32px);
    min-height: 100%;
}

.hero-logo {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
}

.hero-visual-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(126, 176, 255, 0.14);
}

.mini-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: #8fa7ca;
    text-transform: uppercase;
}

.status-pill,
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.status-pill {
    color: #08111d;
    background: linear-gradient(135deg, #9ee2ff, #67aeff 60%, #ffd07a);
}

.assistant-prompt {
    margin-top: 26px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(6, 12, 22, 0.66);
    box-shadow: inset 0 0 0 1px rgba(126, 176, 255, 0.12);
    max-width: 720px;
}

.assistant-prompt label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: #cfdef8;
    font-weight: 700;
}

.prompt-row {
    display: flex;
    gap: 12px;
}

.prompt-row input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 16px 18px;
    border-radius: 16px;
    color: #edf4ff;
    background: rgba(11, 19, 34, 0.88);
    box-shadow: inset 0 0 0 1px rgba(126, 176, 255, 0.12);
}

.prompt-row button {
    min-width: 110px;
    padding: 0 20px;
    border: 0;
    border-radius: 16px;
    font-weight: 800;
    color: #08111d;
    background: linear-gradient(135deg, var(--gold), #ffae35);
}

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

.social-strip-wrap { padding-top: 12px; }

.social-strip {
    padding: 26px;
}

.social-strip .social-intro h2,
.section-heading h2,
.dashboard-preview h2,
.cta-card h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.social-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 14px;
}

.social-card {
    min-height: 140px;
    padding: 18px 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 25, 42, 0.82), rgba(9, 15, 28, 0.95));
    box-shadow: inset 0 0 0 1px rgba(126, 176, 255, 0.1), 0 10px 22px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover,
.feature-card:hover,
.product-card:hover,
.update-card:hover,
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px rgba(255, 193, 64, 0.15), 0 16px 28px rgba(0, 0, 0, 0.28), 0 0 30px rgba(87, 176, 255, 0.06);
}

.social-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.3));
}

.social-card span {
    font-weight: 700;
    color: #eff5ff;
}

.section-heading {
    margin-bottom: 26px;
    text-align: center;
}

.left-align,
.split-heading {
    text-align: left;
}

.card-grid {
    display: grid;
    gap: 20px;
}

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

.feature-card,
.product-card,
.update-card,
.cta-card,
.dashboard-preview {
    padding: 24px;
}

.feature-card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
}

.feature-icon,
.feature-icon-image {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    font-size: 2rem;
    border-radius: 18px;
    background: rgba(87, 176, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(126, 176, 255, 0.12);
}

.feature-card h3,
.product-card h3,
.update-card h3 { margin: 0; font-size: 1.3rem; }
.feature-card p,
.product-card p,
.update-card p { margin: 14px 0 0; }

.feature-card a,
.product-footer a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 800;
    color: #08111d;
    background: linear-gradient(135deg, var(--gold), #ffab33);
    align-self: flex-start;
}

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

.product-topline,
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-type {
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cfe2ff;
    font-weight: 800;
}

.badge {
    color: #fdf3df;
    background: rgba(255, 175, 54, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 175, 54, 0.18);
}

.product-footer {
    margin-top: 22px;
}

.product-footer strong {
    font-size: 1.6rem;
    color: #fff6e3;
}

.updates-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: start;
}

.updates-list {
    display: grid;
    gap: 18px;
}

.dashboard-preview {
    position: sticky;
    top: 112px;
}

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

.stat-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(8, 14, 24, 0.7);
    box-shadow: inset 0 0 0 1px rgba(126, 176, 255, 0.12);
}

.stat-card span {
    display: block;
    font-size: 0.88rem;
    color: #90a5c7;
    margin-bottom: 8px;
}

.stat-card strong {
    font-size: 2rem;
    line-height: 1;
}

.dashboard-links,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.cta-section { padding-bottom: 70px; }

.cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-footer {
    padding: 26px 0 18px;
    border-top: 1px solid rgba(126, 176, 255, 0.12);
    background: linear-gradient(180deg, rgba(5, 9, 16, 0.4), rgba(3, 6, 12, 0.92));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 26px;
    padding-bottom: 24px;
}

.footer-brand { margin-bottom: 14px; }
.footer-grid h3 { margin: 0 0 14px; font-size: 1.04rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li + li { margin-top: 10px; }
.footer-grid a { color: #dbe6fb; }
.footer-grid a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(126, 176, 255, 0.12);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #8da3c4;
    font-size: 0.94rem;
}

.assistant-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 10px 18px 10px 10px;
    border: 0;
    border-radius: 999px;
    color: #06101c;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd27a, #ffab32);
    box-shadow: 0 18px 40px rgba(255, 164, 30, 0.3);
}

.assistant-fab img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    padding: 4px;
}

@media (max-width: 1180px) {
    .hero-grid,
    .updates-layout,
    .cta-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-preview { position: static; }
    .social-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .ecosystem-grid,
    .alt-section .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 0;
    }

    .main-nav {
        width: 100%;
        order: 3;
    }

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

@media (max-width: 680px) {
    .container { width: min(calc(100% - 20px), var(--max)); }
    .hero-section { padding-top: 28px; }
    .hero-copy h1 { max-width: none; }
    .prompt-row,
    .hero-visual-footer,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .social-grid,
    .ecosystem-grid,
    .alt-section .product-grid,
    .stats-grid { grid-template-columns: 1fr; }

    .social-card { min-height: 116px; }
    .assistant-fab span { display: none; }
    .assistant-fab { padding-right: 10px; }
}
