:root {
    --ink: #101827;
    --muted: #667085;
    --line: #e5e9ef;
    --paper: #fff;
    --soft: #f6f8fb;
    --accent: #246bfe;
    --green: #1f9d6a
}

* {
    box-sizing: border-box
}

.p-5 {
    padding: 10px;
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

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

.site-head {
    height: 76px;
    max-width: 1180px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 34px;
    border-bottom: 1px solid var(--line)
}

.logo {
    font-weight: 800;
    letter-spacing: -.03em;
    display: flex;
    align-items: center;
    gap: 10px
}

.logo img {
    width: 180px;
    height: auto;
    transition: ease-in .20s;
}

html[data-theme="dark"] {
    #logo {
        filter: brightness(100%);
    }

}

#logo {
    filter: brightness(0%);
}

.site-head nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
    color: #475467;
    font-size: 14px
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--line)
}

.button.primary {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.button.ghost {
    background: #fff
}

.hero {
    max-width: 1180px;
    margin: auto;
    padding: 90px 24px 110px;
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: 68px;
    align-items: center
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent)
}

h1 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.06em;
    margin: 18px 0 26px
}

h1 em {
    font-style: normal;
    color: #8a94a6
}

.hero-copy > p, .section > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 650px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 32px 0
}

.text-link {
    font-weight: 700;
    font-size: 14px
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    color: #667085;
    font-size: 12px
}

.product-shot {
    background: linear-gradient(145deg, #edf3ff, #f8f9fc);
    padding: 22px;
    border-radius: 28px;
    box-shadow: 0 30px 80px #18243b1a
}

.window {
    background: #fff;
    border: 1px solid #e1e6ee;
    border-radius: 16px;
    overflow: hidden
}

.window-top {
    height: 42px;
    border-bottom: 1px solid #edf0f4;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    color: #98a2b3;
    font-size: 10px
}

.window-top i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d5dae2
}

.window-top b {
    margin-left: auto;
    margin-right: auto
}

.mock {
    display: grid;
    grid-template-columns:120px 1fr;
    min-height: 350px
}

.mock aside {
    background: #101827;
    color: #8f9bad;
    padding: 24px 14px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 10px
}

.mock aside strong {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px
}

.mock aside .on {
    background: #ffffff14;
    color: #fff;
    padding: 9px;
    border-radius: 7px
}

.mock-main {
    padding: 30px
}

.mock-main small {
    font-size: 8px;
    color: #98a2b3;
    letter-spacing: .1em
}

.mock-main h3 {
    font-size: 20px;
    margin: 5px 0 24px
}

.metrics {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px
}

.metrics article {
    border: 1px solid #edf0f4;
    border-radius: 10px;
    padding: 12px
}

.metrics b {
    display: block;
    font-size: 17px;
    margin: 7px 0
}

.metrics span {
    font-size: 7px;
    color: #98a2b3
}

.chart {
    margin-top: 16px;
    border: 1px solid #edf0f4;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    justify-content: space-between
}

.chart b {
    display: block;
    font-size: 12px
}

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

.bars i {
    display: block;
    width: 9px;
    background: #b8c9f5;
    border-radius: 3px 3px 0 0
}

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

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

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

.bars i:nth-child(4) {
    height: 68%
}

.bars i:nth-child(5) {
    height: 58%
}

.bars i:nth-child(6) {
    height: 82%
}

.bars i:nth-child(7) {
    height: 100%;
    background: #246bfe
}

.section {
    max-width: 1180px;
    margin: auto;
    padding: 100px 24px
}

.intro {
    text-align: center
}

.intro p {
    margin: 0 auto
}

.section h2 {
    font-size: clamp(36px, 5vw, 58px);
    letter-spacing: -.05em;
    line-height: 1.05;
    margin: 15px 0 22px
}

.feature-grid {
    max-width: 1180px;
    margin: auto;
    padding: 0 24px 100px;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    border-top: 1px solid var(--line)
}

