*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

input,
textarea {
    user-select: text;
}

:root {
    --bg: #121214;
    --sur: #1c1c1f;
    --sur2: #252529;
    --bdr: #323236;
    --bdr2: #424248;
    --txt: #f0f0f4;
    --txt2: #a0a0ab;
    --txt3: #6a6a75;
    --acc: #cccce0;
    --dim: #70707a;
    --r: 8px;
}

html,
body {
    width: 100%;
    height: 100%;
    height: 100dvh;
    overflow: hidden;
    background: var(--bg);
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--txt);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 160px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 600;
    height: 56px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--bdr);
    background: rgba(18, 18, 20, 0.2);
    backdrop-filter: blur(10px);
}

.ni {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-img {
    height: 35px;
    width: auto;
    opacity: 0.5;
}

.logo-sep {
    color: var(--txt3);
    font-family: 'DM Mono', monospace;
    font-weight: 300;
    margin: 0 -5px;
}

.logo-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--txt2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nl {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nl a {
    color: var(--txt2);
    font-size: 13px;
    transition: color .2s;
}

.nl a:hover {
    color: var(--txt);
}

.na {
    font-size: 12px;
    color: var(--txt2);
    padding: 6px 14px;
    border: 1px solid var(--bdr2);
    border-radius: 6px;
    transition: all .2s;
}

.na:hover {
    color: var(--txt);
    border-color: var(--dim);
    background: var(--sur2);
}

#wrapper {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

#track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.sec {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
}

.s1 {
    background: var(--bg);
    overflow: hidden;
}

.s-why {
    background: #131315;
}

.s2 {
    background: #151517;
}

.s3 {
    background: #111113;
}

.s4 {
    background: #161618;
}

.s5 {
    background: #101012;
}

.s1-grid {
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    pointer-events: none;
    background-image:
        linear-gradient(var(--bdr) 1px, transparent 1px),
        linear-gradient(90deg, var(--bdr) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 0;
}

.w {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

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

.s1-inner {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: center;
}

.hero {
    max-width: 480px;
}

.htag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 11px;
    color: var(--txt3);
    font-family: 'DM Mono', monospace;
    letter-spacing: .15em;
    border: 1px solid var(--bdr);
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--sur);
}

.hero h1 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 300;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: var(--txt);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--txt3);
}

.hero p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--txt2);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 300;
}

.btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--bdr2);
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}

.bp {
    background: #111113;
    color: var(--txt);
}

.bp:hover {
    background: var(--bdr);
    border-color: var(--dim);
}

.bg {
    background: #111113;
    color: var(--txt2);
}

.bg:hover {
    color: var(--txt);
    border-color: var(--dim);
    background: rgba(255, 255, 255, 0.02);
}

.s1-canvas-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-mockup {
    width: 360px;
    height: 420px;
    background: var(--sur);
    border: 1px solid var(--bdr);
    border-radius: var(--r);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bm-header {
    height: 32px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.bm-dots {
    display: flex;
    gap: 6px;
}

.bm-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bdr2);
}

.bm-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ac-line {
    height: 12px;
    background: var(--bdr2);
    border-radius: 4px;
    margin-bottom: 16px;
    width: 100%;
}

.ac-line.short {
    width: 40%;
    background: var(--txt3);
    margin-bottom: 30px;
}

.bm-cards {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.bm-card {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bdr);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.bm-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--txt);
    margin-bottom: 16px;
    opacity: 0.6;
    letter-spacing: -0.01em;
    transition: opacity 0.4s ease-in-out;
}

.bm-title.fade-out {
    opacity: 0;
}

.bm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
    opacity: 0.5;
}

.bm-img.fade-out {
    opacity: 0;
}

.bm-btn {
    width: 100px;
    height: 24px;
    background: var(--sur2);
    border-radius: 4px;
}

.why-story {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--sur);
    border-radius: var(--r);
    padding: 40px;
    border: 1px solid var(--bdr);
}

.why-bad,
.why-good {
    flex: 1;
}

.why-bad h3,
.why-good h3 {
    font-size: 16px;
    color: var(--txt);
    margin-bottom: 12px;
    font-weight: 500;
}

.why-bad p,
.why-good p {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.6;
}

.why-bad p strong,
.why-good p strong {
    color: var(--txt);
    font-weight: 500;
}

.why-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sur2);
    color: var(--txt);
    flex-shrink: 0;
    padding: 8px;
}

