:root {
    --ac-ink: #081b3d;
    --ac-ink-soft: #17345f;
    --ac-muted: #60708a;
    --ac-primary: #238ff4;
    --ac-primary-dark: #1475dd;
    --ac-violet: #6929dc;
    --ac-cyan: #21c4d8;
    --ac-green: #16a67a;
    --ac-border: #dce6f2;
    --ac-soft: #f3f8fe;
    --ac-soft-blue: #eaf5ff;
    --ac-white: #fff;
    --ac-gradient: linear-gradient(135deg, #238ff4 0%, #5e35e1 100%);
    --ac-shadow: 0 32px 80px rgba(20, 59, 108, .15), 0 8px 24px rgba(20, 59, 108, .08);
    --ac-container: 1420px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

body {
    margin: 0;
    color: var(--ac-ink);
    background: var(--ac-white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

img,
svg {
    display: block;
}

.landing-container {
    width: min(calc(100% - 80px), var(--ac-container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--ac-white);
    background: var(--ac-ink);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.landing-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.landing-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 82px;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: height .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.landing-header.scrolled {
    height: 72px;
    border-color: rgba(220, 230, 242, .9);
    box-shadow: 0 10px 34px rgba(20, 55, 100, .08);
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 38px;
}

.brand-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--ac-ink);
    font-size: 21px;
    font-weight: 780;
    letter-spacing: -.03em;
}

.brand-wordmark img {
    width: 39px;
    height: 39px;
    object-fit: contain;
}

.landing-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 38px;
}

.landing-nav > a,
.text-action {
    position: relative;
    color: #3f506d;
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease;
}

.landing-nav > a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--ac-gradient);
    border-radius: 2px;
    content: "";
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .2s ease, transform .2s ease;
}

.landing-nav > a:hover,
.landing-nav > a:focus-visible,
.text-action:hover,
.text-action:focus-visible {
    color: var(--ac-primary);
}

.landing-nav > a:hover::after,
.landing-nav > a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

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

.mobile-nav-actions,
.mobile-menu-button {
    display: none;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 11px;
    cursor: pointer;
    font-weight: 730;
    letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.mobile-menu-button:focus-visible,
.module-tabs button:focus-visible {
    outline: 3px solid rgba(35, 143, 244, .24);
    outline-offset: 3px;
}

.button-primary {
    color: var(--ac-white);
    background: var(--ac-gradient);
    box-shadow: 0 12px 28px rgba(74, 70, 224, .24);
}

.button-primary:hover {
    box-shadow: 0 16px 32px rgba(74, 70, 224, .32);
}

.button-small {
    min-height: 42px;
    padding-inline: 18px;
    border-radius: 9px;
    font-size: 14px;
}

.button-outline {
    color: var(--ac-ink);
    background: rgba(255, 255, 255, .78);
    border-color: #c9d8ea;
}

.button-outline:hover {
    border-color: var(--ac-primary);
    box-shadow: 0 10px 24px rgba(20, 59, 108, .1);
}

.hero-section {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    padding: 152px 0 90px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff 0%, #fbfdff 64%, #f5f9ff 100%);
}

.hero-section::before {
    position: absolute;
    inset: 82px 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35, 143, 244, .16), transparent);
    content: "";
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    pointer-events: none;
}

.hero-orb-one {
    top: 125px;
    right: -190px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(35, 143, 244, .17), rgba(35, 143, 244, 0) 70%);
}

.hero-orb-two {
    bottom: -280px;
    left: 25%;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(105, 41, 220, .1), rgba(105, 41, 220, 0) 70%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(430px, .82fr) minmax(700px, 1.25fr);
    align-items: center;
    gap: 72px;
}

.hero-copy {
    max-width: 590px;
}

.hero-copy h1 {
    margin: 0;
    max-width: 670px;
    color: var(--ac-ink);
    font-size: clamp(55px, 4.8vw, 76px);
    font-weight: 790;
    line-height: 1.03;
    letter-spacing: -.058em;
}

