:root {
    color-scheme: light;
    --ink: #0a1425;
    --muted: #59667a;
    --line: #dfe6f0;
    --surface: #ffffff;
    --soft: #f4f7fb;
    --navy: #07111f;
    --navy-2: #0b1729;
    --violet: #7657ff;
    --violet-2: #944cff;
    --blue: #3f9cff;
    --green: #2bd69b;
    --shadow: 0 24px 80px rgba(10, 20, 37, .12);
    --radius: 24px;
    --shell: 1220px;
}

* {
    box-sizing: border-box;
}

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

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

body.nav-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    transform: translateY(-140%);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    background: var(--violet);
}

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

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 78px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    color: #fff;
    background: rgba(7, 17, 31, .76);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background .2s ease, box-shadow .2s ease;
}

.site-header.scrolled {
    background: rgba(7, 17, 31, .95);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .15);
}

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

.product-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    line-height: 1;
}

.brand-symbol {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet) 52%, var(--violet-2));
    box-shadow: 0 10px 24px rgba(118, 87, 255, .35);
    font-size: 18px;
    font-weight: 850;
}

.product-brand > span:last-child {
    display: grid;
    gap: 3px;
}

.product-brand strong {
    font-size: 17px;
    letter-spacing: -.02em;
}

.product-brand small {
    color: #8fa0b8;
    font-size: 11px;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.site-nav a,
.text-link {
    color: #bfcbda;
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    color: #fff;
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    padding: 11px;
    color: #fff;
    background: transparent;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 12px 21px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(63, 156, 255, .42);
    outline-offset: 3px;
}

.button-primary {
    color: #fff;
    background: linear-gradient(115deg, #6656ff, #994eff);
    box-shadow: 0 14px 32px rgba(118, 87, 255, .3);
}

.button-primary:hover {
    box-shadow: 0 18px 40px rgba(118, 87, 255, .4);
}

.button-small {
    min-height: 42px;
    border-radius: 12px;
    padding: 10px 17px;
    font-size: 14px;
}

.button-large {
    min-height: 56px;
    border-radius: 16px;
    padding: 16px 24px;
}

.button-ghost {
    border-color: rgba(255, 255, 255, .16);
    color: #eaf0f8;
    background: rgba(255, 255, 255, .06);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .1);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
    background: transparent;
}

.button-outline-light:hover {
    border-color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .07);
}

.button-light {
    color: #152033;
    background: #fff;
    box-shadow: 0 16px 36px rgba(16, 13, 54, .18);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 158px 0 0;
    color: #fff;
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
        radial-gradient(circle at 70% 25%, rgba(75, 82, 190, .17), transparent 34%),
        var(--navy);
    background-size: 64px 64px, 64px 64px, auto, auto;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(7, 17, 31, .72));
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    top: 70px;
    left: -250px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(123, 78, 255, .18), transparent 66%);
}

.hero-glow-two {
    right: -280px;
    bottom: -260px;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(52, 157, 255, .16), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 46px;
    min-height: 650px;
    padding-bottom: 95px;
}

.hero-copy {
    padding-bottom: 22px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: #6557f2;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 23px;
    height: 2px;
    border-radius: 4px;
    background: currentColor;
}