.lbl {
    font-size: 10px;
    font-weight: 500;
    color: var(--txt3);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-family: 'DM Mono', monospace;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lbl::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--bdr) 0%, transparent 80%);
}

.sh {
    font-size: clamp(24px, 3.5vw, 36px);
    /* font-weight: 300; */
    letter-spacing: -.03em;
    margin-bottom: 12px;
    color: var(--txt);

    background: linear-gradient(to top right, #E73032 0%, #7713B4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.ss {
    font-size: 14px;
    color: var(--txt2);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--bdr);
    border-radius: var(--r);
    overflow: hidden;
}

.stat {
    padding: 40px 24px;
    background: var(--sur);
    border-right: 1px solid var(--bdr);
}

.stat-bg2 {
    background-color: #1c1c1f8f;
}

.stat:last-child {
    border-right: none;
    background-color: #1c1c1f8f;
}

.stat:first-child {
    background-color: #1c1c1f8f;
}

.stat-n {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 300;
    color: var(--txt);
    margin-bottom: 8px;
    font-family: 'DM Mono', monospace;
}

.stat-l {
    font-size: 12px;
    color: var(--txt2);
}

.plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.plan {
    background: var(--sur);
    border: 1px solid var(--bdr);
    border-radius: var(--r);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all .2s;
    position: relative;
}

.plan.pop {
    background: var(--sur2);
    border-color: var(--bdr2);
}

.ptag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border: 1px solid var(--bdr2);
    font-size: 10px;
    color: var(--txt);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pn {
    font-size: 18px;
    font-weight: 500;
    color: var(--txt);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.plan-desc {
    margin-top: -12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--txt3);
    padding-left: 12px;
    border-left: 2px solid var(--bdr2);
    font-weight: 400;
    line-height: 1.5;
}

.pp {
    font-size: 32px;
    font-weight: 300;
    color: var(--txt);
    font-family: 'DM Mono', monospace;
    margin-bottom: 24px;
}

.pp sub {
    font-size: 12px;
    color: var(--txt3);
}

.pf {
    margin-bottom: 32px;
    flex: 1;
    text-align: left;
}

.pf li {
    font-size: 13px;
    color: var(--txt2);
    padding: 10px 0;
    border-bottom: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.pf li::before {
    content: '—';
    color: var(--txt3);
    font-size: 10px;
}

.pf li:last-child {
    border-bottom: none;
}

strong {
    color: var(--txt);
    font-weight: 500;
}

.edit-policy {
    margin-top: 100px;
    margin-bottom: 20%;
    padding: 32px;
    border-radius: var(--r);
    background: var(--sur);
    border: 1px solid var(--bdr);
}

.edit-policy .sh {
    margin-top: 0;
    font-size: clamp(20px, 2.5vw, 24px);
    margin-bottom: 12px;
}

.edit-policy .ss {
    margin-bottom: 24px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.policy-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: var(--r);
    border: 1px solid var(--bdr);
    transition: background 0.2s;
}

.policy-card:hover {
    background: var(--sur2);
}

.policy-card-title {
    color: var(--txt);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-card-desc {
    color: var(--txt2);
    font-size: 13px;
    line-height: 1.6;
}

.feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bdr);
    border: 1px solid var(--bdr);
    border-radius: var(--r);
    overflow: hidden;
}

.feat {
    background: var(--sur);
    padding: 32px 24px;
    transition: background .2s;
}

.feat:hover {
    background: var(--sur2);
}

.fic {
    font-size: 20px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.6;
}

.feat h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--txt);
}

.feat p {
    font-size: 12px;
    color: var(--txt2);
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 24px;
    border-top: 1px solid var(--bdr);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--txt3);
    background-image: radial-gradient(#101012, #101012db);
}

.footer-bottom a {
    color: var(--txt2);
    transition: color .2s;
}

.footer-bottom a:hover {
    color: var(--txt);
}

@media (max-width: 900px) {
    .s1-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        max-width: 100%;
    }

    .s1-canvas-wrap {
        display: none;
    }

    .btns {
        justify-content: center;
    }

    .plans {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--bdr);
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid var(--bdr);
    }

    .stat:nth-child(1),
    .stat:nth-child(3) {
        border-right: 1px solid var(--bdr);
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;
    }

    .feats {
        grid-template-columns: 1fr;
    }

    .nl {
        display: none;
    }

    .why-story {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 24px;
    }

    .why-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
}