.hero-copy > p {
    max-width: 560px;
    margin: 28px 0 0;
    color: var(--ac-muted);
    font-size: clamp(19px, 1.6vw, 22px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 28px;
    color: #4f627f;
    font-size: 13px;
    font-weight: 650;
}

.hero-points span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-points .landing-icon {
    width: 16px;
    height: 16px;
    color: var(--ac-green);
}

.app-showcase {
    position: relative;
    border: 1px solid rgba(199, 216, 235, .88);
    border-radius: 20px;
    background: var(--ac-white);
    box-shadow: var(--ac-shadow);
    overflow: hidden;
    transform: perspective(1600px) rotateY(-2deg) rotateX(1deg);
}

.app-showcase::after {
    position: absolute;
    inset: auto -60px -60px auto;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 41, 220, .12), transparent 68%);
    content: "";
    pointer-events: none;
}

.showcase-windowbar {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px;
    background: #f7faff;
    border-bottom: 1px solid var(--ac-border);
}

.showcase-windowbar > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ced9e7;
}

.showcase-windowbar > span:first-child {
    background: #ff7b79;
}

.showcase-windowbar > span:nth-child(2) {
    background: #ffc75b;
}

.showcase-windowbar > span:nth-child(3) {
    background: #38c995;
}

.showcase-windowbar small {
    min-width: 240px;
    margin-inline: auto;
    padding: 4px 12px;
    color: #8492a7;
    background: #fff;
    border: 1px solid #e4ebf4;
    border-radius: 6px;
    text-align: center;
    font-size: 9px;
}

.showcase-app {
    min-height: 475px;
    display: grid;
    grid-template-columns: 172px 1fr;
}

.showcase-sidebar {
    display: flex;
    flex-direction: column;
    padding: 18px 13px 16px;
    background: #fbfdff;
    border-right: 1px solid var(--ac-border);
}

.showcase-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 7px 20px;
    font-size: 13px;
}

.showcase-brand img {
    width: 27px;
    height: 27px;
}

.showcase-sidebar nav {
    display: grid;
    gap: 5px;
}

.showcase-sidebar nav span {
    min-height: 35px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 10px;
    color: #708098;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 620;
}

.showcase-sidebar nav span.active {
    color: #5741dc;
    background: #eeeaff;
}

.showcase-sidebar .landing-icon {
    width: 14px;
    height: 14px;
}

.showcase-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 11px 7px 0;
    border-top: 1px solid #e8eef6;
}

.showcase-user > b,
.showcase-topbar div b {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--ac-gradient);
    border-radius: 50%;
    font-size: 8px;
}

.showcase-user span {
    display: grid;
    font-size: 8px;
}

.showcase-user small {
    color: #8795a9;
}

.showcase-main {
    min-width: 0;
    background: #f4f7fb;
}

.showcase-topbar {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: #fff;
    border-bottom: 1px solid var(--ac-border);
}

.showcase-search {
    width: 225px;
    padding: 8px 12px;
    color: #9aa6b7;
    background: #f4f7fb;
    border-radius: 7px;
    font-size: 9px;
}

.showcase-topbar > div {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #74849b;
}

.showcase-topbar .landing-icon {
    width: 15px;
    height: 15px;
}

.showcase-content {
    padding: 21px;
}

.showcase-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.showcase-title small {
    color: #8a98aa;
    font-size: 8px;
}

.showcase-title h2 {
    margin: 4px 0 0;
    font-size: 19px;
    letter-spacing: -.03em;
}

.showcase-title > span {
    padding: 8px 12px;
    color: #fff;
    background: var(--ac-gradient);
    border-radius: 7px;
    font-size: 8px;
    font-weight: 700;
}

.status-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 17px;
}

.status-strip > span {
    position: relative;
    min-height: 66px;
    display: grid;
    align-content: center;
    padding: 10px 12px 10px 29px;
    background: #fff;
    border: 1px solid #e5ebf3;
    border-radius: 9px;
}