.hero .eyebrow,
.eyebrow.light {
    color: #a998ff;
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.hero h1 em {
    color: transparent;
    background: linear-gradient(95deg, #a98dff, #79b8ff 60%, #5de1c0);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.hero-lead {
    max-width: 620px;
    margin: 26px 0 0;
    color: #adbacb;
    font-size: 19px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin: 28px 0 0;
    padding: 0;
    color: #aebbd0;
    list-style: none;
    font-size: 13px;
    font-weight: 650;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-points span {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(43, 214, 155, .34);
    border-radius: 50%;
    color: var(--green);
    background: rgba(43, 214, 155, .08);
    font-size: 10px;
}

.product-stage {
    position: relative;
    min-width: 0;
    perspective: 1200px;
}

.stage-orbit {
    position: absolute;
    border: 1px solid rgba(121, 132, 255, .14);
    border-radius: 50%;
    pointer-events: none;
}

.stage-orbit-one {
    inset: -80px -40px -60px 60px;
    transform: rotate(-12deg);
}

.stage-orbit-two {
    inset: -24px 70px -100px -10px;
    transform: rotate(18deg);
}

.browser-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 112%;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    background: #eaf0f8;
    box-shadow: 0 42px 100px rgba(0, 0, 0, .42), 0 0 70px rgba(107, 86, 255, .11);
    transform: rotateY(-5deg) rotateX(2deg);
    transform-origin: left center;
}

.browser-bar {
    display: grid;
    grid-template-columns: 90px 1fr 25px;
    align-items: center;
    height: 38px;
    padding: 0 12px;
    color: #687489;
    background: #fff;
    font-size: 9px;
}

.browser-bar > span:nth-child(2) {
    justify-self: center;
    min-width: 210px;
    border: 1px solid #e0e6ee;
    border-radius: 6px;
    padding: 4px 18px;
    text-align: center;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e26f76;
}

.browser-dots i:nth-child(2) { background: #efb755; }
.browser-dots i:nth-child(3) { background: #54c587; }
.browser-lock { color: #4bbf87; }

.app-preview {
    display: grid;
    grid-template-columns: 124px 1fr;
    height: 440px;
    color: #121c2c;
    background: #f1f5fa;
    font-size: 9px;
}

.preview-sidebar {
    padding: 15px 10px;
    border-right: 1px solid #dce5ef;
    background: #f8fafc;
}

.preview-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 4px 18px;
    font-size: 10px;
    font-weight: 800;
}

.preview-logo > b {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
}

.preview-logo > span {
    display: grid;
}

.preview-logo small {
    color: #9aa7b8;
    font-size: 6px;
    font-weight: 500;
}

.preview-menu {
    display: grid;
    gap: 5px;
}

.preview-menu span {
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 6px;
    padding: 8px;
    color: #59687b;
    font-weight: 650;
}

.preview-menu span.active {
    color: #4d3fdd;
    background: #eceaff;
}

.preview-menu i {
    width: 8px;
    height: 8px;
    border: 1.5px solid currentColor;
    border-radius: 2px;
}

.preview-main {
    min-width: 0;
}

.preview-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 46px;
    padding: 0 18px;
    border-bottom: 1px solid #dde5ef;
    background: rgba(255, 255, 255, .78);
}

.preview-search {
    width: 180px;
    border: 1px solid #dce4ee;
    border-radius: 6px;
    padding: 6px 10px;
    color: #9ba6b5;
    background: #fff;
}

.preview-topbar b,
.preview-heading button {
    border: 0;
    border-radius: 6px;
    padding: 7px 10px;
    color: #fff;
    background: linear-gradient(110deg, #6254f5, #944cff);
    font-size: 8px;
}

.preview-content {
    padding: 22px 20px;
}

.preview-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.preview-heading > div {
    display: grid;
    gap: 4px;
}

.preview-heading small {
    color: #6655ef;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.preview-heading strong {
    font-size: 16px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.metric-row > div {
    display: grid;
    gap: 5px;
    border: 1px solid #e0e6ee;
    border-radius: 9px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(24, 37, 59, .04);
}

.metric-row span,
.metric-row small {
    color: #738095;
    font-size: 7px;
}

.metric-row strong {
    font-size: 18px;
    line-height: 1;
}

.preview-panel {
    overflow: hidden;
    margin-top: 12px;
    border: 1px solid #dfe6ef;
    border-radius: 9px;
    background: #fff;
}

.panel-title {
    display: flex;
    justify-content: space-between;
    padding: 12px;
}

.panel-title span {
    color: #6655ef;
    font-weight: 750;
}

.preview-table {
    display: grid;
    grid-template-columns: 1.3fr 1.45fr .55fr .65fr;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 7px 12px;
    border-top: 1px solid #e6ebf2;
}

.preview-table-head {
    min-height: 27px;
    color: #8794a7;
    background: #f8fafc;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .08em;
}

.preview-table > span:first-child {
    display: grid;
}

.preview-table small {
    color: #8792a1;
    font-size: 6px;
}

.status {
    display: inline-flex;
    width: max-content;
    border-radius: 20px;
    padding: 3px 6px;
    font-size: 6px;
    font-style: normal;
    font-weight: 800;
}

.status.ready { color: #108359; background: #ddf8ed; }
.status.open { color: #9e6b00; background: #fff2d4; }
.status.sent { color: #5140d2; background: #ebe8ff; }

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 170px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    padding: 11px 13px;
    color: #192235;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
}

.floating-card > div {
    display: grid;
    gap: 2px;
}

.floating-card small {
    color: #758196;
    font-size: 8px;
}

.floating-card strong {
    font-size: 10px;
}

.floating-icon {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    font-weight: 900;
}

.floating-card-time {
    top: 40px;
    right: -70px;
}

.floating-card-signed {
    bottom: 16px;
    left: -32px;
}

.floating-card-signed .floating-icon {
    background: linear-gradient(135deg, #20be84, #2bd69b);
}

.audience-strip {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #8492a7;
    font-size: 13px;
}

.audience-strip span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.audience-strip b {
    color: #c3cddd;
    font-size: 14px;
}

.audience-strip i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #48566a;
}

.section {
    padding: 112px 0;
}

.section-light {
    background: #fff;
}

.section-dark {
    color: #fff;
    background:
        radial-gradient(circle at 84% 18%, rgba(118, 87, 255, .12), transparent 30%),
        var(--navy);
}

.section-heading {
    max-width: 610px;
}

.section-heading.centered {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.section-heading > p:not(.eyebrow) {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.section-dark .section-heading > p:not(.eyebrow) {
    color: #9eacbf;
}

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

.benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    background: #fff;
    box-shadow: 0 16px 50px rgba(20, 34, 54, .055);
    transition: transform .2s ease, box-shadow .2s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-card h3 {
    margin: 28px 0 10px;
    font-size: 23px;
    line-height: 1.22;
    letter-spacing: -.025em;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
}

.card-index {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e2e7ee;
    border-radius: 11px;
    color: #6757e7;
    background: #f7f5ff;
    font-size: 11px;
    font-weight: 900;
}

.benefit-featured {
    color: #fff;
    background: linear-gradient(145deg, #151a33, #11192e 58%, #1c2444);
}

.benefit-featured::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -140px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 90, 255, .5), transparent 68%);
}

.benefit-featured p {
    color: #aeb8ca;
}

.benefit-featured .card-index {
    border-color: rgba(255, 255, 255, .16);
    color: #d1caff;
    background: rgba(255, 255, 255, .08);
}

.mini-timer {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 5px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, .06);
}

.mini-timer span {
    color: #9ca9bf;
    font-size: 11px;
}

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

.mini-timer i {
    overflow: hidden;
    height: 4px;
    margin-top: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .1);
}

.mini-timer b {
    display: block;
    width: 66%;
    height: 100%;
    background: linear-gradient(90deg, var(--violet), var(--blue));
}

.mini-document {
    position: relative;
    width: 115px;
    height: 112px;
    margin: 34px auto 8px;
    border: 1px solid #dfe5ef;
    border-radius: 14px;
    padding: 25px 20px;
    background: #f8faff;
    box-shadow: 0 16px 35px rgba(45, 58, 83, .08);
}

.mini-document i {
    display: block;
    width: 70%;
    height: 4px;
    margin: 8px 0;
    border-radius: 4px;
    background: #d7deea;
}

.mini-document i:nth-child(2) { width: 100%; }
.mini-document b {
    position: absolute;
    right: -17px;
    bottom: -12px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 12px 26px rgba(105, 84, 245, .3);
    font-size: 12px;
}

.mini-signature {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 210px;
    margin: 56px 0 34px;
    border: 1px solid #d8eee7;
    border-radius: 14px;
    padding: 15px;
    color: #188460;
    background: #edfbf6;
    font-size: 12px;
    font-weight: 800;
}

.mini-signature strong {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    color: #fff;
    background: #28c88f;
}

.benefit-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    min-height: 250px;
    gap: 50px;
}

.benefit-wide h3 {
    margin-top: 24px;
}

.role-stack {
    display: grid;
    gap: 9px;
}

.role-stack span {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    border: 1px solid #e4e9f1;
    border-radius: 14px;
    padding: 10px 13px;
    background: #f9fbfd;
}

.role-stack i {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #6556f2, #984dfd);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.role-stack span:nth-child(2) i { background: linear-gradient(135deg, #2699ef, #4a6bf2); }
.role-stack span:nth-child(3) i { background: linear-gradient(135deg, #19ac7a, #35d59d); }
.role-stack b { font-size: 13px; }
.role-stack small { color: #7d8999; font-size: 10px; }

.function-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
    align-items: start;
}

.function-layout .section-heading {
    position: sticky;
    top: 130px;
}

.function-layout .button {
    margin-top: 32px;
}

.function-list {
    display: grid;
}

.function-list article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.function-list article:first-child {
    padding-top: 0;
}

.function-list > article > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(160, 145, 255, .25);
    border-radius: 12px;
    color: #ac9dff;
    background: rgba(118, 87, 255, .08);
    font-size: 11px;
    font-weight: 900;
}

.function-list h3 {
    margin: 1px 0 8px;
    font-size: 21px;
    letter-spacing: -.02em;
}

.function-list p {
    margin: 0;
    color: #9eacbf;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 80px;
    max-width: none;
    margin-bottom: 48px;
}

.split-heading > p:not(.eyebrow) {
    margin-bottom: 4px;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sector-grid article {
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 25px;
    background: #fff;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.sector-grid article:hover {
    transform: translateY(-4px);
    border-color: #cfc7ff;
    box-shadow: 0 20px 50px rgba(31, 41, 61, .08);
}

.sector-grid span {
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    border-radius: 13px;
    color: #6554e8;
    background: #f0edff;
    font-size: 12px;
    font-weight: 900;
}

.sector-grid article:nth-child(2) span { color: #167ebc; background: #e9f6ff; }
.sector-grid article:nth-child(3) span { color: #11805b; background: #e7f9f2; }
.sector-grid article:nth-child(4) span { color: #a05b10; background: #fff2e1; }

.sector-grid h3 {
    margin: 30px 0 9px;
    font-size: 20px;
}

.sector-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.proof-section {
    padding-top: 0;
    background: #fff;
}

.proof-card {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    border-radius: 28px;
    padding: 56px 64px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 10%, rgba(77, 182, 255, .35), transparent 25%),
        linear-gradient(115deg, #5947ed, #7d4ff1 58%, #8d47f2);
    box-shadow: 0 26px 70px rgba(103, 75, 232, .25);
}

.proof-card::after {
    content: "";
    position: absolute;
    right: 160px;
    bottom: -220px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 50%;
}

.proof-card > * {
    position: relative;
    z-index: 2;
}

.proof-card > div {
    max-width: 730px;
}

.proof-card h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.proof-card p:not(.eyebrow) {
    max-width: 660px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
}

.proof-card .button {
    flex: 0 0 auto;
}

.faq-section {
    padding-top: 40px;
}

.faq-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
}

.simple-link {
    display: inline-flex;
    gap: 10px;
    margin-top: 28px;
    color: #6555e7;
    font-weight: 850;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 1px solid #dce2eb;
    border-radius: 9px;
}

.faq-list summary span::before,
.faq-list summary span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: #4b586a;
    transform: translate(-50%, -50%);
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
    max-width: 710px;
    margin: -8px 45px 24px 0;
    color: var(--muted);
}

.contact-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
        var(--navy);
    background-size: 64px 64px, 64px 64px, auto;
}

.contact-glow {
    position: absolute;
    top: -300px;
    left: -250px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 79, 255, .22), transparent 68%);
}

.contact-layout {
    position: relative;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    gap: 90px;
}

.contact-copy h2 {
    margin: 0;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1.06;
    letter-spacing: -.05em;
}

.contact-copy > p:not(.eyebrow) {
    margin: 22px 0 0;
    color: #aab6c8;
    font-size: 18px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 36px;
}

.contact-person > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    font-size: 12px;
    font-weight: 900;
}

.contact-person > div {
    display: grid;
}

.contact-person small {
    color: #8f9db1;
}

.contact-direct {
    display: grid;
    gap: 8px;
    margin-top: 31px;
}

.contact-direct a {
    display: grid;
    width: max-content;
}

.contact-direct small {
    color: #8493a9;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.contact-direct strong {
    color: #dbe4ef;
}

.contact-form-card {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    padding: 34px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .32);
}

.form-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
    margin-bottom: 24px;
}

.form-heading span {
    font-size: 23px;
    font-weight: 850;
    letter-spacing: -.025em;
}

.form-heading small {
    color: #7c8898;
}

.lead-form {
    display: grid;
    gap: 17px;
}

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

.lead-form label {
    display: grid;
    gap: 7px;
    color: #344155;
    font-size: 13px;
    font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid #d8e0eb;
    border-radius: 12px;
    padding: 13px 14px;
    color: var(--ink);
    background: #fbfcfe;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input,
.lead-form select {
    min-height: 49px;
}

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

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: #8d78ff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(118, 87, 255, .09);
}

.lead-form .consent {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    color: #667387;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.55;
}

.consent input {
    width: 17px;
    min-height: 17px;
    margin: 1px 0 0;
    accent-color: var(--violet);
}

.consent a {
    color: #5e4de0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.submit-button {
    width: 100%;
}

.submit-button[disabled] {
    cursor: wait;
    opacity: .7;
    transform: none;
}

.form-note {
    margin: -4px 0 0;
    color: #8490a0;
    text-align: center;
    font-size: 11px;
}

.form-message {
    margin-bottom: 20px;
    border: 1px solid;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 650;
}

.form-message.success {
    border-color: #bfe9d8;
    color: #126b4d;
    background: #eaf9f3;
}

.form-message.error {
    border-color: #f1c5c5;
    color: #9b3232;
    background: #fff0f0;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    color: #a6b2c3;
    background: #050c16;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 54px;
    padding: 68px 0 50px;
}

.footer-main > div {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-main > div:first-child {
    max-width: 330px;
}

.footer-main > div > strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 13px;
}

.footer-main a:not(.product-brand) {
    color: #8f9db0;
    font-size: 13px;
}

.footer-main a:hover {
    color: #fff;
}

.footer-main p {
    margin: 8px 0 0;
    color: #7f8da0;
    font-size: 13px;
}

.footer-brand {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0 28px;
    color: #687589;
    font-size: 12px;
}

.legal-body {
    background: var(--soft);
}

.legal-header {
    background: rgba(7, 17, 31, .96);
}

.legal-main {
    min-height: calc(100vh - 160px);
    padding: 142px 0 90px;
}

.legal-shell {
    max-width: 900px;
}

.legal-back {
    display: inline-flex;
    margin-bottom: 40px;
    color: #6555e7;
    font-size: 14px;
    font-weight: 800;
}

.legal-title {
    margin-bottom: 40px;
}

.legal-title h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -.05em;
}

.legal-content {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px 48px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(22, 34, 53, .07);
}

.legal-content section {
    padding: 28px 0;
    border-bottom: 1px solid #e7ebf1;
}

.legal-content section:last-of-type {
    border-bottom: 0;
}

.legal-content h2 {
    margin: 0 0 12px;
    font-size: 21px;
    letter-spacing: -.02em;
}

.legal-content p {
    margin: 10px 0 0;
    color: #536074;
}

.legal-content a {
    color: #5c4ae0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content code {
    border-radius: 5px;
    padding: 2px 5px;
    color: #4332c6;
    background: #efedff;
}

.legal-updated {
    padding: 14px 0 20px;
    font-size: 13px;
}

.legal-footer a {
    color: inherit;
}

@media (max-width: 1120px) {
    .header-inner {
        gap: 22px;
    }

    .site-nav {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 70px;
        padding-bottom: 90px;
    }

    .hero-copy {
        max-width: 760px;
        text-align: center;
        justify-self: center;
    }

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

    .browser-frame {
        width: 92%;
        margin-inline: auto;
        transform: none;
    }

    .floating-card-time {
        right: 0;
    }

    .floating-card-signed {
        left: 0;
    }

    .function-layout,
    .contact-layout {
        gap: 60px;
    }

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

@media (max-width: 900px) {
    .site-header {
        height: 70px;
    }

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

    .nav-toggle {
        display: block;
        justify-self: end;
        order: 2;
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        inset: 70px 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 18px 24px 26px;
        background: rgba(7, 17, 31, .99);
        box-shadow: 0 25px 50px rgba(0, 0, 0, .28);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        border-bottom: 1px solid rgba(255, 255, 255, .07);
        padding: 15px 4px;
        font-size: 16px;
    }

    .header-actions {
        justify-self: end;
        order: 1;
    }

    .header-actions .text-link {
        display: none;
    }

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

    .benefit-wide {
        grid-template-columns: 1fr 1fr;
    }

    .function-layout,
    .faq-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .function-layout .section-heading {
        position: static;
    }

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

    .proof-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 48px;
    }

    .faq-layout {
        gap: 50px;
    }

    .contact-layout {
        gap: 50px;
    }

    .contact-copy {
        max-width: 680px;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-main > div:last-child {
        grid-column: 2;
    }
}

@media (max-width: 680px) {
    .shell {
        width: min(calc(100% - 30px), var(--shell));
    }

    .header-inner {
        gap: 10px;
    }

    .product-brand strong {
        font-size: 15px;
    }

    .brand-symbol {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .header-actions .button {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding-top: 124px;
    }

    .hero-grid {
        gap: 48px;
        min-height: 0;
        padding-bottom: 65px;
    }

    .hero h1 {
        font-size: clamp(41px, 13vw, 60px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
    }

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

    .browser-frame {
        width: 112%;
        margin-left: -6%;
        border-radius: 14px;
    }

    .browser-bar {
        grid-template-columns: 50px 1fr 15px;
        height: 28px;
    }

    .browser-bar > span:nth-child(2) {
        min-width: 140px;
        padding: 2px 7px;
    }

    .app-preview {
        grid-template-columns: 72px 1fr;
        height: 285px;
    }

    .preview-sidebar {
        padding: 9px 5px;
    }

    .preview-logo {
        gap: 4px;
        padding: 0 2px 9px;
        font-size: 6px;
    }

    .preview-logo > b {
        width: 18px;
        height: 18px;
        font-size: 7px;
    }

    .preview-menu span {
        gap: 4px;
        padding: 6px 4px;
        font-size: 6px;
    }

    .preview-menu i {
        width: 6px;
        height: 6px;
    }

    .preview-topbar {
        height: 32px;
        padding: 0 8px;
    }

    .preview-search {
        width: 100px;
        padding: 3px 5px;
        font-size: 6px;
    }

    .preview-content {
        padding: 12px 9px;
    }

    .preview-heading strong {
        font-size: 10px;
    }

    .preview-heading button,
    .preview-topbar b {
        padding: 4px 6px;
        font-size: 5px;
    }

    .metric-row {
        gap: 5px;
        margin-top: 9px;
    }

    .metric-row > div {
        gap: 2px;
        padding: 7px;
    }

    .metric-row strong {
        font-size: 10px;
    }

    .metric-row span,
    .metric-row small {
        font-size: 5px;
    }

    .preview-panel {
        margin-top: 6px;
    }

    .panel-title {
        padding: 6px;
        font-size: 6px;
    }

    .preview-table {
        grid-template-columns: 1.2fr 1.2fr .5fr .6fr;
        min-height: 30px;
        gap: 3px;
        padding: 3px 5px;
        font-size: 5px;
    }

    .preview-table-head {
        min-height: 18px;
        font-size: 4px;
    }

    .preview-table small,
    .status {
        font-size: 4px;
    }

    .floating-card {
        display: none;
    }

    .audience-strip {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        min-height: 72px;
        white-space: nowrap;
    }

    .section {
        padding: 82px 0;
    }

    .section-heading.centered {
        margin-bottom: 36px;
    }

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

    .section-heading > p:not(.eyebrow) {
        font-size: 16px;
    }

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

    .benefit-card {
        min-height: 330px;
        padding: 24px;
    }

    .benefit-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .function-list article {
        grid-template-columns: 44px 1fr;
        padding: 24px 0;
    }

    .function-list > article > span {
        width: 36px;
        height: 36px;
    }

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

    .sector-grid article {
        min-height: 210px;
    }

    .proof-card {
        width: min(calc(100% - 30px), var(--shell));
        border-radius: 22px;
        padding: 36px 24px;
    }

    .proof-card .button {
        width: 100%;
    }

    .faq-section {
        padding-top: 10px;
    }

    .faq-list summary {
        font-size: 16px;
    }

    .contact-form-card {
        border-radius: 20px;
        padding: 23px 18px;
    }

    .form-heading {
        display: grid;
        gap: 4px;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
        padding-top: 50px;
    }

    .footer-main > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-main > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        display: grid;
    }

    .legal-main {
        padding: 115px 0 65px;
    }

    .legal-content {
        border-radius: 18px;
        padding: 8px 20px;
    }

    .legal-content section {
        padding: 24px 0;
    }
}

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