:root {
    color-scheme: dark;
    --bg: #070b16;
    --bg-soft: #0b1120;
    --panel: #10182a;
    --panel-light: #151f35;
    --line: rgba(148, 178, 235, 0.16);
    --line-strong: rgba(148, 178, 235, 0.28);
    --text: #f4f7ff;
    --muted: #9ba9c4;
    --blue: #6d8eff;
    --blue-bright: #88b5ff;
    --aqua: #72ddff;
    --navy: #09152f;
    --success: #80e6c4;
    --warning: #f6c97b;
    --radius: 26px;
    --max: 1200px;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 50% -20%, rgba(55, 94, 195, 0.13), transparent 38%),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

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

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

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

button {
    color: inherit;
}

:focus-visible {
    outline: 3px solid var(--aqua);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 11px 16px;
    border-radius: 8px;
    background: var(--text);
    color: var(--bg);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

.site-shell {
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(calc(100% - 32px), var(--max));
    min-height: 68px;
    margin: 14px auto 0;
    padding: 10px 12px 10px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 11, 22, 0.78);
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: max-content;
    font-size: 18px;
    font-weight: 760;
    letter-spacing: -0.03em;
}

.brand-mark,
.login-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--aqua), var(--blue));
    color: #07101f;
    box-shadow: 0 8px 24px rgba(109, 142, 255, 0.28);
    font-size: 17px;
    font-weight: 900;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #c9d3e7;
    font-size: 14px;
}

.desktop-nav a,
.text-button,
.site-footer nav a,
.site-footer nav button {
    transition: color 180ms ease;
}

.desktop-nav a:hover,
.text-button:hover,
.site-footer nav a:hover,
.site-footer nav button:hover {
    color: var(--aqua);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.text-button,
.site-footer nav button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.text-button {
    padding: 10px 4px;
    font-size: 14px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: linear-gradient(135deg, #87c9ff, #6f82ff);
    color: #06101f;
    box-shadow: 0 14px 38px rgba(73, 109, 230, 0.25);
    font-weight: 750;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(73, 109, 230, 0.36);
    filter: brightness(1.06);
}

.button-small {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
}

.button-ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    box-shadow: none;
}

.button-ghost:hover {
    border-color: rgba(114, 221, 255, 0.45);
    box-shadow: none;
}

.hero {
    position: relative;
    width: min(calc(100% - 32px), 1320px);
    margin: 0 auto;
    padding: 132px 0 96px;
    text-align: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

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

.hero-glow-one {
    top: 90px;
    left: 10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(78, 111, 231, 0.2), transparent 67%);
}

.hero-glow-two {
    top: 220px;
    right: 8%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(74, 190, 235, 0.13), transparent 68%);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #b6c5de;
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.hero .eyebrow {
    justify-content: center;
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 18px var(--aqua);
}

.hero h1 {
    margin: 0;
    font-size: clamp(62px, 9.2vw, 118px);
    font-weight: 790;
    letter-spacing: -0.075em;
    line-height: 0.9;
}

.hero h1 span {
    background: linear-gradient(95deg, #8fcbff 10%, #7793ff 72%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 680px;
    margin: 32px auto 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.hero-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin: 25px 0 0;
    padding: 0;
    color: #8898b5;
    font-size: 13px;
    list-style: none;
}

.hero-points li::before {
    content: "✓";
    margin-right: 7px;
    color: var(--aqua);
}

.product-stage {
    position: relative;
    width: min(1040px, 92%);
    margin: 90px auto 0;
    perspective: 1200px;
}

.product-stage::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 10% 12% -10%;
    border-radius: 50%;
    background: rgba(67, 102, 221, 0.26);
    filter: blur(90px);
}

.product-window {
    overflow: hidden;
    border: 1px solid rgba(140, 177, 246, 0.22);
    border-radius: 22px;
    background: #0b1221;
    box-shadow: 0 55px 130px rgba(0, 0, 0, 0.65), 0 0 0 8px rgba(255, 255, 255, 0.018);
    text-align: left;
    transform: rotateX(2deg);
}

.window-bar {
    display: grid;
    grid-template-columns: 1fr minmax(140px, 280px) 1fr;
    align-items: center;
    min-height: 61px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    background: #0d1525;
    color: #c8d2e6;
    font-size: 12px;
}

.window-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 750;
}

.mini-mark {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 7px;
    background: linear-gradient(145deg, var(--aqua), var(--blue));
    color: #081021;
    font-size: 11px;
}