.status-strip i {
    position: absolute;
    top: 15px;
    left: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.status-blue {
    background: var(--ac-primary);
    box-shadow: 0 0 0 4px rgba(35, 143, 244, .1);
}

.status-violet {
    background: var(--ac-violet);
    box-shadow: 0 0 0 4px rgba(105, 41, 220, .1);
}

.status-green {
    background: var(--ac-green);
    box-shadow: 0 0 0 4px rgba(22, 166, 122, .1);
}

.status-strip b {
    font-size: 9px;
}

.status-strip small {
    margin-top: 3px;
    color: #8c99aa;
    font-size: 7px;
}

.showcase-table {
    margin-top: 12px;
    background: #fff;
    border: 1px solid #e4ebf3;
    border-radius: 9px;
    overflow: hidden;
}

.showcase-table-head,
.showcase-table-row {
    display: grid;
    grid-template-columns: 1.45fr 1fr .85fr .65fr;
    align-items: center;
    gap: 9px;
}

.showcase-table-head {
    padding: 10px 12px;
    color: #8b98aa;
    background: #f8faff;
    font-size: 7px;
    font-weight: 750;
    text-transform: uppercase;
}

.showcase-table-row {
    min-height: 57px;
    padding: 8px 12px;
    color: #425471;
    border-top: 1px solid #eef2f7;
    font-size: 8px;
}

.showcase-table-row > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-table-row > span:first-child > b {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: #5347d7;
    background: #efedff;
    border-radius: 7px;
    font-size: 7px;
}

.showcase-table-row em {
    display: grid;
    color: var(--ac-ink);
    font-style: normal;
    font-weight: 650;
}

.showcase-table-row em small {
    color: #8b98aa;
    font-size: 7px;
    font-weight: 500;
}

.tag {
    display: inline-block;
    padding: 4px 7px;
    border-radius: 10px;
    font-size: 7px;
    font-style: normal;
    font-weight: 700;
}

.tag.violet {
    color: #5f3fe0;
    background: #efebff;
}

.tag.blue {
    color: #1d7edb;
    background: #e9f5ff;
}

.tag.green {
    color: #12815f;
    background: #e9f9f2;
}

.section-pad {
    padding: 118px 0;
}

.section-heading {
    margin-bottom: 54px;
}

.section-heading h2 {
    margin: 0;
    color: var(--ac-ink);
    font-size: clamp(38px, 3.5vw, 54px);
    line-height: 1.1;
    letter-spacing: -.045em;
}

.section-heading > p,
.section-heading > div + p {
    color: var(--ac-muted);
    font-size: 18px;
    line-height: 1.7;
}

.section-kicker {
    margin: 0 0 14px;
    color: var(--ac-primary);
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: .15em;
}

.centered-heading {
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}

.centered-heading > p:last-child {
    max-width: 690px;
    margin: 20px auto 0;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    align-items: end;
    gap: 80px;
}

.split-heading > p {
    margin: 0 0 4px;
}

.module-section {
    background: #fff;
}

.module-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px;
    background: #f3f7fc;
    border: 1px solid #e3ebf4;
    border-radius: 15px;
}

.module-tabs button {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 12px;
    color: #5d6f89;
    background: transparent;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.module-tabs button:hover {
    color: var(--ac-primary);
}

.module-tabs button.active {
    color: #fff;
    background: var(--ac-gradient);
    box-shadow: 0 9px 20px rgba(74, 70, 224, .2);
}

.module-tabs .landing-icon {
    width: 18px;
    height: 18px;
}

.module-panel {
    min-height: 470px;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 80px;
    align-items: center;
    padding: 64px 74px;
    background:
        radial-gradient(circle at 100% 0%, rgba(35, 143, 244, .1), transparent 37%),
        linear-gradient(135deg, #f7fbff, #eef6ff);
    border: 1px solid #d9e8f7;
    border-radius: 22px;
}

.module-panel-copy {
    max-width: 520px;
}

.module-panel-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: #fff;
    background: var(--ac-gradient);
    border-radius: 15px;
    box-shadow: 0 12px 28px rgba(74, 70, 224, .22);
}

.module-panel-icon .landing-icon {
    width: 25px;
    height: 25px;
}

.module-panel-copy h3 {
    margin: 0;
    font-size: clamp(31px, 3vw, 43px);
    line-height: 1.13;
    letter-spacing: -.04em;
}

.module-panel-copy > p:not(.section-kicker) {
    margin: 19px 0 0;
    color: var(--ac-muted);
    font-size: 17px;
    line-height: 1.7;
}

.module-panel-copy ul {
    display: grid;
    gap: 13px;
    margin: 27px 0 0;
    padding: 0;
    list-style: none;
}

.module-panel-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3d506e;
    font-size: 14px;
    font-weight: 650;
}

