:root {
    --ink: #231f20;
    --purple: #7c00ff;
    --bg: #f7f6f3;
    --muted: #6d6769;
    --line: rgba(35, 31, 32, .12);
    --white: #fff;
    --wrap: min(1440px, calc(100vw - 64px));
    --radius: 26px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font: 16px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

img {
    display: block;
    max-width: 100%
}

button,
input,
textarea {
    font: inherit
}

::selection {
    background: var(--purple);
    color: #fff
}

.wrap {
    width: var(--wrap);
    margin: auto
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    transition: .25s
}

.header.scrolled {
    background: rgba(247, 246, 243, .84);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 30px
}

.brand img {
    width: 180px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--purple);
    color: #fff;
    border: 1px solid color-mix(var(--purple), white);
    font-weight: 700;
    transition: .2s;
    box-shadow: 0 10px 28px rgba(35, 31, 32, .1)
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(35, 31, 32, .16)
}

.hero {
    min-height: 900px;
    padding: 165px 0 105px;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    gap: 76px;
    align-items: center
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: rgba(255, 255, 255, .68);
    font-size: 14px;
    font-weight: 650;
    color: #625d5f
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 0 4px rgba(124, 0, 255, .11)
}

h1 {
    font-size: clamp(72px, 7vw, 110px);
    line-height: .9;
    letter-spacing: -.07em;
    margin: 30px 0 30px;
    max-width: 760px
}

.lead {
    font-size: 22px;
    line-height: 1.5;
    max-width: 640px;
    margin: 0;
    color: var(--muted)
}

.hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 38px;
    flex-wrap: wrap
}

.plain-link {
    font-weight: 700
}

.stage {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
    perspective: 1300px;
    isolation: isolate;
    --x: 0px;
    --y: 0px;
    --rx: 2deg;
    --ry: -5deg;
    --gx: 50%;
    --gy: 42%
}

.stage:before {
    content: "";
    position: absolute;
    width: min(760px, 85vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at var(--gx) var(--gy), rgba(124, 0, 255, .2), rgba(124, 0, 255, .07) 35%, transparent 70%);
    filter: blur(8px);
    z-index: -2;
    transform: translate(calc(var(--x)*-.3), calc(var(--y)*-.3))
}

.orbit {
    position: absolute;
    width: min(610px, 82%);
    aspect-ratio: 1;
    border: 1px solid rgba(124, 0, 255, .16);
    border-radius: 50%;
    animation: drift 8s ease-in-out infinite
}

.orbit:before,
.orbit:after {
    content: "";
    position: absolute;
    border-radius: 50%
}

.orbit:before {
    inset: 38px;
    border: 1px solid rgba(124, 0, 255, .11)
}

.orbit:after {
    inset: 80px;
    border: 1px dashed rgba(124, 0, 255, .2);
    animation: spin 22s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes drift {
    50% {
        transform: translateY(12px)
    }
}

.app-window {
    position: relative;
    width: min(720px, 100%);
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(35, 31, 32, .14);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 110px rgba(35, 31, 32, .16);
    backdrop-filter: blur(16px);
    transform: translate3d(var(--x), var(--y), 0) rotateY(var(--ry)) rotateX(var(--rx));
    transition: transform .15s ease-out, box-shadow .25s;
    will-change: transform
}

.app-window:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--gx) var(--gy), rgba(255, 255, 255, .68), transparent 29%);
    mix-blend-mode: screen
}

.window-bar {
    height: 54px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: #8b8587;
    font-size: 12px
}

.lights {
    display: flex;
    gap: 7px
}

.lights i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ded9db
}

.status {
    display: flex;
    gap: 7px;
    align-items: center
}

.status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #31b477
}

.app-shell {
    display: grid;
    grid-template-columns: 78px 1fr;
    min-height: 430px
}

.app-side {
    border-right: 1px solid var(--line);
    padding: 28px 17px;
    background: #faf9f7
}

.app-side img {
    width: 36px;
    margin: 0 auto 28px
}

.side-line {
    width: 34px;
    height: 5px;
    border-radius: 10px;
    background: #ddd8da;
    margin: 18px auto
}

.side-line.active {
    background: var(--purple)
}

.app-main {
    padding: 34px
}

.micro {
    font-size: 12px;
    letter-spacing: .1em;
    font-weight: 800;
    color: var(--purple)
}

.app-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 12px 0 28px;
    align-items: flex-start
}

.app-heading strong {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.045em
}

.app-heading small {
    display: block;
    font-size: 14px;
    color: #8e878a;
    margin-top: 6px
}

.ship {
    border: 0;
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    padding: 11px 14px;
    font-size: 12px
}

.app-cards {
    display: grid;
    grid-template-columns: 1.3fr .85fr;
    gap: 12px
}

