* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.ix-body {
    min-height: 100%;
    color: var(--landing-text-0);
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    background:
        radial-gradient(1100px 700px at 8% 18%, color-mix(in srgb, var(--landing-accent) 18%, transparent), transparent 70%),
        radial-gradient(900px 680px at 88% 74%, color-mix(in srgb, var(--landing-accent-soft) 56%, transparent), transparent 68%),
        linear-gradient(180deg, var(--landing-bg-0) 0%, var(--landing-bg-1) 100%);
}


.ix-topbar {
    position: fixed;
    top: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
    z-index: 60;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    border: 1px solid var(--landing-border);
    border-radius: 14px;
    background: color-mix(in srgb, var(--landing-surface-0) 76%, transparent);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--landing-shadow) 42%, transparent);
}

.ix-brand {
    text-decoration: none;
    color: var(--landing-text-0);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ix-logo {
    width: 34px;
    height: 34px;
    border-radius: 9px;
}

.ix-topbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.ix-theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--landing-border-strong);
    border-radius: 999px;
    background: color-mix(in srgb, var(--landing-surface-0) 80%, transparent);
    color: var(--landing-text-1);
    padding: 0.28rem 0.4rem;
    cursor: pointer;
    transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.ix-theme-toggle-icon {
    width: 1.28rem;
    height: 1.28rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.8rem;
    line-height: 1;
}

body.ix-body.theme-light .ix-theme-toggle-icon:first-child,
body.ix-body.theme-dark .ix-theme-toggle-icon:last-child {
    background: color-mix(in srgb, var(--landing-accent) 18%, var(--landing-surface-0));
    color: var(--landing-text-0);
}

.ix-theme-toggle:hover {
    border-color: var(--landing-accent);
}

.ix-btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.62rem 1rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.ix-btn:focus-visible,
.ix-progress-dot:focus-visible,
.ix-theme-toggle:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 2px;
}

.ix-btn-ghost {
    color: var(--landing-text-0);
    border-color: var(--landing-border-strong);
    background: color-mix(in srgb, var(--landing-surface-0) 75%, transparent);
}

.ix-btn-ghost:hover {
    border-color: var(--landing-accent);
    background: color-mix(in srgb, var(--landing-accent-soft) 70%, var(--landing-surface-0));
}

.ix-btn-solid {
    color: var(--landing-accent-contrast);
    background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-hover) 100%);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--landing-shadow) 75%, transparent);
}

.ix-btn-solid:hover {
    background: linear-gradient(135deg, var(--landing-accent-hover) 0%, var(--landing-accent) 100%);
}

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

.ix-dock {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%) translateY(120%);
    z-index: 70;
    padding: 0.52rem;
    border-radius: 18px;
    border: 1px solid var(--landing-border);
    background: color-mix(in srgb, var(--landing-surface-0) 74%, transparent);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 40px color-mix(in srgb, var(--landing-shadow) 55%, transparent);
    transition: transform 260ms ease-in;
    pointer-events: none;
}

.ix-dock.is-visible {
    transform: translateX(-50%) translateY(0);
    transition: transform 260ms ease-out;
    pointer-events: auto;
}

.ix-dock-items {
    display: flex;
    align-items: stretch;
    gap: 0.34rem;
}

.ix-progress-dot {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.36rem;
    min-width: 86px;
    padding: 0.44rem 0.48rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: var(--landing-muted);
    font: inherit;
    font-size: 0.7rem;
    line-height: 1.2;
    cursor: pointer;
    transition: color 240ms ease, border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.ix-progress-dot-icon {
    width: 1.12rem;
    height: 1.12rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.02rem;
    line-height: 1;
    filter: saturate(0.95) hue-rotate(18deg);
}

.ix-progress-dot-label {
    white-space: nowrap;
    font-weight: 600;
}

.ix-progress-dot.is-active {
    color: var(--landing-text-0);
    border-color: color-mix(in srgb, var(--landing-accent) 55%, var(--landing-border-strong));
    background: color-mix(in srgb, var(--landing-accent-soft) 40%, var(--landing-surface-0));
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--landing-accent) 20%, transparent);
}

.ix-experience {
    position: relative;
    height: 700vh;
}

.ix-sticky-shell {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    padding-top: 5.4rem;
    padding-bottom: 1.2rem;
}

.ix-track {
    height: calc(100vh - 6.6rem);
    display: flex;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition-property: transform;
    transition-duration: 340ms;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ix-step {
    flex: 0 0 100vw;
    min-width: 100vw;
    max-width: 100vw;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.92fr);
    gap: clamp(1rem, 2.4vw, 2rem);
    align-items: center;
    padding: 1.2rem 3.8rem 1.2rem 3.4rem;
}

.ix-step-tile {
    --step-accent: var(--landing-accent);
    position: relative;
    display: inline-grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 0.82rem;
    margin: 0 0 1rem;
    width: clamp(240px, 28vw, 320px);
    min-height: 96px;
    padding: 0.9rem 1rem 0.9rem 1.2rem;
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--step-accent) 22%, var(--landing-border));
    background: color-mix(in srgb, var(--landing-surface-0) 82%, var(--landing-surface-1));
    color: var(--landing-muted);
    box-shadow: 0 10px 22px color-mix(in srgb, var(--landing-shadow) 24%, transparent);
    transition: border-color 240ms ease, background-color 240ms ease, color 240ms ease, box-shadow 260ms ease, transform 240ms ease;
}

.ix-step-tile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 14px 0 0 14px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--step-accent) 92%, #ffffff) 0%, var(--step-accent) 100%);
}