.module-panel-copy li .landing-icon {
    width: 18px;
    height: 18px;
    color: var(--ac-green);
}

.workflow-preview {
    position: relative;
    padding: 18px;
    background: #fff;
    border: 1px solid #d9e5f2;
    border-radius: 18px;
    box-shadow: 0 24px 55px rgba(20, 59, 108, .11);
}

.workflow-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 5px 18px;
    font-size: 14px;
    font-weight: 760;
}

.workflow-preview-head small {
    color: #8a98aa;
    font-size: 11px;
    font-weight: 550;
}

.workflow-list {
    display: grid;
    gap: 9px;
}

.workflow-list > div {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 15px;
    color: #65758e;
    background: #f8fafd;
    border: 1px solid #e7edf5;
    border-radius: 11px;
}

.workflow-list > div.current {
    color: #4030bf;
    background: #f1efff;
    border-color: #d7d0ff;
}

.workflow-list i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #6b7b92;
    background: #fff;
    border: 1px solid #dce6f1;
    border-radius: 9px;
    font-size: 12px;
    font-style: normal;
    font-weight: 780;
}

.workflow-list .current i {
    color: #fff;
    background: var(--ac-gradient);
    border-color: transparent;
}

.workflow-list > div > span {
    display: grid;
    flex: 1;
}

.workflow-list strong {
    color: var(--ac-ink);
    font-size: 13px;
}

.workflow-list small {
    margin-top: 2px;
    color: #8b98aa;
    font-size: 10px;
}

.workflow-list > div > .landing-icon {
    width: 17px;
    height: 17px;
    color: var(--ac-green);
}

.workflow-list em {
    padding: 5px 8px;
    color: #5d3fd6;
    background: #fff;
    border-radius: 8px;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
}

.workflow-section {
    background:
        linear-gradient(180deg, #f2f8ff 0%, #f7fbff 100%);
    border-block: 1px solid #e4eef8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.steps-grid article {
    position: relative;
    min-height: 300px;
    padding: 40px 46px;
    border-right: 1px solid #d6e3f0;
}

.steps-grid article:first-child {
    padding-left: 0;
}

.steps-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.steps-grid article > span {
    position: absolute;
    top: 30px;
    right: 34px;
    color: rgba(35, 143, 244, .13);
    font-size: 54px;
    font-weight: 820;
    line-height: 1;
}

.steps-grid article > div {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--ac-primary);
    background: #fff;
    border: 1px solid #d6e5f5;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(20, 59, 108, .08);
}

.steps-grid article h3 {
    margin: 27px 0 12px;
    font-size: 21px;
    letter-spacing: -.025em;
}

.steps-grid article p {
    margin: 0;
    color: var(--ac-muted);
    line-height: 1.75;
}

.features-section {
    background: #fff;
}

.benefit-list {
    max-width: 1120px;
    margin-inline: auto;
    border-top: 1px solid var(--ac-border);
}

.benefit-list article {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 142px;
    padding: 26px 12px;
    border-bottom: 1px solid var(--ac-border);
    transition: padding .2s ease, background .2s ease;
}

.benefit-list article:hover {
    padding-inline: 24px;
    background: #f8fbff;
}

.benefit-list article > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--ac-gradient);
    border-radius: 15px;
}

.benefit-list article > span .landing-icon {
    width: 25px;
    height: 25px;
}

.benefit-list h3 {
    margin: 0 0 5px;
    font-size: 21px;
    letter-spacing: -.025em;
}

.benefit-list p {
    max-width: 760px;
    margin: 0;
    color: var(--ac-muted);
}

.benefit-list article > b {
    color: #dbe5f1;
    font-size: 30px;
    letter-spacing: -.04em;
}