.mini {
    min-height: 142px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.mini span {
    font-size: 12px;
    color: #928c8e
}

.mini strong {
    font-size: 20px;
    letter-spacing: -.03em
}

.bars {
    height: 48px;
    display: flex;
    align-items: end;
    gap: 5px
}

.bars i {
    width: 13px;
    border-radius: 5px 5px 2px 2px;
    background: #dac6ef
}

.bars i:nth-child(1) {
    height: 30%
}

.bars i:nth-child(2) {
    height: 50%
}

.bars i:nth-child(3) {
    height: 42%
}

.bars i:nth-child(4) {
    height: 70%;
    background: #b779f4
}

.bars i:nth-child(5) {
    height: 88%;
    background: var(--purple)
}

.toggle {
    display: flex;
    gap: 7px
}

.toggle i {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: #eee9eb
}

.toggle i:nth-child(2) {
    background: var(--purple)
}

.activity {
    margin-top: 12px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px
}

.activity b {
    display: flex;
    align-items: center;
    gap: 10px
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eee1ff;
    color: var(--purple);
    display: grid;
    place-items: center
}

.float-chip {
    position: absolute;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 48px rgba(35, 31, 32, .1);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(12px)
}

.chip-one {
    left: -6px;
    bottom: 105px;
    transform: translate(calc(var(--x)*-1.05), calc(var(--y)*-1.05))
}

.chip-two {
    right: -4px;
    top: 95px;
    transform: translate(calc(var(--x)*.9), calc(var(--y)*.9))
}

.platforms {
    border-block: 1px solid var(--line);
    padding: 6rem 0;
}

.platforms-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 34px
}

.eyebrow {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #7a7376
}

.platforms h2,
.simple h2,
.cta h2 {
    margin: 0;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -.055em
}

.platforms-head p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 18px
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, .55)
}

.platform {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    font-size: 18px;
    font-weight: 700
}

.platform+.platform {
    border-left: 1px solid var(--line)
}

.platform svg {
    width: 32px;
    height: 32px;
    display: block;
    flex: 0 0 auto
}

.simple {
    padding: 140px 0
}

.simple-inner {
    width: 100%
}

.simple-copy {
    width: 100%;
    max-width: none
}

.simple-copy p {
    font-size: 22px;
    line-height: 1.6;
    color: var(--muted);
    margin: 26px 0 0
}

.simple-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    margin-top: 2rem;
    width: 100%
}

.simple-row {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    min-width: 0
}

.simple-row+.simple-row {
    border-left: 1px solid var(--line)
}

.simple-row span:last-child {
    color: #8c8588
}

.cta {
    --cx: 82%;
    --cy: 70%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
    color: #fff;
    border-radius: 34px;
    padding: 74px;
    margin-top: clamp(88px, 10vw, 150px);
    margin-bottom: 58px;
    box-shadow: 0 32px 90px rgba(35, 31, 32, .16)
}

.cta:before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: radial-gradient(560px circle at var(--cx) var(--cy), rgba(124, 0, 255, .85), rgba(124, 0, 255, .28) 28%, transparent 68%);
    opacity: .38;
    transition: opacity .2s
}

.cta:hover:before {
    opacity: .9
}

.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .7fr);
    gap: 100px;
    align-items: center;
}

.cta .eyebrow {
    color: #c1b9bd
}

.cta p {
    font-size: 18px;
    line-height: 1.65;
    color: #c1b9bd;
    max-width: 620px;
    margin: 24px 0 0
}

.form {
    display: grid;
    gap: 26px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px
}

.form input,
.form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    background: transparent;
    color: #fff;
    outline: 0;
    border-radius: 0;
    padding: 15px 0;
    font-size: 16px
}

.form textarea {
    min-height: 145px;
    resize: vertical
}

.form input::placeholder,
.form textarea::placeholder {
    color: rgba(255, 255, 255, .58)
}

.form input:focus,
.form textarea:focus {
    border-bottom-color: var(--purple)
}

.submit {
    justify-self: start;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 2px 0;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer
}

.submit span {
    color: #c49aff;
    margin-left: 8px
}

.form-status {
    min-height: 1.55em;
    margin: -8px 0 0;
    font-size: 14px;
    color: #c1b9bd
}

.form-status[data-state="success"] {
    color: #d9ffc3
}

.form-status[data-state="error"] {
    color: #ffd2d2
}

.footer {
    min-height: 128px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: #878183
}

.footer img {
    width: 104px
}

.footer p:last-child {
    justify-self: end
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: .7s cubic-bezier(.2, .8, .2, 1)
}

.reveal.show {
    opacity: 1;
    transform: none
}

