:root {
    --black: #050608;
    --black-2: #0a0c10;
    --ink: #0c0d11;
    --paper: #eef0f4;
    --paper-2: #f7f8fa;
    --card: #ffffff;
    --muted: #6b7180;
    --blue: #2b6bff;
    --cyan: #28d6ff;
    --glow-blue: #0a3bff;
    --line: rgba(255, 255, 255, .10);
    --r: 30px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
html {
    scroll-behavior: smooth
}
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, .display {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -.02em;
}
a {
    color: inherit;
    text-decoration: none
}
.eyebrow {
    font-family: 'Space Grotesk', monospace;
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns:1fr auto 1fr;
    align-items: center;
    padding: 18px clamp(18px, 4vw, 46px);
    transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease);
}
.nav.scrolled {
    background: rgba(5, 6, 8, .28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding-top: 12px;
    padding-bottom: 12px;
}
.nav .brand {
    display: flex;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    padding: 11px;
    background: rgba(255, 255, 255, .10);
    transition: transform .5s var(--ease), background .3s;
}
.nav .brand:hover {
    transform: rotate(-8deg) scale(1.05);
    background: rgba(255, 255, 255, .18)
}
.nav .brand svg {
    width: 100%;
    height: 100%
}
.nav-links {
    display: flex;
    gap: 4px;
    justify-self: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    padding: 6px;
    backdrop-filter: blur(12px);
}
.nav-links a {
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 17px;
    border-radius: 999px;
    transition: color .25s, background .25s;
}
.nav-links a:hover {
    color: #fff
}
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, .12)
}
.nav .badge {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 999px;
}
.badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: pulse 2s infinite
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .45;
        transform: scale(.7)
    }
}
.nav-toggle {
    display: none;
    justify-self: end;
    grid-column: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 80;
    transition: background .3s, transform .3s var(--ease)
}
.nav-toggle:hover {
    background: rgba(255, 255, 255, .16)
}
.nav-toggle .bars {
    position: relative;
    width: 20px;
    height: 14px
}
.nav-toggle .bars span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .4s var(--ease), opacity .3s var(--ease)
}
.nav-toggle .bars span:nth-child(1) {
    top: 0
}
.nav-toggle .bars span:nth-child(2) {
    top: 6px
}
.nav-toggle .bars span:nth-child(3) {
    top: 12px
}
body.menu-open .nav-toggle .bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}
body.menu-open .nav-toggle .bars span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.4)
}
body.menu-open .nav-toggle .bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(5, 6, 8, .92);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 96px clamp(28px, 8vw, 56px) 48px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s
}
.mobile-menu::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -10%;
    width: min(560px, 120vw);
    height: min(560px, 120vw);
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(40, 120, 255, .4), rgba(40, 214, 255, .18) 40%, transparent 70%);
    filter: blur(40px)
}
body.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}
.mobile-menu a {
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(30px, 9vw, 46px);
    letter-spacing: -.02em;
    color: #fff;
    padding: 10px 0;
    display: flex;
    align-items: baseline;
    gap: 16px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s var(--ease), transform .5s var(--ease), color .25s
}
.mobile-menu a .mnum {
    font-family: 'Space Grotesk';
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--blue)
}
.mobile-menu a:hover, .mobile-menu a.active {
    color: var(--cyan)
}
body.menu-open .mobile-menu a {
    opacity: 1;
    transform: none
}
body.menu-open .mobile-menu a:nth-child(1) {
    transition-delay: .10s
}
body.menu-open .mobile-menu a:nth-child(2) {
    transition-delay: .16s
}
body.menu-open .mobile-menu a:nth-child(3) {
    transition-delay: .22s
}
body.menu-open .mobile-menu a:nth-child(4) {
    transition-delay: .28s
}
body.menu-open .mobile-menu a:nth-child(5) {
    transition-delay: .34s
}
.mobile-menu .mm-foot {
    margin-top: clamp(28px, 6vw, 46px);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s var(--ease) .42s, transform .5s var(--ease) .42s
}
body.menu-open .mobile-menu .mm-foot {
    opacity: 1;
    transform: none
}
.mobile-menu .mm-foot .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan)
}
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    border-radius: 0 0 44px 44px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 120px 22px 70px;
}
.hero .grain, .hero .glow, .hero .ring {
    pointer-events: none
}
.glow {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    width: min(680px, 90vw);
    height: min(680px, 90vw);
    background: radial-gradient(circle at 50% 50%,
    rgba(40, 120, 255, .85) 0%, rgba(40, 214, 255, .45) 38%, rgba(10, 30, 60, 0) 72%);
    filter: blur(60px);
    opacity: .9;
    animation: breathe 7s ease-in-out infinite;
}
.glow.b {
    width: min(420px, 60vw);
    height: min(420px, 60vw);
    top: 58%;
    background: radial-gradient(circle at 50% 50%, rgba(10, 59, 255, .7) 0%, rgba(10, 30, 60, 0) 70%);
    animation: drift 11s ease-in-out infinite;
    mix-blend-mode: screen;
}
@keyframes breathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .85
    }
    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 1
    }
}
@keyframes drift {
    0%, 100% {
        transform: translate(-58%, -50%) scale(1)
    }
    50% {
        transform: translate(-42%, -42%) scale(1.1)
    }
}
.ring {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border: 1px solid rgba(120, 180, 255, .10);
    border-radius: 50%;
    animation: spin 40s linear infinite;
}
.ring.b {
    width: 760px;
    height: 760px;
    border-color: rgba(120, 180, 255, .06);
    animation-duration: 60s;
    animation-direction: reverse
}
@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 760px
}
.wordmark {
    width: min(360px, 72vw);
    height: auto;
    filter: drop-shadow(0 8px 50px rgba(40, 150, 255, .45))
}
.wordmark path {
    stroke-width: 9;
    stroke-linejoin: round;
    stroke-linecap: round;
    paint-order: stroke fill
}
.reveal {
    opacity: 1;
    transform: none
}
html.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s var(--ease), transform .9s var(--ease)
}
html.js .reveal.in {
    opacity: 1;
    transform: none
}
.d1 {
    transition-delay: .15s
}
.d2 {
    transition-delay: .3s
}
.d3 {
    transition-delay: .45s
}
.d4 {
    transition-delay: .6s
}
.d5 {
    transition-delay: .75s
}
.tagline {
    font-size: clamp(26px, 4.4vw, 40px);
    font-weight: 600;
    letter-spacing: -.02em
}
.tagline em {
    font-style: normal;
    background: linear-gradient(100deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}
.wave {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 46px
}
.wave span {
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(var(--cyan), var(--blue));
    animation: eq 1.1s ease-in-out infinite;
    transform-origin: center
}
@keyframes eq {
    0%, 100% {
        height: 8px;
        opacity: .5
    }
    50% {
        height: 42px;
        opacity: 1
    }
}
.platforms-row {
    display: flex;
    gap: 34px;
    align-items: center;
    color: rgba(255, 255, 255, .62)
}
.platforms-row svg {
    width: 26px;
    height: 26px;
    transition: color .3s, transform .3s
}
.platforms-row a:hover svg {
    color: #fff;
    transform: translateY(-4px) scale(1.12)
}
.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 26px;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s;
    font-family: 'Inter'
}
.btn svg {
    width: 1em;
    height: 1em
}
.btn-primary {
    background: #fff;
    color: #0a0b0e
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(40, 150, 255, .35)
}
.btn-primary:hover svg {
    animation: bob .7s infinite
}
@keyframes bob {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(4px)
    }
}
.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .14)
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-3px)
}
.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: max-content;
    z-index: 3;
    color: rgba(255, 255, 255, .4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .2em
}
.scroll-hint .mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: 12px;
    position: relative
}
.scroll-hint .mouse::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 6px;
    width: 3px;
    height: 7px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .6);
    transform: translateX(-50%);
    animation: scrolldot 1.6s infinite
}
@keyframes scrolldot {
    0% {
        opacity: 0;
        top: 6px
    }
    40% {
        opacity: 1
    }
    80% {
        opacity: 0;
        top: 18px
    }
    100% {
        opacity: 0
    }
}
.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 32px)
}
.section {
    padding: clamp(56px, 9vw, 110px) 0
}
.sec-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 36px
}
.sec-head .num {
    font-family: 'Space Grotesk';
    font-size: 13px;
    color: var(--blue);
    font-weight: 600;
    letter-spacing: .1em
}
.feature-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 26px
}
.fcard {
    position: relative;
    background: var(--card);
    border-radius: var(--r);
    padding: clamp(30px, 4vw, 52px);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 24px 50px -28px rgba(16, 24, 40, .28);
    border: 1px solid rgba(16, 24, 40, .04);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.fcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 40px 70px -30px rgba(40, 90, 200, .4)
}
.fcard::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--r);
    padding: 1px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .5s
}
.fcard:hover::before {
    opacity: 1
}
.fcard .ftag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Space Grotesk';
    font-weight: 600;
    font-size: 13px;
    color: var(--blue);
    margin-bottom: 20px
}
.fcard .ftag .ico {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff
}
.fcard .ftag .ico svg {
    width: 17px;
    height: 17px
}
.fcard p {
    font-family: 'Space Grotesk';
    font-weight: 600;
    font-size: clamp(21px, 2.4vw, 28px);
    line-height: 1.35;
    letter-spacing: -.01em
}
.fcard .num-watermark {
    position: absolute;
    right: 24px;
    bottom: 8px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 120px;
    line-height: 1;
    color: rgba(16, 24, 40, .035)
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--card);
    border: 1px solid rgba(16, 24, 40, .06);
    border-radius: 999px;
    padding: 15px 26px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 26px -18px rgba(16, 24, 40, .4);
    transition: transform .35s var(--ease), box-shadow .35s, color .3s
}
.chip svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
    transition: transform .35s
}
.chip:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px -22px rgba(40, 90, 200, .55)
}
.chip:hover svg {
    transform: scale(1.2)
}
.plat-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    background: var(--card);
    border: 1px solid rgba(16, 24, 40, .05);
    border-radius: var(--r);
    padding: 24px clamp(24px, 4vw, 42px);
    box-shadow: 0 24px 50px -34px rgba(16, 24, 40, .3)
}
.plat-strip .lbl {
    font-family: 'Space Grotesk';
    font-weight: 600;
    color: var(--muted);
    font-size: 15px
}
.plat-lead {
    display: flex;
    flex-direction: column;
    gap: 5px
}
.plat-lead .lbl {
    color: var(--ink);
    font-size: 17px
}
.plat-lead .plat-sub {
    font-size: 14px;
    color: var(--muted)
}
.plat-pills {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}
.ppill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--paper-2);
    font-weight: 600;
    transition: transform .3s var(--ease), background .3s, color .3s
}
.ppill svg {
    width: 19px;
    height: 19px
}
.ppill:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-4px)
}
.foot {
    position: relative;
    background: var(--black);
    color: #fff;
    border-radius: 44px 44px 0 0;
    overflow: hidden;
    padding: clamp(70px, 11vw, 130px) 22px clamp(40px, 6vw, 70px);
    margin-top: clamp(40px, 7vw, 90px)
}
.foot .glow {
    top: 24%;
    opacity: .55
}
.foot-inner {
    position: relative;
    z-index: 2;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px
}
.foot .wordmark {
    width: 170px;
    filter: drop-shadow(0 6px 30px rgba(40, 150, 255, .4))
}
.foot h2 {
    font-size: clamp(26px, 4.4vw, 38px);
    font-weight: 600;
    line-height: 1.25
}
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left
}
.field label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    margin: 0 0 7px 16px;
    font-weight: 500
}
.field input, .field select {
    width: 100%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
    border-radius: 999px;
    padding: 15px 22px;
    font-size: 15px;
    font-family: 'Inter';
    outline: none;
    transition: border-color .3s, background .3s, box-shadow .3s
}
.field input::placeholder {
    color: rgba(255, 255, 255, .35)
}
.field input:focus, .field select:focus {
    border-color: var(--cyan);
    background: rgba(255, 255, 255, .11);
    box-shadow: 0 0 0 4px rgba(40, 214, 255, .12)
}
.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
    background-size: 18px;
    cursor: pointer
}
.field select option {
    background: #0c0d11
}
.send {
    justify-content: center;
    margin-top: 6px;
    position: relative;
    overflow: hidden
}
.send > * {
    transition: opacity .3s, transform .3s
}
.send .spinner, .send .check {
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    pointer-events: none
}
.send .spinner {
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border-radius: 50%;
    border: 2.5px solid rgba(10, 11, 14, .25);
    border-top-color: #0a0b0e;
    transform: translate(0, 0) rotate(0deg)
}
.send .check {
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    color: #0a0b0e
}
.send .check path {
    stroke-dasharray: 30;
    stroke-dashoffset: 30
}
.send.is-sending {
    pointer-events: none
}
.send.is-sending .label, .send.is-sending .icon {
    opacity: 0;
    transform: translateY(-6px)
}
.send.is-sending .spinner {
    opacity: 1;
    animation: spin360 .7s linear infinite
}
.send.is-sent {
    background: linear-gradient(100deg, var(--cyan), var(--blue));
    color: #fff;
    pointer-events: none
}
.send.is-sent .label {
    opacity: 1;
    transform: none
}
.send.is-sent .icon {
    display: none
}
.send.is-sent .spinner {
    opacity: 0
}
.send.is-sent .check {
    position: static;
    width: 18px;
    height: 18px;
    margin: 0;
    opacity: 1;
    color: #fff;
    animation: checkPop .4s var(--ease)
}
.send.is-sent .check path {
    animation: checkDraw .5s var(--ease) .1s forwards
}
@keyframes spin360 {
    to {
        transform: rotate(360deg)
    }
}
@keyframes checkPop {
    0% {
        transform: scale(.4)
    }
    60% {
        transform: scale(1.15)
    }
    100% {
        transform: scale(1)
    }
}
@keyframes checkDraw {
    to {
        stroke-dashoffset: 0
    }
}
.foot .copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    margin-top: 10px
}