.feature-grid article {
    padding: 36px 30px 44px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.feature-grid article:nth-child(3n) {
    border-right: 0
}

.feature-grid span {
    font-size: 11px;
    color: #98a2b3
}

.feature-grid h3 {
    font-size: 22px;
    margin: 30px 0 12px
}

.feature-grid p {
    color: var(--muted);
    line-height: 1.7
}

.split {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    background: var(--soft);
    max-width: none;
    padding-left: max(24px, calc((100vw - 1132px) / 2));
    padding-right: max(24px, calc((100vw - 1132px) / 2))
}

.split p {
    color: var(--muted);
    line-height: 1.8
}

.mini-list {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 25px
}

.mini-list span {
    background: #fff;
    border: 1px solid var(--line);
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px
}

.plans {
    text-align: center
}

.plan-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 48px;
    text-align: left
}

.plan {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    background: #fff
}

.plan.featured {
    border-color: #a9c2ff;
    box-shadow: 0 20px 50px #246bfe14
}

.popular {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #edf3ff;
    color: #246bfe;
    padding: 5px 8px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800
}

.plan h3 {
    font-size: 22px
}

.plan > p {
    color: var(--muted);
    min-height: 48px
}

.plan p {
    font-size: 14px
}


.price {
    margin-top: 28px
}

.price b {
    font-size: 30px;
    letter-spacing: -.04em
}

.price span, .plan > small {
    color: var(--muted);
    font-size: 12px
}

.plan ul {
    list-style: none;
    padding: 18px 0;
    margin: 18px 0;
    border-top: 1px solid var(--line)
}

.plan li {
    padding: 7px 0;
    font-size: 13px
}

.plan li.off {
    color: #a1a9b7
}

.plan .button {
    width: 100%
}

.apply {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: start
}

.apply form {
    background: var(--soft);
    padding: 30px;
    border-radius: 20px
}

.apply label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px
}

.apply label span {
    font-weight: 400;
    color: var(--muted)
}

.apply input {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 13px;
    border: 1px solid #dce1e8;
    border-radius: 10px;
    background: #fff;
    font: inherit
}

.apply button {
    width: 100%;
    border: 0;
    cursor: pointer
}

.apply form > small {
    display: block;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.5
}

.notice {
    padding: 12px;
    border-radius: 9px;
    background: #fff0f0;
    color: #a61b1b;
    margin-bottom: 16px;
    font-size: 13px
}

.notice.success {
    background: #eafaf2;
    color: #17633f
}

.hp {
    position: absolute !important;
    left: -9999px !important
}

footer {
    max-width: 100%;
    margin: auto;
    border-top: 1px solid var(--line);
    padding: 30px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--muted);
    font-size: 12px

}