@media(max-width:1100px) {
    :root {
        --wrap: min(940px, calc(100vw - 40px))
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 145px
    }

    .hero-copy {
        max-width: 780px
    }

    .stage {
        min-height: 580px
    }

    .app-window {
        width: min(720px, 92vw)
    }

    .platforms-head,
    .simple-inner,
    .cta-grid {
        grid-template-columns: 1fr;
        display: grid;
        gap: 38px
    }

    .logo-grid {
        grid-template-columns: repeat(5, 1fr)
    }

    .platform {
        padding: 20px 12px
    }

    .cta-grid {
        gap: 54px
    }

    .form {
        max-width: 760px
    }

    .footer {
        grid-template-columns: 1fr auto
    }

    .footer p:nth-child(2) {
        display: none
    }
}

@media(max-width:760px) {
    :root {
        --wrap: calc(100vw - 3rem)
    }

    .nav {
        height: 76px
    }

    .brand img {
        width: 150px
    }

    .button {
        min-height: 46px;
        padding: 0 17px;
        font-size: 14px
    }

    .hero {
        min-height: auto;
        padding: 120px 0 72px;
        gap: 26px
    }

    .pill {
        font-size: 12px
    }

    .hero h1 {
        font-size: clamp(58px, 19vw, 78px);
        margin: 24px 0 22px
    }

    .lead {
        font-size: 18px;
        line-height: 1.55
    }

    .plain-link {
        display: none
    }

    .stage {
        min-height: auto;
        width: 100%;
        display: block;
        padding: 26px 0 10px;
        perspective: none
    }

    .stage:before {
        width: 120%;
        left: -10%;
        top: 0;
        opacity: .75
    }

    .orbit {
        width: 92%;
        left: 4%;
        top: 5%;
        opacity: .55
    }

    .app-window {
        width: 100%;
        transform: none !important;
        border-radius: 20px;
        box-shadow: none
    }

    .float-chip {
        display: none
    }

    .window-bar {
        height: 46px;
        padding: 0 14px;
        font-size: 10px
    }

    .app-shell {
        grid-template-columns: 52px 1fr;
        min-height: 320px
    }

    .app-side {
        padding: 18px 9px
    }

    .app-side img {
        width: 27px;
        margin-bottom: 20px
    }

    .side-line {
        width: 24px;
        margin: 14px auto;
        height: 4px
    }

    .app-main {
        padding: 18px 13px
    }

    .micro {
        font-size: 10px
    }

    .app-heading {
        margin: 9px 0 18px
    }

    .app-heading strong {
        font-size: 19px
    }

    .app-heading small {
        font-size: 11px
    }

    .ship {
        display: none
    }

    .app-cards {
        grid-template-columns: 1.25fr .75fr;
        gap: 8px
    }

    .mini {
        min-height: 105px;
        padding: 11px;
        border-radius: 12px
    }

    .mini span {
        font-size: 10px
    }

    .mini strong {
        font-size: 14px
    }

    .bars {
        height: 33px;
        gap: 3px
    }

    .bars i {
        width: 8px
    }

    .toggle i {
        width: 12px;
        height: 12px
    }

    .activity {
        padding: 10px;
        margin-top: 8px;
        border-radius: 12px;
        font-size: 10px
    }

    .avatar {
        width: 27px;
        height: 27px;
        border-radius: 8px
    }

    .platforms {
        padding: 38px 0
    }

    .platforms-head {
        margin-bottom: 24px
    }

    .platforms h2,
    .simple h2,
    .cta h2 {
        font-size: clamp(42px, 12vw, 56px)
    }

    .platforms-head p {
        font-size: 16px
    }

    .logo-grid {
        grid-template-columns: 1fr 1fr;
        border-radius: 20px
    }

    .platform {
        min-height: 102px;
        font-size: 15px;
        justify-content: flex-start
    }

    .platform+.platform {
        border-left: 0
    }

    .platform:nth-child(even) {
        border-left: 1px solid var(--line)
    }

    .platform:nth-child(n+3) {
        border-top: 1px solid var(--line)
    }

    .platform:last-child {
        grid-column: 1/-1;
        border-left: 0
    }

    .platform svg {
        width: 27px;
        height: 27px
    }

    .simple {
        padding: 92px 0
    }

    .simple-inner {
        gap: 42px
    }

    .simple-copy p {
        font-size: 18px
    }

    .simple-row {
        font-size: 16px;
        padding: 20px 0;
        border-left: 0
    }

    .simple-row+.simple-row {
        border-left: 0
    }

    .simple-list {
        grid-template-columns: 1fr
    }

    .cta {
        padding: 40px 25px;
        border-radius: 26px;
        margin-top: 72px;
        margin-bottom: 34px
    }

    .cta-grid {
        gap: 44px
    }

    .cta p {
        font-size: 16px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .form {
        gap: 20px
    }

    .footer {
        min-height: 0;
        padding: 26px 0;
        gap: 16px;
        display: flex;
        flex-direction:column;
        justify-content:center;
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