.closing-band {
    position: relative;
    padding: 88px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(49, 145, 255, .28), transparent 30%),
        radial-gradient(circle at 20% 100%, rgba(105, 41, 220, .24), transparent 35%),
        #071a3a;
    overflow: hidden;
}

.closing-band::before {
    position: absolute;
    top: -110px;
    right: 7%;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.closing-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.closing-copy {
    max-width: 790px;
}

.closing-copy .section-kicker {
    color: #68bdff;
}

.closing-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(39px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.closing-copy > p:last-child {
    margin: 20px 0 0;
    color: #b9c9df;
    font-size: 18px;
}

.closing-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.button-white {
    color: #24336c;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.button-dark-outline {
    color: #fff;
    background: rgba(255, 255, 255, .03);
    border-color: rgba(255, 255, 255, .25);
}

.button-dark-outline:hover {
    border-color: rgba(255, 255, 255, .65);
}

.landing-footer {
    padding: 60px 0 25px;
    background: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 60px;
    padding-bottom: 45px;
}

.footer-brand p {
    max-width: 380px;
    margin: 16px 0 0;
    color: var(--ac-muted);
}

.footer-main nav {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 20px 34px;
    padding-top: 12px;
    color: #52647f;
    font-size: 14px;
    font-weight: 620;
}

.footer-main nav a:hover {
    color: var(--ac-primary);
}

.footer-pending {
    color: #8c99aa;
    cursor: default;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    color: #8996a9;
    border-top: 1px solid var(--ac-border);
    font-size: 12px;
}

@media (max-width: 1260px) {
    .hero-grid {
        grid-template-columns: minmax(380px, .8fr) minmax(590px, 1.2fr);
        gap: 38px;
    }

    .hero-copy h1 {
        font-size: 58px;
    }

    .showcase-app {
        grid-template-columns: 150px 1fr;
    }

    .showcase-sidebar {
        padding-inline: 10px;
    }

    .module-panel {
        gap: 50px;
        padding-inline: 56px;
    }
}

@media (max-width: 1080px) {
    .landing-container {
        width: min(calc(100% - 48px), var(--ac-container));
    }

    .landing-nav {
        gap: 24px;
    }

    .hero-section {
        padding-top: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .hero-copy {
        max-width: 800px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-copy h1 {
        max-width: 820px;
        font-size: clamp(52px, 7vw, 70px);
    }

    .hero-copy > p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .app-showcase {
        width: min(840px, 100%);
        margin-inline: auto;
        transform: none;
    }

    .module-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .module-panel {
        grid-template-columns: 1fr;
    }

    .module-panel-copy {
        max-width: 700px;
    }

    .split-heading {
        gap: 40px;
    }

    .steps-grid article {
        padding-inline: 30px;
    }

    .closing-inner {
        grid-template-columns: 1fr;
    }

    .closing-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .landing-header,
    .landing-header.scrolled {
        height: 70px;
    }

    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        width: 43px;
        height: 43px;
        display: grid;
        place-items: center;
        padding: 0;
        color: var(--ac-ink);
        background: #f4f8fd;
        border: 1px solid var(--ac-border);
        border-radius: 10px;
        cursor: pointer;
    }

    .landing-nav {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        min-height: calc(100vh - 70px);
        display: none;
        align-content: start;
        justify-items: stretch;
        gap: 0;
        padding: 24px;
        background: rgba(255, 255, 255, .98);
        border-top: 1px solid var(--ac-border);
    }

    .landing-nav.open {
        display: grid;
    }

    .landing-nav > a {
        padding: 17px 4px;
        border-bottom: 1px solid var(--ac-border);
        font-size: 17px;
    }

    .landing-nav > a::after {
        display: none;
    }

    .mobile-nav-actions {
        display: grid;
        gap: 12px;
        margin-top: 28px;
    }

    .mobile-nav-actions > a:first-child {
        min-height: 52px;
        display: grid;
        place-items: center;
        border: 1px solid var(--ac-border);
        border-radius: 11px;
        font-weight: 700;
    }

    .section-pad {
        padding: 88px 0;
    }

    .split-heading {
        grid-template-columns: 1fr;
    }

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

    .steps-grid article,
    .steps-grid article:first-child,
    .steps-grid article:last-child {
        min-height: auto;
        padding: 32px 0;
        border-right: 0;
        border-bottom: 1px solid #d6e3f0;
    }

    .steps-grid article:last-child {
        border-bottom: 0;
    }

    .steps-grid article > span {
        top: 28px;
        right: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-main nav {
        justify-content: flex-start;
        padding-top: 0;
    }
}

@media (max-width: 620px) {
    .landing-container {
        width: min(calc(100% - 32px), var(--ac-container));
    }

    .brand-wordmark {
        font-size: 19px;
    }

    .brand-wordmark img {
        width: 35px;
        height: 35px;
    }

    .hero-section {
        min-height: auto;
        padding: 116px 0 64px;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 12vw, 56px);
    }

    .hero-copy > p {
        margin-top: 22px;
        font-size: 18px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .hero-points {
        display: grid;
        justify-content: start;
        width: fit-content;
        margin-inline: auto;
        text-align: left;
    }

    .showcase-windowbar small {
        min-width: 0;
        width: 170px;
    }

    .showcase-app {
        min-height: 390px;
        grid-template-columns: 58px 1fr;
    }

    .showcase-sidebar {
        align-items: center;
        padding-inline: 7px;
    }

    .showcase-brand strong,
    .showcase-sidebar nav span:not(.active) {
        font-size: 0;
    }

    .showcase-sidebar nav span {
        justify-content: center;
        width: 38px;
        padding: 0;
    }

    .showcase-sidebar nav span.active {
        font-size: 0;
    }

    .showcase-sidebar .landing-icon {
        width: 16px;
        height: 16px;
    }

    .showcase-user span {
        display: none;
    }

    .showcase-content {
        padding: 14px;
    }

    .showcase-search {
        width: 170px;
    }

    .showcase-title h2 {
        font-size: 16px;
    }

    .showcase-title > span {
        padding: 7px 8px;
    }

    .status-strip {
        gap: 6px;
    }

    .status-strip > span {
        min-height: 58px;
        padding: 8px;
    }

    .status-strip i,
    .status-strip small {
        display: none;
    }

    .showcase-table-head,
    .showcase-table-row {
        grid-template-columns: 1.45fr 1fr .8fr;
    }

    .showcase-table-head span:nth-child(3),
    .showcase-table-row > span:nth-child(3) {
        display: none;
    }

    .showcase-table-row {
        min-height: 51px;
        padding-inline: 8px;
    }

    .section-pad {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 37px;
    }

    .section-heading > p,
    .section-heading > div + p {
        font-size: 16px;
    }

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

    .module-tabs button {
        justify-content: flex-start;
        min-height: 54px;
        font-size: 12px;
    }

    .module-panel {
        min-height: auto;
        gap: 40px;
        padding: 34px 22px 22px;
        border-radius: 18px;
    }

    .module-panel-copy h3 {
        font-size: 32px;
    }

    .module-panel-copy > p:not(.section-kicker) {
        font-size: 15px;
    }

    .workflow-preview {
        padding: 12px;
    }

    .workflow-list > div {
        min-height: 66px;
        gap: 10px;
        padding: 10px;
    }

    .workflow-list em {
        display: none;
    }

    .benefit-list article {
        grid-template-columns: 56px 1fr;
        gap: 18px;
        padding-inline: 0;
    }

    .benefit-list article:hover {
        padding-inline: 0;
    }

    .benefit-list article > span {
        width: 50px;
        height: 50px;
    }

    .benefit-list article > b {
        display: none;
    }

    .benefit-list h3 {
        font-size: 19px;
    }

    .benefit-list p {
        font-size: 14px;
    }

    .closing-band {
        padding: 70px 0;
        text-align: center;
    }

    .closing-copy h2 {
        font-size: 40px;
    }

    .closing-copy > p:last-child {
        font-size: 16px;
    }

    .closing-actions {
        display: grid;
        justify-content: stretch;
    }

    .footer-main nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 24px;
    }

    .footer-bottom {
        display: grid;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
