:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(255,255,255,0.055);
    --panel-strong: rgba(255,255,255,0.085);
    --border: rgba(255,255,255,0.11);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --soft: #94a3b8;
    --accent: #38bdf8;
    --accent-2: #2563eb;
    --success: #22c55e;
    --warning: #f59e0b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 10%, rgba(56,189,248,0.18), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(37,99,235,0.20), transparent 30%),
        linear-gradient(180deg, #020617 0%, #0f172a 52%, #020617 100%);
    color: var(--text);
    overflow-x: hidden;
}

.background-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.orb {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.28;
    z-index: -2;
    pointer-events: none;
}

.orb-one {
    background: #2563eb;
    top: 12%;
    left: -140px;
}

.orb-two {
    background: #38bdf8;
    bottom: 6%;
    right: -140px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: min(1240px, 94%);
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(18px);
}

.brand {
    color: var(--text);
    font-weight: 900;
    font-size: 1.3rem;
    text-decoration: none;
    letter-spacing: -0.03em;
}

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

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.18s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 0;
}

.slide-inner {
    width: min(1240px, 92%);
    margin: 0 auto;
}

.hero-grid,
.split-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 64px;
    align-items: center;
}

.reverse {
    grid-template-columns: 0.92fr 1.08fr;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 18px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    line-height: 0.93;
    letter-spacing: -0.075em;
    margin-bottom: 28px;
}

h2 {
    font-size: clamp(2.2rem, 4.6vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.055em;
    margin-bottom: 22px;
}

h3 {
    font-size: 1.28rem;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.05rem;
}

.hero-lede {
    font-size: 1.22rem;
    max-width: 760px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    box-shadow: 0 18px 44px rgba(37,99,235,0.28);
}

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

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

.btn-primary:hover {
    box-shadow: 0 24px 60px rgba(56,189,248,0.34);
}

.btn-secondary:hover {
    background: rgba(56,189,248,0.11);
    border-color: rgba(56,189,248,0.42);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.trust-row {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    color: var(--soft);
}

.trust-row strong {
    color: var(--text);
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 12px;
}

.dashboard-shell,
.capability-panel,
.cta-panel,
.profile-card,
.outcome-card,
.timeline-step {
    background: var(--panel);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.dashboard-shell {
    border-radius: 30px;
    padding: 28px;
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    display: inline-block;
}

.green { background: var(--success); }
.blue { background: var(--accent); }
.amber { background: var(--warning); }

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.metric-card {
    background: rgba(255,255,255,0.055);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
}

.metric-number {
    display: block;
    color: var(--accent);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.metric-card small,
.workflow-item small {
    color: var(--soft);
}

.workflow-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.workflow-item {
    display: flex;
    gap: 14px;
    align-items: center;
    background: rgba(255,255,255,0.045);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
}

.workflow-item span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--accent);
    background: rgba(56,189,248,0.14);
    font-weight: 900;
}

.workflow-item.active {
    outline: 1px solid rgba(56,189,248,0.35);
}

.section-heading {
    max-width: 900px;
    margin-bottom: 46px;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pain-stack {
    display: grid;
    gap: 14px;
}

.pain-card {
    background: rgba(255,255,255,0.055);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 20px;
    color: var(--text);
    font-weight: 800;
}

.outcome-grid,
.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

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

.outcome-card,
.profile-card {
    border-radius: 24px;
    padding: 26px;
}

.outcome-card span,
.profile-code {
    color: var(--accent);
    font-weight: 900;
    display: block;
    margin-bottom: 18px;
}

.profile-card p,
.outcome-card p {
    font-size: 0.95rem;
}

.capability-panel {
    border-radius: 28px;
    padding: 28px;
}

.capability-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.capability-row:last-child {
    border-bottom: none;
}

.capability-row span {
    color: var(--muted);
}

.capability-row strong {
    color: var(--accent);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--muted);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 900;
}

.timeline-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.timeline-step {
    border-radius: 24px;
    padding: 24px;
}

.timeline-step span {
    color: var(--accent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 900;
    display: block;
    margin-bottom: 14px;
}

.timeline-step strong {
    line-height: 1.45;
    display: block;
}

.cta-panel {
    border-radius: 34px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(37,99,235,0.28), rgba(56,189,248,0.08)),
        rgba(255,255,255,0.055);
}

.footer {
    text-align: center;
    padding: 58px 20px 80px;
    color: var(--soft);
}

.footer-logo {
    color: var(--text);
    font-weight: 900;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.reveal,
.reveal-delay,
.reveal-delay-2,
.reveal-delay-3 {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.floating-card {
    animation: float 6s ease-in-out infinite;
}

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

@media (max-width: 1180px) {
    .outcome-grid,
    .profile-grid,
    .timeline-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero-grid,
    .split-layout,
    .reverse,
    .cta-panel {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .slide {
        min-height: auto;
        padding: 80px 0;
    }

    h1 {
        font-size: clamp(3rem, 14vw, 4.4rem);
    }

    .metric-grid,
    .outcome-grid,
    .profile-grid,
    .timeline-strip {
        grid-template-columns: 1fr;
    }

    .site-header {
        position: relative;
    }
}

@media (max-width: 520px) {
    .dashboard-shell,
    .cta-panel,
    .capability-panel,
    .outcome-card,
    .profile-card {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
.partner-collaboration {
    margin: 120px 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 22px;
    margin-top: 48px;
}

.partner-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);

    border-color: rgba(56,189,248,0.35);

    box-shadow:
        0 18px 40px rgba(15,23,42,0.28);
}

.partner-card h3 {
    margin-bottom: 14px;
}

.partner-card p {
    opacity: 0.88;
    line-height: 1.7;
}
