:root {
    --landing-bg-base: #f7f9ff;
    --landing-bg-surface: rgba(255, 255, 255, 0.82);
    --landing-bg-card: rgba(255, 255, 255, 0.78);
    --landing-border: rgba(79, 70, 229, 0.12);
    --landing-border-strong: rgba(79, 70, 229, 0.2);
    --landing-text: #111827;
    --landing-text-soft: #64748b;
    --landing-primary: #6366f1;
    --landing-primary-soft: rgba(99, 102, 241, 0.14);
    --landing-primary-border: rgba(99, 102, 241, 0.28);
}

.landing-root {
    position: relative;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background:
        radial-gradient(circle at 14% 10%, rgba(99, 102, 241, 0.18), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(168, 85, 247, 0.16), transparent 24%),
        linear-gradient(180deg, #fbfdff 0%, #f6f7ff 52%, #eef4ff 100%);
    color: var(--landing-text);
}

.landing-root .glass-header {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--landing-border);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.landing-root .glass-panel,
.landing-root .landing-card,
.landing-root .hero-preview-card,
.landing-root .stat-card {
    background: var(--landing-bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--landing-border);
    box-shadow: 0 20px 55px rgba(79, 70, 229, 0.10);
}

.landing-root .landing-section {
    position: relative;
    padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
    .landing-root .landing-section {
        padding: 7rem 2rem;
    }
}

.landing-root .landing-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.14), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(168, 85, 247, 0.12), transparent 45%),
        transparent;
}

.landing-root .landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.landing-root .landing-nav-link {
    border: none;
    background: transparent;
    color: var(--landing-text-soft);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}

.landing-root .landing-nav-link:hover {
    color: var(--landing-text);
}

.landing-root .text-zinc-300,
.landing-root .text-zinc-400,
.landing-root .text-zinc-500 {
    color: var(--landing-text-soft) !important;
}

.landing-root h1,
.landing-root h2,
.landing-root h3,
.landing-root .font-semibold,
.landing-root .font-bold {
    color: var(--landing-text);
}

.landing-root strong.text-zinc-300 {
    color: #334155 !important;
}

.landing-root .bg-zinc-800\/60 {
    background-color: #e2e8f0 !important;
}

.landing-root .bg-zinc-900\/50 {
    background-color: rgba(248, 250, 252, 0.86) !important;
}

.landing-root .border-white\/5,
.landing-root .border-white\/10 {
    border-color: rgba(79, 70, 229, 0.10) !important;
}

.landing-root .landing-nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--landing-primary);
    transition: width 0.3s ease;
}

.landing-root .landing-nav-link:hover::after {
    width: 100%;
}

.landing-root .cta-primary,
.landing-root .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.2s ease, background 0.2s ease;
}

.landing-root .cta-primary {
    position: relative;
    overflow: hidden;
    padding: 0.875rem 1.75rem;
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.landing-root .cta-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.landing-root .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.landing-root .cta-primary:hover::before {
    left: 100%;
}

.landing-root .cta-secondary {
    padding: 0.875rem 1.75rem;
    color: var(--landing-text);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--landing-border-strong);
}

.landing-root .cta-secondary:hover {
    background: #fff;
    border-color: var(--landing-primary-border);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.10);
}

.landing-root .landing-badge,
.landing-root .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid var(--landing-primary-border);
}

.landing-root .landing-badge {
    padding: 0.4rem 0.9rem;
    background: var(--landing-primary-soft);
    color: #4f46e5;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.landing-root .trust-pill {
    padding: 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--landing-border);
    color: var(--landing-text-soft);
    font-size: 0.8rem;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.06);
}

.landing-root .hero-mini-flow {
    display: inline-flex;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.6rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(79, 70, 229, 0.12);
    box-shadow: 0 16px 36px rgba(79, 70, 229, 0.08);
}

.landing-root .hero-mini-flow div {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.75rem;
    color: #475569;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.7));
    font-size: 0.82rem;
}

.landing-root .hero-mini-flow strong {
    color: #6366f1;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.landing-root .hero-preview {
    position: relative;
    perspective: 1200px;
}

.landing-root .hero-preview-card {
    border-radius: 1rem;
}