footer .year {
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
footer .year .name {
    color: var(--ink);
    font-weight: normal;
}

footer .year a {
    color: var(--ink);
    font-weight: normal;
}

footer .all-right {
    margin-left: auto
}

@media (max-width: 800px) {
    .site-head nav {
        display: none
    }

    .hero, .split, .apply {
        grid-template-columns:1fr
    }

    .hero {
        padding-top: 60px
    }

    .product-shot {
        padding: 10px
    }

    .mock {
        grid-template-columns:85px 1fr
    }

    .mock-main {
        padding: 18px
    }

    .metrics {
        grid-template-columns:1fr
    }

    .metrics article:nth-child(n+2) {
        display: none
    }

    .feature-grid {
        grid-template-columns:1fr
    }

    .feature-grid article {
        border-right: 0
    }

    .plan-grid {
        grid-template-columns:1fr
    }

    .site-head > .button {
        display: none
    }

    footer {
        display: block;
        text-align: center;
        padding: 20px 50px;
    }

    footer .year {
        display: block;
    }

    footer .year .dot {
        display: none;
    }

    footer p {
        margin-left: 0
    }

}


/* Landing navigation, themes and application feedback */
:root {
    --head-bg: rgba(255, 255, 255, .88);
    --card: #fff;
    --field: #fff;
    --nav-text: #475467;
    --shadow: rgba(16, 24, 39, .10);
}


html[data-theme="dark"] {
    --ink: #f5f7fb;
    --muted: #aab4c3;
    --line: #293445;
    --paper: #0d1420;
    --soft: #121c2a;
    --accent: #78a2ff;
    --green: #55c995;
    --head-bg: rgba(13, 20, 32, .88);
    --card: #121c2a;
    --field: #101927;
    --nav-text: #c2cad6;
    --shadow: rgba(0, 0, 0, .32);
    color-scheme: dark;
}

body {
    transition: background-color .25s ease, color .25s ease
}

.site-head {
    position: sticky;
    top: 0;
    z-index: 50;
    max-width: none;
    padding-left: max(24px, calc((100vw - 1132px) / 2));
    padding-right: max(24px, calc((100vw - 1132px) / 2));
    background: var(--head-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-head nav {
    color: var(--nav-text)
}

.head-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.theme-toggle, .menu-toggle, .menu-close {
    appearance: none;
    border: 1px solid var(--line);
    background: var(--card);
    color: var(--ink);
    cursor: pointer;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 17px
}

.theme-toggle .theme-moon {
    display: none
}

html[data-theme="dark"] .theme-toggle .theme-sun {
    display: none
}

html[data-theme="dark"] .theme-toggle .theme-moon {
    display: inline
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 42px;
    border-radius: 11px;
    padding: 10px
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
    margin: 4px 0;
    border-radius: 99px
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 16, .48);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 70
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(70vw, 260px);
    background: var(--paper);
    z-index: 80;
    padding: 22px;
    transform: translateX(105%);
    transition: transform .32s cubic-bezier(.2, .7, .2, 1);
    box-shadow: -24px 0 60px rgba(0, 0, 0, .18);
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    transform: none
}

.menu-backdrop.is-open {
    opacity: 1;
    visibility: visible
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line)
}

.menu-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 25px;
    line-height: 1
}

.mobile-menu nav {
    display: grid;
    padding: 22px 0
}

.mobile-menu nav a {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 700
}

.mobile-signin {
    margin-top: auto
}

.menu-open {
    overflow: hidden
}

html[data-theme="dark"] .button.primary {
    background: #f5f7fb;
    color: #101827;
    border-color: #f5f7fb
}

html[data-theme="dark"] .button.ghost, html[data-theme="dark"] .window, html[data-theme="dark"] .plan,
html[data-theme="dark"] .mini-list span, html[data-theme="dark"] .capability-card {
    background: var(--card)
}

html[data-theme="dark"] .product-shot {
    background: linear-gradient(145deg, #14213a, #101927)
}

html[data-theme="dark"] .window, html[data-theme="dark"] .metrics article, html[data-theme="dark"] .chart {
    border-color: var(--line)
}

html[data-theme="dark"] .window-top {
    border-color: var(--line)
}

html[data-theme="dark"] .feature-grid article:hover {
    background: #111b29
}

html[data-theme="dark"] .capabilities {
    background: linear-gradient(180deg, var(--paper) 0%, #101927 100%)
}

html[data-theme="dark"] .apply input {
    background: var(--field);
    color: var(--ink);
    border-color: var(--line)
}

html[data-theme="dark"] .apply input::placeholder {
    color: #748095
}

html[data-theme="dark"] .popular {
    background: #17294c;
    color: #91b1ff
}

html[data-theme="dark"] .mock-main {
    background: #121c2a
}

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .22s ease
}

.success-modal.is-open {
    opacity: 1;
    visibility: visible
}

.success-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 9, 16, .58);
    backdrop-filter: blur(4px)
}