.window-search {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #657591;
}

.window-avatar {
    display: grid;
    place-items: center;
    justify-self: end;
    width: 30px;
    height: 30px;
    border: 1px solid #30466f;
    border-radius: 50%;
    background: #15223b;
    font-size: 10px;
}

.window-layout {
    display: grid;
    grid-template-columns: 155px 1fr;
    min-height: 510px;
}

.window-sidebar {
    display: flex;
    flex-direction: column;
    gap: 27px;
    padding: 34px 24px;
    border-right: 1px solid var(--line);
    background: #0a111e;
}

.side-line {
    width: 74px;
    height: 7px;
    border-radius: 5px;
    background: #24304a;
}

.side-line.short {
    width: 52px;
}

.side-line.active {
    background: linear-gradient(90deg, var(--aqua), var(--blue));
    box-shadow: 0 0 15px rgba(114, 221, 255, 0.22);
}

.window-content {
    padding: 40px 42px;
    background:
        radial-gradient(circle at 90% 0%, rgba(82, 119, 232, 0.11), transparent 34%),
        #0e1627;
}

.dashboard-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-heading div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-heading small {
    color: #6f819f;
    font-size: 9px;
    letter-spacing: 0.16em;
}

.dashboard-heading strong {
    font-size: 22px;
    letter-spacing: -0.03em;
}

.mini-button {
    padding: 10px 13px;
    border-radius: 8px;
    background: linear-gradient(135deg, #83caff, #7085ff);
    color: #07101e;
    font-size: 10px;
    font-weight: 800;
}

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

.metric-row > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.metric-row span {
    font-size: 26px;
    font-weight: 750;
}

.metric-row small {
    color: #7989a5;
    font-size: 10px;
}

.contract-list {
    margin-top: 21px;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7, 12, 22, 0.4);
}

.list-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    font-size: 11px;
}

.list-title span {
    color: var(--aqua);
}

.contract-row {
    display: grid;
    grid-template-columns: 37px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.job-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #17233c;
    color: #a6b9db;
    font-size: 9px;
    font-weight: 800;
}

.contract-row > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.contract-row small {
    color: #667692;
    font-size: 8px;
}

.status {
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
}

.status-sent {
    background: rgba(109, 142, 255, 0.13);
    color: #96b0ff;
}

.status-signed {
    background: rgba(128, 230, 196, 0.13);
    color: var(--success);
}

.status-draft {
    background: rgba(153, 169, 196, 0.1);
    color: #9eacc4;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(162, 195, 255, 0.24);
    border-radius: 14px;
    background: rgba(16, 25, 43, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    text-align: left;
}

.floating-card small,
.floating-card strong {
    display: block;
}

.floating-card small {
    margin-bottom: 5px;
    color: #8798b5;
    font-size: 9px;
}

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

.floating-signature {
    bottom: 48px;
    left: -55px;
}

.float-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(128, 230, 196, 0.13);
    color: var(--success);
    font-weight: 900;
}

.floating-progress {
    top: 116px;
    right: -47px;
}

.progress-ring {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border: 4px solid rgba(109, 142, 255, 0.25);
    border-top-color: var(--aqua);
    border-right-color: var(--blue);
    border-radius: 50%;
    color: #c8d7ee;
    font-size: 9px;
    font-weight: 800;
}

.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(19px, 3.5vw, 55px);
    min-height: 95px;
    padding: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(12, 19, 34, 0.75);
    color: #8797b4;
    font-size: 11px;
    font-weight: 820;
    letter-spacing: 0.22em;
}

.trust-strip i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 12px var(--blue);
}

.section {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    padding: 130px 0;
}

.section-kicker {
    margin-bottom: 42px;
    color: var(--aqua);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 80px;
    align-items: end;
}

.intro-grid h2,
.section-heading h2,
.steps-intro h2,
.subscribe-copy h2 {
    margin: 0;
    font-size: clamp(42px, 5.6vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.intro-grid p,
.section-heading > p,
.steps-intro > p:last-child,
.subscribe-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.features-section {
    border-top: 1px solid var(--line);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 80px;
    align-items: end;
    margin-bottom: 62px;
}

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

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 80% 10%, rgba(82, 119, 232, 0.12), transparent 38%),
        var(--bg-soft);
}

.feature-card-large {
    min-height: 585px;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
    min-height: 390px;
}