.landing-root .landing-card {
    border-radius: 1rem;
    padding: 1.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.landing-root .landing-card:hover {
    transform: translateY(-4px);
    border-color: var(--landing-primary-border);
    box-shadow: 0 18px 45px rgba(79, 70, 229, 0.14);
}

.landing-root .spotlight-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.landing-root .spotlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(99, 102, 241, 0.18), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.landing-root .spotlight-card:hover::before {
    opacity: 1;
}

.landing-root .spotlight-card > * {
    position: relative;
    z-index: 2;
}

.landing-root .glow-border {
    position: relative;
}

.landing-root .glow-border::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99,102,241,0.6), rgba(168,85,247,0.6), rgba(236,72,153,0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.landing-root .glow-border:hover::after {
    opacity: 1;
}

.landing-root .scroll-progress {
    position: sticky;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 999;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
}

.landing-root .floating-cta {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    border-radius: 999px;
    padding: 0.875rem 1.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    box-shadow: 0 10px 32px rgba(99, 102, 241, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: landing-pulse-ring 2.4s ease-in-out infinite;
}

.landing-root .floating-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.landing-root .floating-cta:hover {
    transform: translateY(-3px) scale(1.04);
}

@keyframes landing-pulse-ring {
    0%, 100% { box-shadow: 0 10px 32px rgba(99,102,241,0.45), 0 0 0 0 rgba(168,85,247,0.55); }
    70% { box-shadow: 0 10px 32px rgba(99,102,241,0.45), 0 0 0 16px rgba(168,85,247,0); }
}

.landing-root .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
    animation: landing-live-pulse 1.8s ease-out infinite;
}

@keyframes landing-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
    100% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
}

.landing-root .aurora-bg,
.landing-root .aurora-extra,
.landing-root .rotating-ring,
.landing-root .twinkle-dot {
    pointer-events: none;
}

.landing-root .aurora-bg {
    position: absolute;
    inset: -20%;
    z-index: 0;
    filter: blur(70px);
    opacity: 0.55;
    animation: landing-aurora-rotate 22s linear infinite;
}

.landing-root .aurora-bg::before,
.landing-root .aurora-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.landing-root .aurora-bg::before {
    top: 10%;
    left: 5%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, #6366f1 0%, transparent 60%);
    animation: landing-aurora-float-1 14s ease-in-out infinite;
}

.landing-root .aurora-bg::after {
    right: 8%;
    bottom: 5%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, #a855f7 0%, transparent 60%);
    animation: landing-aurora-float-2 18s ease-in-out infinite;
}

.landing-root .aurora-extra {
    position: absolute;
    top: 40%;
    left: 45%;
    width: 35%;
    height: 35%;
    border-radius: 50%;
    background: radial-gradient(circle, #ec4899 0%, transparent 65%);
    filter: blur(80px);
    opacity: 0.35;
    animation: landing-aurora-float-3 16s ease-in-out infinite;
    z-index: 0;
}

@keyframes landing-aurora-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes landing-aurora-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(8%, 12%) scale(1.15); }
}

@keyframes landing-aurora-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10%, -8%) scale(1.2); }
}

@keyframes landing-aurora-float-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-40%, -55%) scale(1.3); }
}

.landing-root .text-gradient-primary,
.landing-root .text-gradient-animated {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.landing-root .text-gradient-primary {
    background: linear-gradient(135deg, #818cf8 0%, #a855f7 50%, #ec4899 100%);
}

.landing-root .text-gradient-animated {
    background: linear-gradient(120deg, #818cf8 0%, #a855f7 25%, #ec4899 50%, #a855f7 75%, #818cf8 100%);
    background-size: 200% 200%;
    animation: landing-gradient-flow 6s linear infinite;
}

.landing-root .brand-wordmark {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111827;
    text-shadow: none;
}

.landing-root .hero-keyword {
    display: inline-block;
    position: relative;
    padding: 0 0.14em;
    border-radius: 0.22em;
    color: #4f46e5;
    text-shadow: 0 8px 28px rgba(99, 102, 241, 0.16);
    isolation: isolate;
}

.landing-root .hero-keyword::before {
    content: "";
    position: absolute;
    left: -0.02em;
    right: -0.02em;
    bottom: 0.08em;
    height: 0.42em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(129, 140, 248, 0.24), rgba(168, 85, 247, 0.18), rgba(244, 114, 182, 0.18));
    filter: blur(2px);
    z-index: -1;
}

.landing-root .hero-title {
    line-height: 1.22;
    letter-spacing: -0.04em;
}

.landing-root .footer-keyword {
    display: inline-block;
    position: relative;
    padding: 0 0.12em;
    border-radius: 0.22em;
    color: #4f46e5;
    text-shadow: 0 8px 26px rgba(99, 102, 241, 0.16);
    isolation: isolate;
}

.landing-root .footer-keyword::before {
    content: "";
    position: absolute;
    left: -0.02em;
    right: -0.02em;
    bottom: 0.08em;
    height: 0.38em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(129, 140, 248, 0.30), rgba(168, 85, 247, 0.24), rgba(244, 114, 182, 0.22));
    filter: blur(2px);
    z-index: -1;
}

.landing-root .footer-title {
    line-height: 1.3;
    letter-spacing: -0.04em;
}

@keyframes landing-gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.landing-root .marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.landing-root .marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: landing-marquee-scroll 30s linear infinite;
}

.landing-root .marquee-item {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--landing-border);
    font-size: 0.8rem;
    color: var(--landing-text-soft);
    white-space: nowrap;
}

.landing-root .marquee-item .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 0.5rem;
    border-radius: 50%;
}

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

.landing-root .float-card {
    animation: landing-float-y 6s ease-in-out infinite;
}