.success-modal-card {
    position: relative;
    width: min(100%, 460px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 38px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
    transform: translateY(14px) scale(.98);
    transition: .25s ease;
}

.success-modal.is-open .success-modal-card {
    transform: none
}

.success-modal-card h2 {
    font-size: 34px;
    letter-spacing: -.04em;
    margin: 10px 0
}

.success-modal-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 26px
}

.success-mark {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    background: #eafaf2;
    color: #17633f;
    font-size: 25px;
    font-weight: 900
}

html[data-theme="dark"] .success-mark {
    background: #153429;
    color: #7be0ae
}

@media (max-width: 800px) {
    .desktop-nav, .desktop-signin {
        display: none !important
    }

    .menu-toggle {
        display: block
    }

    .site-head {
        height: 68px;
        padding-left: 18px;
        padding-right: 18px
    }

    .site-head .logo {
        margin-right: auto
    }

    .site-head .logo img {
        width: 150px;
        transition: ease-in .20s;
    }

    .hero {
        padding-top: 48px;
        padding-bottom: 74px
    }

    .hero .product-shot {
        display: none
    }

    .hero {
        display: block
    }

    h1 {
        font-size: clamp(43px, 13vw, 62px)
    }

    .section {
        padding-top: 74px;
        padding-bottom: 74px
    }

    .success-modal-card {
        padding: 30px 22px
    }
}

@media (max-width: 420px) {
    .theme-toggle {
        width: 40px;
        height: 40px
    }

    .menu-toggle {
        width: 42px;
        height: 40px
    }

    .hero-actions .button {
        width: 100%
    }
}

/* Public About + Contact pages */
.page-hero {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 80px;
    align-items: end;
    padding-top: 110px;
    padding-bottom: 90px;
    border-bottom: 1px solid var(--line)
}

.page-hero h1 {
    font-size: clamp(50px, 6vw, 76px);
    margin-bottom: 0
}

.page-hero > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    margin: 0 0 8px;
    max-width: 560px
}

.story {
    padding-top: 90px;
    padding-bottom: 90px
}

.story-grid {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 90px;
    align-items: start
}

.story-copy {
    max-width: 700px
}

.story-copy h2, .contact-copy h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    letter-spacing: -.05em;
    line-height: 1.06;
    margin: 15px 0 24px
}

.story-copy p, .contact-copy > p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85
}

.story-note {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.story-note:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    right: -70px;
    top: -70px;
    background: rgba(36, 107, 254, .08)
}

.story-note > span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--accent);
    font-weight: 800
}

.story-note strong {
    display: block;
    font-size: 28px;
    letter-spacing: -.04em;
    margin: 42px 0 12px
}

.story-note p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0
}

.values-section {
    padding-top: 60px
}

.section-heading.compact {
    max-width: 700px
}

.value-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    margin-top: 45px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
}

.value-card {
    padding: 34px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.value-card > span {
    font-size: 11px;
    color: #98a2b3
}

.value-card h3 {
    font-size: 21px;
    margin: 28px 0 10px
}

.value-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0
}

.about-cta {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: end;
    background: var(--soft);
    max-width: none;
    padding-left: max(24px, calc((100vw - 1132px) / 2));
    padding-right: max(24px, calc((100vw - 1132px) / 2))
}

.about-cta > div:first-child {
    max-width: 760px
}

.about-cta h2 {
    margin-bottom: 0
}

.about-cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.contact-section {
    padding-top: 85px
}

.contact-layout {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: 90px;
    align-items: start
}

.contact-copy {
    padding-top: 12px
}

.contact-card {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line)
}

.contact-card:first-of-type {
    margin-top: 34px;
    border-top: 1px solid var(--line)
}

.contact-card > i {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--soft);
    display: grid;
    place-items: center;
    color: var(--accent);
    flex: 0 0 auto
}

.contact-card strong, .contact-card span {
    display: block
}