.feature-number {
    position: relative;
    z-index: 2;
    color: #53617a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.feature-card h3 {
    margin: 0 0 13px;
    font-size: 27px;
    letter-spacing: -0.045em;
}

.feature-card p {
    max-width: 460px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.feature-visual {
    position: relative;
    display: grid;
    place-items: center;
    flex: 1;
    min-height: 210px;
}

.doc-sheet {
    position: absolute;
    width: 180px;
    height: 235px;
    border: 1px solid rgba(154, 189, 250, 0.24);
    border-radius: 14px;
    background: #131e33;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
}

.doc-back {
    transform: rotate(-9deg) translate(-23px, 6px);
    opacity: 0.55;
}

.doc-front {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 27px;
    transform: rotate(5deg) translate(24px, -4px);
}

.doc-logo {
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--aqua), var(--blue));
}

.doc-front i {
    width: 100%;
    height: 6px;
    border-radius: 4px;
    background: #35435e;
}

.doc-front i.short {
    width: 63%;
}

.doc-front b {
    margin-top: auto;
    color: #6c7f9e;
    font-size: 9px;
    letter-spacing: 0.2em;
}

.spark {
    position: absolute;
    color: var(--aqua);
    font-size: 24px;
    font-weight: 200;
}

.spark-one {
    top: 19%;
    left: 23%;
}

.spark-two {
    right: 21%;
    bottom: 19%;
}

.link-visual {
    grid-template-columns: 70px 150px 70px;
}

.link-node {
    z-index: 2;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(114, 221, 255, 0.35);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(114, 221, 255, 0.2), rgba(109, 142, 255, 0.12));
    color: var(--aqua);
    font-size: 24px;
    font-weight: 850;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.client-node {
    border-color: var(--line-strong);
    color: #aab7cd;
}

.link-visual i {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, var(--aqua), var(--blue));
}

.link-visual i::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -2px;
    color: var(--blue-bright);
    transform: translateY(-54%);
}

.signing-visual::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 130px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: #101a2d;
    transform: rotate(-3deg);
}

.signature-line {
    z-index: 1;
    width: 185px;
    padding-bottom: 10px;
    border-bottom: 1px solid #52617b;
    color: #d5def0;
    font-family: Georgia, serif;
    font-size: 22px;
    font-style: italic;
}

.sign-check {
    z-index: 2;
    position: absolute;
    right: 17%;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--success);
    color: #0b1c1c;
    font-weight: 900;
}

.feature-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    min-height: 310px;
}

.feature-card-wide .feature-number {
    position: absolute;
    top: 28px;
    left: 28px;
}

.status-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0b1322;
}

.status-visual span {
    display: grid;
    grid-template-columns: 12px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: #9aa9c2;
    font-size: 13px;
}

.status-visual b {
    color: #e3eafa;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.dot.blue {
    background: var(--blue);
}

.dot.amber {
    background: var(--warning);
}

.dot.aqua {
    background: var(--success);
}

.steps-section {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
    border-top: 1px solid var(--line);
}

.steps-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.steps-intro > p:last-child {
    margin-top: 26px;
}

.steps-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 30px;
    padding: 44px 0;
    border-top: 1px solid var(--line);
}

.steps-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.step-index {
    display: grid;
    place-items: center;
    align-self: start;
    width: 62px;
    height: 62px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(109, 142, 255, 0.12), rgba(114, 221, 255, 0.04));
    color: var(--aqua);
    font-size: 12px;
    font-weight: 800;
}

.steps-list h3 {
    margin: 0 0 13px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

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

.plans-section {
    width: 100%;
    max-width: none;
    padding-right: max(20px, calc((100vw - var(--max)) / 2));
    padding-left: max(20px, calc((100vw - var(--max)) / 2));
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 10%, rgba(74, 111, 226, 0.11), transparent 35%),
        #080d19;
}

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

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 590px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(13, 21, 37, 0.9);
}

.plan-card-featured {
    border-color: rgba(114, 180, 255, 0.5);
    background:
        radial-gradient(circle at 100% 0%, rgba(109, 142, 255, 0.2), transparent 35%),
        #101a2d;
    box-shadow: 0 35px 85px rgba(20, 46, 111, 0.25);
}

.popular-pill {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--aqua);
    color: #07111d;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.plan-label {
    margin-bottom: 40px;
    color: var(--aqua);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.2em;
}

.plan-card h3 {
    margin: 0 0 14px;
    font-size: 31px;
    letter-spacing: -0.045em;
}