.ix-step-tile.is-active {
    color: var(--landing-text-0);
    border-color: color-mix(in srgb, var(--step-accent) 58%, var(--landing-border-strong));
    background: color-mix(in srgb, var(--step-accent) 18%, var(--landing-surface-0));
    box-shadow: 0 14px 28px color-mix(in srgb, var(--step-accent) 22%, transparent);
    transform: translateY(-1px);
}

.ix-step-tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--step-accent) 45%, var(--landing-border));
    background: linear-gradient(145deg, color-mix(in srgb, var(--step-accent) 85%, #111827) 0%, color-mix(in srgb, var(--step-accent) 72%, #111111) 100%);
    line-height: 1;
    font-family: "Manrope", sans-serif;
}

.ix-step-tile-copy {
    display: grid;
    gap: 0.2rem;
}

.ix-step-tile-title {
    color: var(--landing-text-0);
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ix-step-tile-subtitle {
    color: var(--landing-text-1);
    font-size: 0.74rem;
    line-height: 1.35;
}

.ix-step h1,
.ix-step h2 {
    margin: 0 0 1.05rem;
    color: var(--landing-text-0);
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    max-width: 11ch;
}

.ix-step[data-step-title="Hero"] h1 {
    max-width: 20ch;
}

.ix-step-content > p {
    margin: 0;
    font-size: clamp(1rem, 1.22vw, 1.28rem);
    line-height: 1.6;
    color: var(--landing-text-1);
    max-width: 58ch;
}

.ix-proof {
    margin-top: 1.2rem;
    background: color-mix(in srgb, var(--landing-surface-0) 82%, var(--landing-surface-1));
    border: 1px solid var(--landing-border-strong);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    max-width: 60ch;
}

.ix-proof-title {
    display: inline-block;
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--landing-accent);
    margin-bottom: 0.45rem;
}

.ix-proof p {
    margin: 0;
    color: var(--landing-text-1);
}

.ix-inline-cta {
    margin-top: 1.15rem;
}

.ix-step-visual {
    display: flex;
    justify-content: center;
    min-height: 0;
}

.ix-workflow-scene {
    width: min(100%, 470px);
    min-height: 290px;
    border-radius: 20px;
    border: 1px solid var(--landing-border);
    background: color-mix(in srgb, var(--landing-surface-0) 84%, var(--landing-surface-1));
    box-shadow: 0 20px 44px color-mix(in srgb, var(--landing-shadow) 58%, transparent);
    backdrop-filter: blur(5px);
    padding: 1.1rem;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0.72rem;
}

.ix-scene-stage {
    position: relative;
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    align-items: center;
    gap: 0.72rem;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    border: 1px solid var(--landing-border);
    background: color-mix(in srgb, var(--landing-surface-0) 65%, transparent);
    color: var(--landing-muted);
    transition: border-color 260ms ease, background-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.ix-scene-stage span {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--landing-muted) 90%, transparent);
    border: 1px solid color-mix(in srgb, var(--landing-border-strong) 78%, transparent);
    background: color-mix(in srgb, var(--landing-surface-1) 72%, transparent);
}

.ix-scene-stage p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--landing-text-1);
}

.ix-scene-stage.is-active {
    border-color: color-mix(in srgb, var(--landing-accent) 46%, var(--landing-border-strong));
    background: color-mix(in srgb, var(--landing-accent-soft) 46%, var(--landing-surface-0));
    transform: translateX(3px);
}

.ix-scene-stage.is-active span {
    color: var(--landing-accent);
    border-color: color-mix(in srgb, var(--landing-accent) 52%, var(--landing-border));
    background: color-mix(in srgb, var(--landing-accent) 14%, var(--landing-surface-0));
}

.ix-scene-stage.is-active p {
    color: var(--landing-text-0);
}

.ix-scene-status {
    margin-top: 0.35rem;
    padding: 0.72rem 0.8rem;
    border: 1px solid color-mix(in srgb, var(--landing-border-strong) 80%, transparent);
    border-radius: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    color: var(--landing-text-1);
    background: color-mix(in srgb, var(--landing-surface-1) 86%, transparent);
}

.ix-workflow-scene-final {
    background: linear-gradient(145deg, color-mix(in srgb, var(--landing-surface-0) 92%, var(--landing-accent-soft)) 0%, color-mix(in srgb, var(--landing-surface-1) 94%, var(--landing-accent-soft)) 100%);
}

.ix-chip {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--landing-accent);
    border: 1px solid color-mix(in srgb, var(--landing-accent) 38%, var(--landing-border));
    border-radius: 999px;
    padding: 0.26rem 0.58rem;
    background: color-mix(in srgb, var(--landing-accent-soft) 58%, var(--landing-surface-0));
}

.ix-btn-final {
    font-size: 1.03rem;
    padding: 0.82rem 1.22rem;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1340px) {
    .ix-step {
        padding-right: 2.2rem;
        grid-template-columns: minmax(380px, 1fr) minmax(320px, 0.9fr);
    }

    .ix-progress-dot {
        min-width: 72px;
        font-size: 0.64rem;
        padding: 0.4rem 0.42rem;
    }
}

body.ix-fallback .ix-dock {
    display: none;
}

body.ix-fallback .ix-experience {
    height: auto;
    padding-top: 5.4rem;
    padding-bottom: 2rem;
}

body.ix-fallback .ix-sticky-shell {
    position: static;
    height: auto;
    overflow: visible;
    padding-top: 0;
}

body.ix-fallback .ix-track {
    display: block;
    height: auto;
}

body.ix-fallback .ix-step {
    min-width: 100%;
    grid-template-columns: 1fr;
    padding: 1.5rem 1.2rem;
    border-bottom: 1px solid color-mix(in srgb, var(--landing-border) 70%, transparent);
}

body.ix-fallback .ix-step h1,
body.ix-fallback .ix-step h2 {
    max-width: none;
}