.landing-root .float-card.float-delay-1 { animation-delay: -2s; }
.landing-root .float-card.float-delay-2 { animation-delay: -4s; }

@keyframes landing-float-y {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}

.landing-root .stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.landing-root .stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.1), transparent);
    transition: left 0.6s ease;
}

.landing-root .stat-card:hover::before {
    left: 100%;
}

.landing-root .stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--landing-primary-border);
}

.landing-root .stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.landing-root .rotating-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(99, 102, 241, 0.20);
    animation: landing-ring-rotate 24s linear infinite;
}

.landing-root .rotating-ring.reverse {
    animation-direction: reverse;
}

@keyframes landing-ring-rotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.landing-root .twinkle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 12px #a78bfa;
    animation: landing-twinkle 3s ease-in-out infinite;
}

@keyframes landing-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.4); }
}

.landing-root .feature-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 1rem 1rem 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-root .landing-card:hover .feature-top-bar {
    transform: scaleX(1);
}

.landing-root .bar-indigo { background: linear-gradient(90deg, #6366f1, #8b5cf6); }
.landing-root .bar-purple { background: linear-gradient(90deg, #a855f7, #d946ef); }
.landing-root .bar-pink { background: linear-gradient(90deg, #ec4899, #f472b6); }

.landing-root .icon-bounce {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.landing-root .landing-card:hover .icon-bounce {
    transform: rotate(-8deg) scale(1.15);
}

.landing-root .compare-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--landing-border);
    transition: background 0.2s ease;
}

.landing-root .compare-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.landing-root .compare-row:last-child {
    border-bottom: none;
}

.landing-root .compare-row .col-title {
    font-weight: 600;
    color: var(--landing-text);
}

.landing-root .compare-row .col-bad,
.landing-root .compare-row .col-good {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-root .compare-row .col-bad {
    color: var(--landing-text-soft);
}

.landing-root .compare-row .col-good {
    color: var(--landing-text);
    font-weight: 500;
}

.landing-root .icon-cross,
.landing-root .icon-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.landing-root .icon-cross {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.landing-root .icon-check {
    color: #fff;
    background: linear-gradient(135deg, #10b981, #34d399);
}

.landing-root .step-connector {
    position: relative;
}

.landing-root .step-connector::after {
    content: "";
    position: absolute;
    top: 28px;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, transparent);
    background-size: 200% 100%;
    animation: landing-line-flow 3s linear infinite;
}

@keyframes landing-line-flow {
    from { background-position: 0% 0; }
    to { background-position: 200% 0; }
}

.landing-root details.landing-card {
    padding: 1.25rem 1.5rem;
}

.landing-root details.landing-card summary::-webkit-details-marker {
    display: none;
}

.landing-root details.landing-card summary {
    outline: none;
}

.landing-root details.landing-card[open] {
    border-color: var(--landing-primary-border);
}

.landing-root details.landing-card[open] summary h3 {
    color: #a5b4fc;
}

.landing-root .sample-data-card {
    padding: 1.6rem;
    border-radius: 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.72)),
        var(--landing-bg-card);
}

.landing-root .sample-data-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.landing-root .sample-data-copy {
    max-width: 640px;
}

.landing-root .sample-data-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.14);
    color: #4f46e5;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-root .sample-data-head strong {
    display: block;
    color: var(--landing-text);
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.landing-root .sample-data-head p {
    margin: 0.45rem 0 0;
    color: var(--landing-text-soft);
    font-size: 0.94rem;
    line-height: 1.75;
}

.landing-root .sample-data-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.landing-root .sample-data-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.18);
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.landing-root .sample-data-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(79, 70, 229, 0.10);
    border-radius: 1.1rem;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.landing-root .sample-data-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.landing-root .sample-data-table th,
.landing-root .sample-data-table td {
    padding: 0.9rem 0.85rem;
    border-bottom: 1px solid rgba(79, 70, 229, 0.08);
    text-align: left;
    white-space: nowrap;
    font-size: 0.85rem;
}

.landing-root .sample-data-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: #334155;
    font-weight: 700;
    background: #f8fafc;
}

.landing-root .sample-data-table td {
    color: #475569;
    font-variant-numeric: tabular-nums;
}

.landing-root .sample-data-table tbody tr:last-child td {
    border-bottom: none;
}

.landing-root .sample-data-table tbody tr:nth-child(2n) td {
    background: rgba(99, 102, 241, 0.035);
}

@media (max-width: 1023px) {
    .landing-root .step-connector::after {
        display: none;
    }

    .landing-root .sample-data-head {
        flex-direction: column;
    }

    .landing-root .sample-data-tags {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .landing-root .floating-cta {
        right: 1rem;
        bottom: 1rem;
        padding: 0.8rem 1.15rem;
    }

    .landing-root .hero-mini-flow {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }

    .landing-root .hero-mini-flow div {
        justify-content: space-between;
    }

    .landing-root .compare-row,
    .landing-root .grid.grid-cols-\[1\.5fr_1fr_1fr\] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