.contact-card strong {
    font-size: 15px;
    margin-bottom: 5px
}

.contact-card span {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted)
}

.contact-note {
    margin-top: 28px;
    background: var(--soft);
    border-radius: 16px;
    padding: 22px
}

.contact-note strong {
    font-size: 14px
}

.contact-note p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    margin: 7px 0 12px
}

.contact-note a {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent)
}

.contact-form {
    background: var(--soft);
    padding: 32px;
    border-radius: 22px
}

.contact-form label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 17px
}

.contact-form label span {
    font-weight: 400;
    color: var(--muted)
}

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

.contact-form input, .contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 13px;
    border: 1px solid #dce1e8;
    border-radius: 10px;
    background: var(--field);
    color: var(--ink);
    font: inherit;
    resize: vertical
}

.contact-form textarea {
    min-height: 150px
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: 0;
    border-color: #9ab8ff;
    box-shadow: 0 0 0 4px rgba(36, 107, 254, .09)
}

.contact-form button {
    width: 100%;
    border: 0;
    cursor: pointer
}

.contact-form > small {
    display: block;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.5
}

html[data-theme="dark"] .story-note, html[data-theme="dark"] .contact-form, html[data-theme="dark"] .contact-note, html[data-theme="dark"] .contact-card > i {
    background: var(--soft)
}

html[data-theme="dark"] .contact-form input, html[data-theme="dark"] .contact-form textarea {
    border-color: var(--line)
}


@media (max-width: 800px) {
    .page-hero, .story-grid, .contact-layout {
        grid-template-columns:1fr;
        gap: 34px
    }

    .page-hero {
        padding-top: 76px;
        padding-bottom: 66px;
        align-items: start
    }

    .page-hero > p {
        font-size: 16px
    }

    .story {
        padding-top: 70px
    }

    .value-grid {
        grid-template-columns:1fr
    }

    .about-cta {
        display: block
    }

    .about-cta-actions {
        margin-top: 30px
    }

    .contact-section {
        padding-top: 65px
    }

}

@media (max-width: 560px) {
    .form-row {
        grid-template-columns:1fr
    }

    .about-cta-actions {
        flex-direction: column
    }

    .about-cta-actions .button {
        width: 100%
    }

    .contact-form {
        padding: 24px 18px
    }

    .value-card {
        padding: 28px 22px
    }
}


/* How it works */
.how-it-works {
    padding-top: 105px;
    padding-bottom: 115px
}

.how-head {
    max-width: 760px;
    margin: 0 auto 62px;
    text-align: center
}

.how-head h2 {
    margin-bottom: 18px
}

.how-head p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75
}

.how-steps {
    position: relative;
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 34px
}

.how-steps:before {
    content: "";
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--line)
}

.how-step {
    position: relative;
    z-index: 1;
    min-width: 0
}

.how-number {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    margin-bottom: 27px;
    background: var(--ink);
    color: var(--paper);
    border: 7px solid var(--paper);
    box-shadow: 0 0 0 1px var(--line);
    font-size: 16px;
    font-weight: 800;
    line-height: 1
}

.how-step h3 {
    margin: 0 0 13px;
    font-size: 18px;
    line-height: 1.35
}

.how-step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75
}

.how-step small {
    display: block;
    margin-top: 15px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55
}

html[data-theme="dark"] .how-number {
    background: #f5f7fb;
    color: #101827;
    border-color: var(--paper)
}

@media (max-width: 950px) {
    .how-steps {
        grid-template-columns:repeat(2, 1fr);
        gap: 44px 34px
    }

    .how-steps:before {
        display: none
    }
}