.si {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.si>.w {
    margin: auto;
    width: 100%;
    max-width: 1040px;
}

.si::-webkit-scrollbar {
    display: none;
}

#ndots {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 700;
    align-items: center;
}

#ndots-labels {
    position: fixed;
    right: 44px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 699;
    pointer-events: none;
}

.nd-label-item {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nd-label-item span {
    font-size: 11px;
    color: var(--txt3);
    background: var(--sur);
    border: 1px solid transparent;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'DM Mono', monospace;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s, color .2s, border-color .2s;
}

.nd-label-item span.current {
    color: var(--txt);
    border-color: var(--bdr2);
    opacity: 1;
}

#ndots:hover~#ndots-labels .nd-label-item span,
#ndots-labels:hover .nd-label-item span {
    opacity: 1;
}

.nd {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bdr2);
    cursor: pointer;
    transition: all .3s;
}

.nd:hover {
    background: var(--txt2);
}

.nd.on {
    background: var(--txt);
    transform: scale(1.4);
}

.burger {
    width: 38px;
    height: 38px;
    border: 1px solid var(--bdr);
    border-radius: 6px;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: border-color .2s;
}

.burger span {
    width: 18px;
    height: 2px;
    background: var(--txt2);
    transition: all .2s;
}

.burger:hover {
    border-color: var(--dim);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 800;
    pointer-events: none;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-menu.open {
    pointer-events: auto;
}

.mobile-menu.open::before {
    opacity: 1;
}

.mm-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--bg);
    border-left: 1px solid var(--bdr);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-menu.open .mm-panel {
    transform: translateX(0);
}

.mm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mm-title {
    font-size: 14px;
    color: var(--txt3);
    font-family: 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.mm-close {
    font-size: 20px;
    color: var(--txt2);
    cursor: pointer;
    transition: color .2s;
}

.mm-close:hover {
    color: var(--txt);
}

.mm-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.mm-link {
    font-size: 16px;
    color: var(--txt2);
    font-weight: 300;
    transition: color .2s, background .2s;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
}

.mm-link:hover {
    color: var(--txt);
    background: var(--sur);
}

.mm-link.mm-active {
    color: var(--txt);
    background: var(--sur2);
}

.mm-link svg {
    opacity: 0.5;
    flex-shrink: 0;
}

.mm-link:hover svg {
    opacity: 1;
}

.mm-contact-wrap {
    padding-top: 20px;
    border-top: 1px solid var(--bdr);
}

@media (max-width: 900px) {
    .burger {
        display: flex;
    }

    .na {
        display: none;
    }

    #ndots,
    #ndots-labels {
        display: none;
    }
}

.s5 .si {
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
}

.s5 .w {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    height: 100%;
}

.s5 .final-cta {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.s5 .footer-bottom {
    margin-top: 0;
    padding: 20px 0;
}


.sec {
    position: relative;
    z-index: 1;
}

.corner-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corner-decor.tl {
    top: -30px;
    left: -30px;
}

.corner-decor.tr {
    top: -30px;
    right: -30px;
}

.corner-decor.bl {
    bottom: -30px;
    left: -30px;
}

.corner-decor.br {
    bottom: -30px;
    right: -30px;
}

.corner-icon {
    font-size: 80px !important;
    font-variation-settings: 'wght' 100, 'opsz' 48;
    color: var(--txt2);
    opacity: 0.4;
    animation: floating 12s ease-in-out infinite;
    z-index: 2;
}

.ripple-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ripple {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 0.5px solid var(--bdr2);
    border-radius: 50%;
    opacity: 0;
    animation: ripple-wave 12s cubic-bezier(0.2, 0, 0.4, 1) infinite;
}

.ripple:nth-child(2) {
    animation-delay: 2s;
}

.ripple:nth-child(3) {
    animation-delay: 4s;
}

.ripple:nth-child(4) {
    animation-delay: 6s;
}

@keyframes floating {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(8px, 5px) rotate(2deg);
    }

    66% {
        transform: translate(-5px, 8px) rotate(-1deg);
    }
}

@keyframes ripple-wave {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    5% {
        opacity: 0.3;
    }

    100% {
        transform: scale(8);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .corner-decor {
        width: 200px;
        height: 200px;
    }

    .corner-icon {
        font-size: 100px !important;
    }
}