.plan-card > p {
    min-height: 78px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.plan-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 28px 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.plan-price strong {
    font-size: 27px;
    letter-spacing: -0.04em;
}

.plan-price span {
    color: #7889a5;
    font-size: 12px;
}

.plan-card ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 0 30px;
    padding: 0;
    color: #c0cbde;
    font-size: 14px;
    list-style: none;
}

.plan-card li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--aqua);
}

.button-plan {
    width: 100%;
    margin-top: auto;
}

.plan-card:not(.plan-card-featured) .button-plan {
    border-color: var(--line-strong);
    background: transparent;
    color: var(--text);
    box-shadow: none;
}

.plan-note {
    margin: 28px 0 0;
    color: #6f7f9b;
    font-size: 12px;
    text-align: center;
}

.subscribe-section {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 90px;
    align-items: start;
}

.subscribe-copy {
    position: sticky;
    top: 125px;
}

.subscribe-copy > p {
    margin-top: 26px;
}

.contact-line {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 35px;
    color: #7687a4;
    font-size: 13px;
}

.contact-line a {
    color: var(--aqua);
    font-size: 17px;
    font-weight: 700;
}

.form-panel {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 100% 0%, rgba(109, 142, 255, 0.13), transparent 34%),
        var(--bg-soft);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-grid label,
.login-panel label {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #c2cde0;
    font-size: 13px;
    font-weight: 650;
}

.form-grid label > span {
    color: var(--aqua);
}

.form-wide {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    outline: none;
    background: #09111f;
    color: var(--text);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
    height: 50px;
    padding: 0 14px;
}

textarea {
    min-height: 115px;
    padding: 14px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue-bright);
    box-shadow: 0 0 0 4px rgba(109, 142, 255, 0.12);
}

input::placeholder,
textarea::placeholder {
    color: #56657f;
}

.form-submit {
    width: 100%;
    margin-top: 22px;
}

.privacy-note {
    margin: 14px 0 0;
    color: #6f7f9b;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

.form-alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    border: 1px solid;
    border-radius: 11px;
    font-size: 13px;
    line-height: 1.5;
}

.form-alert-success {
    border-color: rgba(128, 230, 196, 0.34);
    background: rgba(128, 230, 196, 0.08);
    color: var(--success);
}

.form-alert-error {
    border-color: rgba(246, 201, 123, 0.34);
    background: rgba(246, 201, 123, 0.08);
    color: #ffda9a;
}

.site-footer {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    padding: 54px 0 38px;
    border-top: 1px solid var(--line);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 50px;
    align-items: center;
}

.footer-top > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.site-footer nav {
    display: flex;
    gap: 22px;
    align-items: center;
    color: #a0aec7;
    font-size: 13px;
}

.site-footer nav button {
    padding: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #596983;
    font-size: 10px;
    line-height: 1.5;
}

.footer-bottom span:last-child {
    max-width: 590px;
    text-align: right;
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 13, 0.76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.login-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    padding: 38px;
    border: 1px solid rgba(150, 185, 247, 0.26);
    border-radius: 25px;
    background:
        radial-gradient(circle at 100% 0%, rgba(109, 142, 255, 0.18), transparent 38%),
        #0c1424;
    box-shadow: 0 45px 130px rgba(0, 0, 0, 0.65);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.03);
    color: #92a1bb;
    font-size: 24px;
    cursor: pointer;
}

.login-mark {
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    border-radius: 14px;
    font-size: 22px;
}

.modal-kicker {
    margin: 0 0 9px;
    color: var(--aqua);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.18em;
}

.login-panel h2 {
    margin: 0;
    font-size: 38px;
    letter-spacing: -0.055em;
}

.login-panel > p:not(.modal-kicker) {
    margin: 13px 0 24px;
    color: var(--muted);
    line-height: 1.55;
}

.login-panel form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #7485a3;
    font-size: 11px;
}

.login-row .remember {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    color: #8595b1;
    font-size: 11px;
    font-weight: 500;
}

.remember input {
    width: 14px;
    height: 14px;
    margin: 0;
}

.login-submit {
    width: 100%;
    margin-top: 3px;
}

.demo-notice {
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(114, 221, 255, 0.19);
    border-radius: 10px;
    background: rgba(114, 221, 255, 0.055);
    color: #9eafca;
    font-size: 11px;
    line-height: 1.5;
}