@media (max-width: 560px) {
    .how-it-works {
        padding-top: 78px;
        padding-bottom: 82px
    }

    .how-head {
        margin-bottom: 44px;
        text-align: left
    }

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

    .how-steps {
        grid-template-columns:1fr;
        gap: 0;
        padding-left: 0
    }

    .how-step {
        position: relative;
        padding: 0 0 38px 82px
    }

    .how-step:not(:last-child):before {
        content: "";
        position: absolute;
        left: 31px;
        top: 64px;
        bottom: 0;
        width: 1px;
        background: var(--line)
    }

    .how-number {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0
    }

    .how-step h3 {
        padding-top: 8px
    }
}


/* Self-service Free registration */
.free-register {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: 80px;
    align-items: start;
    padding-top: 90px
}

.free-register-copy {
    position: sticky;
    top: 120px
}

.free-register-copy h1 {
    font-size: clamp(46px, 5.5vw, 72px);
    margin-bottom: 24px
}

.free-register-copy > p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 560px
}

.free-plan-summary {
    margin-top: 34px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    background: var(--soft)
}

.free-plan-summary h3 {
    margin: 8px 0 6px;
    font-size: 22px
}

.free-plan-summary p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6
}

.free-plan-summary > strong {
    font-size: 22px;
    white-space: nowrap
}

.free-plan-points {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px
}

.free-plan-points i {
    color: var(--green);
    margin-right: 8px
}

.free-register-form, .free-register-unavailable {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px
}

.form-heading {
    margin-bottom: 26px
}

.form-heading h2, .free-register-unavailable h2 {
    font-size: 30px;
    letter-spacing: -.04em;
    margin: 8px 0 10px
}

.form-heading p, .free-register-unavailable p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0
}

.free-register-form label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 17px
}

.free-register-form label span {
    font-weight: 400;
    color: var(--muted)
}

.free-register-form input, .free-register-form select {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 13px;
    border: 1px solid #dce1e8;
    border-radius: 10px;
    background: var(--field);
    color: var(--ink);
    font: inherit
}

.free-register-form select {
    opacity: .8
}

.free-register-form input:focus {
    outline: 0;
    border-color: #9ab8ff;
    box-shadow: 0 0 0 4px rgba(36, 107, 254, .09)
}

.free-register-form > .button {
    width: 100%;
    border: 0;
    cursor: pointer
}

.free-register-form > small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.55
}

.free-register-unavailable .button {
    margin-top: 22px
}

html[data-theme="dark"] .free-register-form,
html[data-theme="dark"] .free-register-unavailable,
html[data-theme="dark"] .free-plan-summary {
    background: var(--soft)
}

html[data-theme="dark"] .free-register-form input,
html[data-theme="dark"] .free-register-form select {
    border-color: var(--line)
}

@media (max-width: 800px) {
    .free-register {
        grid-template-columns:1fr;
        gap: 40px;
        padding-top: 64px
    }

    .free-register-copy {
        position: static
    }
}

@media (max-width: 560px) {
    .free-register-form, .free-register-unavailable {
        padding: 24px 18px
    }
}


/* Legal pages and registration consent */
.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: inherit;
}

.legal-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400 !important;
    line-height: 1.55;
}

.free-register-form .legal-consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin: 3px 0 0;
    padding: 0;
}

.legal-consent span {
    color: var(--muted);
}

.legal-consent a {
    color: var(--primary, #246bfe);
    font-weight: 700;
}

.legal-page {
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 72px;
    padding-bottom: 88px;
}

.legal-page .legal-intro {
    margin-bottom: 42px;
}

.legal-page .legal-intro h1 {
    margin: 8px 0 14px;
}

.legal-page .legal-intro p,
.legal-page .legal-section p,
.legal-page .legal-section li {
    color: var(--muted);
    line-height: 1.75;
}

.legal-page .legal-section {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.legal-page .legal-section h4 {
    margin: 0 0 12px;
    font-size: clamp(20px, 3vw, 26px);
}

.legal-page .legal-section ul {
    margin: 10px 0 0;
    padding-left: 22px;
}

.legal-page .legal-section a {
    color: var(--primary, #246bfe);
}