.ks-logo {
    display: inline-flex;
    vertical-align: middle;
    line-height: 0;
    opacity: .7;
    transition: opacity .25s var(--ease), transform .35s var(--ease)
}

.ks-logo svg {
    width: auto;
    height: 1.5em;
    display: block
}

.ks-logo:hover {
    opacity: 1;
    transform: scale(1.04)
}

.mobile-menu .mm-foot .ks-logo svg {
    height: 1.3em
}
.slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    background: var(--card);
    border: 1px solid rgba(16, 24, 40, .05);
    box-shadow: 0 30px 60px -36px rgba(16, 24, 40, .3)
}
.slides {
    display: flex;
    transition: transform .7s var(--ease)
}
.slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 6vw, 78px);
    padding: clamp(28px, 5vw, 56px) clamp(34px, 7vw, 84px)
}
.phone {
    position: relative;
    flex: 0 0 auto;
    width: clamp(210px, 24vw, 270px);
    aspect-ratio: 9/19.2;
    background: #070809;
    border-radius: 38px;
    padding: 10px;
    box-shadow: 0 50px 90px -34px rgba(16, 40, 90, .55), inset 0 0 0 2px rgba(255, 255, 255, .05);
    transition: transform .6s var(--ease)
}
.slide.active .phone {
    animation: phoneIn .8s var(--ease)
}
@keyframes phoneIn {
    0% {
        transform: translateY(26px) scale(.96);
        opacity: .4
    }
    100% {
        transform: none;
        opacity: 1
    }
}
.phone-screen {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    object-fit: cover;
    object-position: top center;
    background: linear-gradient(160deg, #0e1722, #0a0f17)
}
.slide-cap {
    flex: 1;
    max-width: 430px;
    text-align: left
}
.slide-cap .scount {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .12em;
    color: var(--blue)
}
.slide-cap h3 {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 600;
    margin: 12px 0 16px;
    letter-spacing: -.02em
}
.slide-cap p {
    color: var(--muted);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.62
}
html.js .slide .slide-cap > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s var(--ease), transform .6s var(--ease)
}
html.js .slide.active .slide-cap > * {
    opacity: 1;
    transform: none
}
html.js .slide.active .slide-cap > *:nth-child(2) {
    transition-delay: .12s
}
html.js .slide.active .slide-cap > *:nth-child(3) {
    transition-delay: .24s
}
.s-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(16, 24, 40, .08);
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: 0 12px 30px -14px rgba(16, 24, 40, .45);
    transition: transform .3s var(--ease), background .3s
}
.s-arrow svg {
    width: 20px;
    height: 20px
}
.s-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1)
}
.s-arrow.prev {
    left: 14px
}
.s-arrow.next {
    right: 14px
}
.dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 24px
}
.dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: rgba(16, 24, 40, .16);
    transition: all .35s var(--ease)
}
.dots button.on {
    width: 30px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--blue), var(--cyan))
}
@media (max-width: 760px) {
    .slide {
        flex-direction: column;
        text-align: center
    }
    .slide-cap {
        text-align: center
    }
    .s-arrow {
        width: 42px;
        height: 42px
    }
    .nav-links {
        display: none
    }
    .nav .badge {
        display: none
    }
    .nav-toggle {
        display: flex
    }
    .feature-grid {
        grid-template-columns:1fr
    }
    .plat-strip {
        flex-direction: column;
        align-items: flex-start
    }
    .ring {
        display: none
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001s !important;
        animation-iteration-count: 1 !important
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important
    }
}

/* reCAPTCHA v3 badge hidden; disclosure text shown in the waitlist form instead */
.grecaptcha-badge {
    visibility: hidden
}