.demo-notice.is-active {
    border-color: rgba(246, 201, 123, 0.32);
    color: #f6d8a4;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

    .hero {
        padding-top: 105px;
    }

    .product-stage {
        width: 96%;
    }

    .window-layout {
        grid-template-columns: 105px 1fr;
    }

    .window-sidebar {
        padding-right: 16px;
        padding-left: 16px;
    }

    .window-content {
        padding: 32px 28px;
    }

    .floating-signature {
        left: -18px;
    }

    .floating-progress {
        right: -18px;
    }

    .section-heading,
    .intro-grid,
    .steps-section,
    .subscribe-section {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .section-heading > p,
    .intro-grid p {
        max-width: 650px;
    }

    .steps-intro,
    .subscribe-copy {
        position: static;
    }

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

    .plan-card {
        min-height: auto;
    }

    .plan-card > p {
        min-height: auto;
    }

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

    .site-footer nav {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .site-header {
        top: 8px;
        width: calc(100% - 20px);
        min-height: 60px;
        margin-top: 8px;
        padding-left: 13px;
        border-radius: 15px;
    }

    .brand {
        font-size: 16px;
    }

    .brand-mark {
        width: 31px;
        height: 31px;
    }

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

    .button-small {
        min-height: 40px;
        padding: 0 13px;
        font-size: 12px;
    }

    .hero {
        width: calc(100% - 24px);
        padding: 84px 0 70px;
    }

    .hero h1 {
        font-size: clamp(50px, 17vw, 76px);
    }

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

    .hero-actions {
        flex-direction: column;
        width: min(100%, 390px);
        margin-right: auto;
        margin-left: auto;
    }

    .hero-points {
        flex-direction: column;
        gap: 9px;
    }

    .product-stage {
        width: 100%;
        margin-top: 66px;
    }

    .product-window {
        border-radius: 14px;
    }

    .window-bar {
        grid-template-columns: 1fr auto;
        min-height: 48px;
        padding: 0 13px;
    }

    .window-search {
        display: none;
    }

    .window-layout {
        grid-template-columns: 1fr;
        min-height: 375px;
    }

    .window-sidebar {
        display: none;
    }

    .window-content {
        padding: 24px 17px;
    }

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

    .mini-button {
        padding: 8px 9px;
        font-size: 8px;
    }

    .metric-row {
        gap: 6px;
        margin-top: 20px;
    }

    .metric-row > div {
        padding: 12px 9px;
    }

    .metric-row span {
        font-size: 18px;
    }

    .metric-row small {
        min-height: 23px;
        font-size: 7px;
    }

    .contract-list {
        margin-top: 13px;
        padding: 13px;
    }

    .contract-row {
        grid-template-columns: 29px 1fr auto;
        gap: 8px;
        padding: 10px 0;
    }

    .job-icon {
        width: 28px;
        height: 28px;
    }

    .contract-row strong {
        font-size: 8px;
    }

    .contract-row small {
        font-size: 6px;
    }

    .status {
        padding: 5px 6px;
        font-size: 6px;
    }

    .floating-card {
        display: none;
    }

    .trust-strip {
        justify-content: flex-start;
        overflow: hidden;
        min-height: 72px;
        white-space: nowrap;
    }

    .section {
        width: calc(100% - 30px);
        padding: 88px 0;
    }

    .intro-grid h2,
    .section-heading h2,
    .steps-intro h2,
    .subscribe-copy h2 {
        font-size: clamp(38px, 12vw, 55px);
    }

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

    .feature-card,
    .feature-card-large,
    .feature-card:nth-child(2),
    .feature-card:nth-child(3) {
        min-height: 420px;
    }

    .feature-card-wide {
        grid-column: auto;
        display: flex;
        min-height: 470px;
        padding-top: 75px;
    }

    .link-visual {
        grid-template-columns: 60px 85px 60px;
    }

    .link-node {
        width: 60px;
        height: 60px;
    }

    .signing-visual::before {
        width: 260px;
    }

    .sign-check {
        right: 6%;
    }

    .steps-list li {
        grid-template-columns: 55px 1fr;
        gap: 18px;
    }

    .step-index {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

    .plans-section {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    .plan-card {
        padding: 27px 24px;
    }

    .subscribe-section {
        width: calc(100% - 30px);
    }

    .form-panel {
        padding: 24px 18px;
    }

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

    .form-wide {
        grid-column: auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .site-footer nav {
        grid-column: auto;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom span:last-child {
        text-align: left;
    }

    .login-panel {
        padding: 31px 22px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
