:root {
    color-scheme: dark;
    --canvas: #030615;
    --canvas-deep: #01030c;
    --surface: rgba(12, 21, 55, 0.82);
    --surface-strong: rgba(10, 17, 43, 0.96);
    --surface-soft: rgba(255, 255, 255, 0.045);
    --line: rgba(168, 188, 255, 0.16);
    --line-strong: rgba(174, 194, 255, 0.3);
    --text: #f6f8ff;
    --muted: #98a3bc;
    --muted-light: #c8d1e4;
    --blue: #4561ef;
    --blue-light: #63a4ff;
    --purple: #6858eb;
    --cyan: #5ee3e5;
    --success: #58e6a7;
    --danger: #ff6f86;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    font-family: "Open Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    min-height: 100%;
    background: var(--canvas);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 2% 6%, rgba(34, 91, 224, 0.34), transparent 36rem),
        radial-gradient(circle at 98% 22%, rgba(77, 43, 207, 0.26), transparent 36rem),
        linear-gradient(180deg, #05091b 0%, var(--canvas) 42%, var(--canvas-deep) 100%);
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(159, 181, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 181, 255, 0.08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, #000, transparent 52%);
}

button,
input {
    font: inherit;
}

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

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

img {
    max-width: 100%;
}

button {
    color: inherit;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: #081126;
    background: #fff;
    border-radius: 9px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transition: opacity 160ms ease, transform 160ms ease;
}

.skip-link:focus {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

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

#features,
#how-it-works,
#plans,
#contact {
    scroll-margin-top: 110px;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 16px;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    min-height: 72px;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
    padding: 10px 12px 10px 18px;
    background:
        linear-gradient(115deg, rgba(44, 89, 213, 0.18), rgba(7, 10, 27, 0.88) 43%, rgba(68, 37, 163, 0.13)),
        rgba(6, 9, 23, 0.82);
    border: 1px solid rgba(158, 182, 255, 0.23);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(86, 111, 255, 0.08);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.brand-link {
    display: inline-flex;
    width: 166px;
    align-items: center;
}

.brand-link img {
    display: block;
    width: 100%;
    height: auto;
}

.site-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.7vw, 34px);
}

.site-navigation a,
.footer-top nav a {
    position: relative;
    color: var(--muted-light);
    font-size: 13px;
    font-weight: 600;
    transition: color 160ms ease;
}

.mobile-nav-login {
    display: none;
}

.site-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--blue-light), var(--purple));
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible,
.footer-top nav a:hover,
.footer-top nav a:focus-visible {
    color: #fff;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions,
.hero-actions,
.contact-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.dialog-close:focus-visible,
.code-visibility:focus-visible {
    outline: 3px solid rgba(114, 185, 255, 0.45);
    outline-offset: 3px;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #4059e8 0%, #5798ff 58%, #7468f4 100%);
    border-color: rgba(171, 205, 255, 0.62);
    box-shadow: 0 14px 34px rgba(48, 79, 224, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(17, 37, 130, 0.42);
}

.button-primary:hover {
    box-shadow: 0 16px 36px rgba(83, 103, 245, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.button-ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--line-strong);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(174, 194, 255, 0.46);
}

.button-compact {
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    place-items: center;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: #dce5fa;
    border-radius: 2px;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
    min-height: 720px;
    align-items: center;
    gap: clamp(36px, 6vw, 84px);
    margin-top: 28px;
    overflow: hidden;
    padding: clamp(96px, 10vw, 136px) clamp(24px, 4vw, 52px) clamp(84px, 9vw, 116px);
    background:
        radial-gradient(ellipse at 24% -15%, rgba(139, 190, 255, 0.38), transparent 36%),
        linear-gradient(108deg, rgba(38, 82, 224, 0.72) 0%, rgba(43, 65, 184, 0.49) 36%, rgba(12, 18, 53, 0.88) 57%, rgba(5, 7, 22, 0.96) 100%);
    border: 1px solid rgba(153, 179, 255, 0.25);
    border-radius: 30px;
    box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(74, 87, 210, 0.16);
    isolation: isolate;
}

.hero::before {
    position: absolute;
    z-index: 1;
    top: -26%;
    left: 8%;
    width: 34%;
    height: 148%;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.085), transparent);
    filter: blur(10px);
    transform: skewX(-8deg);
}

.hero-copy,
.product-preview {
    position: relative;
    z-index: 2;
}

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

.hero-glow-one {
    top: 2%;
    left: -28%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41, 122, 255, 0.25), transparent 68%);
}

.hero-glow-two {
    right: -18%;
    bottom: -7%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(105, 65, 255, 0.22), transparent 68%);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #b9c7e5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 7px;
    height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(94, 227, 229, 0.08), 0 0 18px rgba(94, 227, 229, 0.55);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

h1 span,
.section-heading h2 span {
    color: transparent;
    background: linear-gradient(100deg, #84c8ff, #7c76ff 74%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-intro {
    max-width: 640px;
    margin: 28px 0 30px;
    color: var(--muted-light);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.75;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin: 28px 0 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
    font-size: 11px;
    font-weight: 600;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust li span {
    color: var(--success);
}

.hero-qualifier {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.noscript-login {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 30px;
    align-items: end;
    margin-block: 24px 70px;
    padding: 30px;
    background: rgba(15, 22, 49, 0.92);
    border: 1px solid var(--line-strong);
    border-radius: 22px;
}

.noscript-login h2,
.noscript-login p {
    margin-bottom: 10px;
}

.noscript-login form {
    display: grid;
    gap: 10px;
}

.noscript-login label {
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 700;
}

.noscript-login input {
    min-height: 48px;
    padding: 0 14px;
    color: #fff;
    background: rgba(4, 8, 22, 0.72);
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    font: inherit;
}

.product-preview {
    min-width: 0;
    padding: 18px;
    background:
        radial-gradient(circle at 95% 0, rgba(104, 75, 255, 0.34), transparent 19rem),
        linear-gradient(145deg, rgba(41, 60, 137, 0.76), rgba(8, 12, 33, 0.94) 62%, rgba(25, 16, 62, 0.9));
    border: 1px solid rgba(175, 195, 255, 0.37);
    border-radius: 24px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52), 0 0 60px rgba(52, 73, 211, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(82, 101, 243, 0.12);
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.preview-topbar {
    display: grid;
    grid-template-columns: 34px auto 1fr 34px;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.preview-brand-mark,
.preview-avatar,
.contract-initial {
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-weight: 800;
}

.preview-brand-mark {
    width: 34px;
    height: 34px;
    color: #071020;
    background: linear-gradient(135deg, #76d9e2, #7778ff);
}

.preview-topbar > strong {
    font-size: 12px;
}

.preview-search {
    min-width: 0;
    margin-left: 12px;
    padding: 9px 12px;
    color: #73809d;
    background: rgba(3, 7, 21, 0.7);
    border: 1px solid var(--line);
    border-radius: 9px;
    font-size: 9px;
}

.preview-avatar {
    width: 34px;
    height: 34px;
    color: #c9dbff;
    background: rgba(111, 133, 255, 0.16);
    border: 1px solid var(--line);
    font-size: 9px;
}

.preview-layout {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
}

.preview-sidebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 9px;
    background: rgba(3, 7, 21, 0.64);
    border: 1px solid var(--line);
    border-radius: 12px;
    flex-direction: column;
}

.preview-sidebar span {
    width: 18px;
    height: 18px;
    background: rgba(157, 175, 218, 0.18);
    border-radius: 6px;
}

.preview-sidebar span.is-active {
    background: linear-gradient(135deg, #6dbbff, #7471ff);
    box-shadow: 0 0 16px rgba(108, 122, 255, 0.35);
}

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

.preview-heading,
.preview-contracts-title,
.preview-contract-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

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

.preview-heading small {
    color: #7b8aab;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

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

.preview-heading > span {
    padding: 9px 10px;
    color: #071020;
    background: linear-gradient(135deg, #79d7e1, #737bff);
    border-radius: 9px;
    font-size: 8px;
    font-weight: 800;
}

.preview-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-block: 14px;
}

.preview-metrics article {
    display: grid;
    min-width: 0;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.preview-metrics small,
.preview-metrics span,
.preview-contract-row small,
.preview-success small {
    color: #7885a2;
    font-size: 7px;
}

.preview-metrics strong {
    font-size: 20px;
}

.preview-contracts {
    overflow: hidden;
    background: rgba(3, 7, 21, 0.5);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.preview-contracts-title {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
}

.preview-contracts-title strong,
.preview-contracts-title span {
    font-size: 8px;
}

.preview-contracts-title span {
    color: #8eabff;
}

.preview-contract-row {
    justify-content: flex-start;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(168, 188, 255, 0.1);
}

.preview-contract-row:last-child {
    border-bottom: 0;
}

.contract-initial {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    color: #99f1d0;
    background: rgba(77, 219, 164, 0.12);
    font-size: 7px;
}

.contract-initial-blue {
    color: #a8d9ff;
    background: rgba(83, 152, 255, 0.14);
}

.contract-initial-purple {
    color: #c0b4ff;
    background: rgba(129, 102, 255, 0.14);
}

.preview-contract-row > div {
    display: grid;
    min-width: 0;
    flex: 1;
    gap: 3px;
}

.preview-contract-row > div strong {
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status-chip {
    flex: 0 0 auto;
    padding: 5px 7px;
    color: #aab5ce;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 6px;
    font-style: normal;
    font-weight: 800;
}

.status-sent {
    color: #9dc3ff;
    background: rgba(69, 125, 255, 0.1);
}

.status-signed {
    color: #72e7b4;
    background: rgba(61, 207, 145, 0.1);
}

.preview-success {
    position: absolute;
    right: -20px;
    bottom: -25px;
    display: flex;
    align-items: center;
    gap: 9px;
    width: 190px;
    padding: 12px;
    background: rgba(14, 22, 46, 0.94);
    border: 1px solid rgba(88, 230, 167, 0.34);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
}

.preview-success > span {
    display: grid;
    width: 30px;
    height: 30px;
    color: #071a14;
    background: var(--success);
    border-radius: 50%;
    font-weight: 900;
    place-items: center;
}

.preview-success > div {
    display: grid;
    gap: 3px;
}

.preview-success strong {
    font-size: 9px;
}

.workflow-strip {
    display: flex;
    width: min(1050px, calc(100% - 48px));
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3vw, 32px);
    margin: 0 auto;
    padding: 22px 30px;
    color: #aab5cf;
    background: linear-gradient(110deg, rgba(41, 76, 181, 0.25), rgba(9, 14, 36, 0.83) 52%, rgba(64, 38, 144, 0.2));
    border: 1px solid rgba(158, 181, 255, 0.24);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.workflow-strip i {
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(94, 227, 229, 0.65);
}

.section-block {
    padding-block: clamp(100px, 12vw, 160px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.section-heading-centered {
    margin-inline: auto;
    text-align: center;
}

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

.section-heading h2,
.security-copy h2,
.workforce-copy h2,
.contact-section h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.052em;
}

.section-heading > p:last-child,
.security-copy > p,
.workforce-copy > p,
.contact-section > div:first-child > p:last-child {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.section-heading-centered > p:last-child {
    margin-inline: auto;
}

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

.feature-panel,
.capability-grid article,
.plan-card,
.contact-card,
.steps-grid li {
    background:
        radial-gradient(circle at 100% 0, rgba(91, 72, 236, 0.2), transparent 18rem),
        linear-gradient(145deg, rgba(36, 63, 150, 0.19), rgba(8, 13, 35, 0.88) 57%, rgba(44, 25, 100, 0.16)),
        var(--surface);
    border: 1px solid rgba(156, 181, 255, 0.22);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(70, 91, 216, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.feature-panel {
    position: relative;
    display: grid;
    min-height: 440px;
    overflow: hidden;
    align-content: space-between;
    padding: 28px;
    border-radius: 22px;
}

.feature-panel-wide {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
    min-height: 320px;
    align-items: center;
    gap: 54px;
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(196, 208, 241, 0.22);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.feature-visual {
    display: grid;
    min-height: 218px;
    place-items: center;
}

.mini-document {
    position: relative;
    display: grid;
    width: 176px;
    gap: 14px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(84, 109, 245, 0.18), rgba(33, 44, 85, 0.74));
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    box-shadow: 22px 22px 0 rgba(61, 78, 164, 0.1), 0 22px 55px rgba(0, 0, 0, 0.26);
    transform: rotate(-4deg);
}

.mini-document > span {
    color: #b7c9fa;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.mini-document > i {
    height: 4px;
    background: rgba(167, 187, 240, 0.18);
    border-radius: 3px;
}

.mini-document > i:nth-of-type(2) {
    width: 82%;
}

.mini-document > i:nth-of-type(3) {
    width: 66%;
}

.mini-document > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.mini-document b,
.mini-document em {
    color: #8392b6;
    font-size: 7px;
    font-style: normal;
}

.visual-plus {
    position: absolute;
    top: 36%;
    right: 20%;
    display: grid;
    width: 44px;
    height: 44px;
    color: #061324;
    background: linear-gradient(135deg, var(--cyan), #7182ff);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(62, 110, 246, 0.25);
    font-size: 24px;
    font-weight: 600;
    place-items: center;
}

.share-visual {
    grid-template-columns: auto auto auto;
    gap: 30px;
}

.person-badge {
    display: grid;
    width: 74px;
    height: 74px;
    color: #071323;
    background: linear-gradient(135deg, #76dce3, #74a5ff);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(70, 150, 238, 0.22);
    font-size: 24px;
    font-weight: 800;
    place-items: center;
}

.person-badge-client {
    color: #ebe8ff;
    background: linear-gradient(135deg, #494c8c, #755be0);
}

.share-visual i {
    color: #89a0d1;
    font-size: 28px;
    font-style: normal;
}

.signature-visual {
    position: relative;
    align-content: center;
}

.signature-visual > span {
    width: min(280px, 82%);
    padding: 24px 24px 22px;
    color: #d9e2f6;
    background: rgba(65, 78, 142, 0.19);
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    font-size: 20px;
    font-style: italic;
}

.signature-visual > strong {
    position: absolute;
    right: 20%;
    bottom: 24%;
    display: grid;
    width: 38px;
    height: 38px;
    color: #082019;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(88, 230, 167, 0.32);
    place-items: center;
}

.signature-visual > i {
    position: absolute;
    bottom: 31%;
    width: 210px;
    height: 1px;
    background: rgba(178, 197, 255, 0.35);
}

.feature-content {
    position: relative;
    z-index: 2;
    max-width: 530px;
}

.feature-label,
.plan-kicker,
.contact-label {
    display: block;
    margin-bottom: 12px;
    color: #86a5ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.feature-content h3,
.capability-grid h3,
.steps-grid h3,
.plan-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.feature-content p,
.capability-grid p,
.steps-grid p,
.plan-card > p,
.contact-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.search-visual {
    display: grid;
    gap: 12px;
    padding: 22px;
    background: rgba(3, 7, 21, 0.54);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.search-field {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    color: #73819f;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    border-radius: 11px;
    font-size: 11px;
}

.search-field > span {
    position: relative;
    width: 14px;
    height: 14px;
    border: 2px solid #7182a8;
    border-radius: 50%;
}

.search-field > span::after {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 6px;
    height: 2px;
    content: "";
    background: #7182a8;
    transform: rotate(45deg);
}

.search-result {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(88, 230, 167, 0.055);
    border: 1px solid rgba(88, 230, 167, 0.22);
    border-radius: 12px;
}

.search-result > b {
    display: grid;
    width: 38px;
    height: 38px;
    color: #061b14;
    background: var(--success);
    border-radius: 11px;
    place-items: center;
}

.search-result > div {
    display: grid;
    gap: 4px;
}

.search-result strong {
    font-size: 12px;
}

.search-result small {
    color: var(--muted);
    font-size: 9px;
}

.search-result em {
    color: #8fb0ff;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.capability-grid article {
    min-width: 0;
    padding: 22px;
    border-radius: 18px;
}

.capability-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 26px;
    color: #bcd1ff;
    background: rgba(83, 111, 247, 0.13);
    border: 1px solid rgba(126, 157, 255, 0.25);
    border-radius: 13px;
    font-size: 13px;
    font-weight: 800;
    place-items: center;
}

.capability-grid h3 {
    font-size: 16px;
}

.capability-grid p {
    font-size: 12px;
}

.security-section,
.workforce-section,
.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
    margin-bottom: clamp(100px, 12vw, 160px);
    padding: clamp(42px, 6vw, 76px);
    background:
        radial-gradient(circle at 12% 22%, rgba(49, 109, 255, 0.3), transparent 28rem),
        radial-gradient(circle at 95% 80%, rgba(105, 61, 244, 0.28), transparent 30rem),
        linear-gradient(135deg, rgba(26, 48, 124, 0.28), rgba(8, 12, 31, 0.89) 58%, rgba(36, 19, 89, 0.2));
    border: 1px solid rgba(157, 181, 255, 0.24);
    border-radius: 28px;
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(84, 101, 223, 0.1);
}

.security-copy h2,
.workforce-copy h2,
.contact-section h2 {
    font-size: clamp(36px, 4.2vw, 56px);
}

.security-copy ul {
    display: grid;
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.security-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-light);
    font-size: 13px;
}

.security-copy li span {
    display: grid;
    width: 24px;
    height: 24px;
    color: #071b14;
    background: var(--success);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

.security-orbit {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(118, 150, 255, 0.2);
    border-radius: 50%;
}

.orbit-ring-one {
    width: 360px;
    height: 360px;
}

.orbit-ring-two {
    width: 260px;
    height: 260px;
    border-style: dashed;
}

.security-shield {
    position: relative;
    z-index: 2;
    display: grid;
    width: 170px;
    height: 190px;
    place-content: center;
    justify-items: center;
    background: linear-gradient(145deg, rgba(91, 109, 247, 0.34), rgba(59, 74, 159, 0.18));
    border: 1px solid rgba(139, 166, 255, 0.45);
    border-radius: 52% 52% 44% 44% / 38% 38% 64% 64%;
    box-shadow: 0 28px 60px rgba(21, 39, 126, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.security-shield > span {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
    color: #071c14;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(88, 230, 167, 0.32);
    font-size: 23px;
    font-weight: 900;
    place-items: center;
}

.security-shield strong {
    font-size: 17px;
}

.security-shield small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
}

.orbit-tag {
    position: absolute;
    z-index: 3;
    padding: 10px 13px;
    color: #cbd7ef;
    background: rgba(11, 17, 39, 0.86);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
    font-size: 9px;
    font-weight: 700;
}

.orbit-tag-one {
    top: 16%;
    left: 3%;
}

.orbit-tag-two {
    right: 0;
    bottom: 27%;
}

.orbit-tag-three {
    bottom: 9%;
    left: 15%;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-grid::before {
    position: absolute;
    z-index: -1;
    top: 40px;
    right: 10%;
    left: 10%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(111, 146, 255, 0.54), transparent);
}

.steps-grid li {
    position: relative;
    min-height: 260px;
    padding: 28px;
    border-radius: 20px;
}

.steps-grid li > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 62px;
    color: #b9ccff;
    background: rgba(75, 104, 230, 0.16);
    border: 1px solid rgba(129, 158, 255, 0.34);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 800;
    place-items: center;
}

.steps-grid h3 {
    font-size: 19px;
}

.steps-grid p {
    font-size: 12px;
}

.workforce-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
}

.workforce-copy .button {
    margin-top: 30px;
}

.workforce-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.workforce-grid article {
    display: grid;
    min-width: 0;
    gap: 5px;
    padding: 18px;
    background: rgba(4, 9, 25, 0.52);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.workforce-grid article > span {
    margin-bottom: 20px;
    color: #7295f5;
    font-size: 9px;
    font-weight: 800;
}

.workforce-grid strong {
    font-size: 14px;
}

.workforce-grid small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
}

.plan-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 30px;
    border-radius: 22px;
    flex-direction: column;
}

.plan-card-featured {
    border-color: rgba(111, 141, 255, 0.58);
    box-shadow: 0 30px 76px rgba(43, 63, 204, 0.3), 0 0 55px rgba(68, 77, 223, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateY(-12px);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 9px;
    color: #071524;
    background: linear-gradient(135deg, var(--cyan), #84a4ff);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-card h3 {
    font-size: 24px;
}

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

.plan-card > strong {
    margin-top: 26px;
    font-size: 19px;
}

.plan-card > small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
}

.plan-card ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 30px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    position: relative;
    padding-left: 24px;
    color: var(--muted-light);
    font-size: 12px;
    line-height: 1.45;
}

.plan-card li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--success);
    font-weight: 900;
}

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

.plans-note {
    margin: 28px auto 0;
    color: #74809b;
    font-size: 10px;
    text-align: center;
}

.contact-section {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.7fr);
}

.contact-card {
    padding: 28px;
    border-radius: 20px;
}

.contact-card > a {
    display: inline-block;
    color: #a9c8ff;
    font-size: clamp(18px, 2.4vw, 27px);
    font-weight: 800;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
}

.contact-actions {
    flex-wrap: wrap;
    margin-top: 24px;
}

.site-footer {
    padding-block: 28px 42px;
    border-top: 1px solid var(--line);
}

.footer-top {
    display: grid;
    grid-template-columns: 180px minmax(240px, 1fr) auto;
    align-items: center;
    gap: 30px;
    padding-bottom: 28px;
}

.footer-brand {
    width: 150px;
}

.footer-top > p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.footer-top nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-top nav a {
    font-size: 11px;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    color: #68748f;
    border-top: 1px solid rgba(168, 188, 255, 0.1);
    font-size: 9px;
    line-height: 1.6;
}

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

.login-dialog {
    width: min(520px, calc(100% - 32px));
    max-height: min(760px, calc(100dvh - 32px));
    overflow: auto;
    padding: 34px;
    color: var(--text);
    background:
        radial-gradient(circle at 100% 0, rgba(87, 65, 236, 0.32), transparent 23rem),
        linear-gradient(145deg, rgba(28, 49, 122, 0.34), rgba(6, 10, 28, 0.98) 58%, rgba(35, 20, 87, 0.24));
    border: 1px solid rgba(169, 193, 255, 0.36);
    border-radius: 24px;
    box-shadow: 0 38px 110px rgba(0, 0, 0, 0.72), 0 0 80px rgba(54, 63, 206, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.login-dialog::backdrop {
    background: rgba(1, 3, 10, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dialog-close-form {
    position: absolute;
    top: 14px;
    right: 14px;
    margin: 0;
}

.dialog-close {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #b7c2da;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    font-size: 24px;
    place-items: center;
}

.login-dialog-brand {
    width: 170px;
    margin-bottom: 36px;
}

.login-dialog-brand img {
    display: block;
    width: 100%;
    height: auto;
}

.welcome-kicker {
    display: block;
    margin-bottom: 10px;
    color: #87a7ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.welcome-copy h2 {
    margin: 0 0 9px;
    font-size: 34px;
    letter-spacing: -0.04em;
}

.welcome-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.gateway-form {
    margin-top: 30px;
}

.field-group + .field-group {
    margin-top: 20px;
}

.field-group > label,
.field-label-row {
    color: #eef3ff;
    font-size: 11px;
    font-weight: 700;
}

.field-group > label {
    display: block;
    margin-bottom: 9px;
}

.field-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 9px;
}

.code-visibility {
    padding: 5px 0;
    color: #8da7ff;
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
}

.input-shell {
    display: flex;
    height: 54px;
    align-items: center;
    gap: 11px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.input-shell:focus-within {
    background: rgba(79, 96, 232, 0.08);
    border-color: rgba(101, 142, 255, 0.82);
    box-shadow: 0 0 0 4px rgba(73, 111, 244, 0.13);
}

.input-icon {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    color: #9fb7f2;
    background: rgba(95, 120, 235, 0.12);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    place-items: center;
}

.input-shell input {
    width: 100%;
    min-width: 0;
    color: var(--text);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 13px;
}

.input-shell input::placeholder {
    color: #6f7991;
}

.code-shell {
    position: relative;
    cursor: text;
}

.code-boxes {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.code-boxes span {
    display: grid;
    height: 52px;
    color: #eaf0ff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 11px;
    font-size: 18px;
    font-weight: 800;
    place-items: center;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.code-boxes span.is-filled {
    background: rgba(86, 105, 233, 0.1);
    border-color: rgba(111, 146, 255, 0.45);
}

.code-boxes span.is-active {
    border-color: rgba(107, 165, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(70, 105, 235, 0.13);
}

.native-code-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.login-error {
    display: none;
    align-items: center;
    gap: 9px;
    margin: 16px 0 0;
    padding: 11px 12px;
    color: #ffafbb;
    background: rgba(255, 78, 105, 0.09);
    border: 1px solid rgba(255, 91, 116, 0.22);
    border-radius: 10px;
    font-size: 10px;
}

.login-error:target,
.login-error.is-visible {
    display: flex;
}

.login-error > span {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: #24040a;
    background: var(--danger);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

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

.security-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    color: #7d8aa6;
    font-size: 9px;
    line-height: 1.55;
}

.security-note > span {
    color: var(--success);
    font-weight: 900;
}

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

    .site-navigation {
        gap: 16px;
    }

    .header-plan-button {
        display: none;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
        gap: 44px;
    }

    h1 {
        font-size: clamp(50px, 6vw, 72px);
    }

    .capability-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid::before {
        display: none;
    }

    .steps-grid li {
        min-height: 230px;
    }

    .steps-grid li > span {
        margin-bottom: 42px;
    }
}

@media (max-width: 880px) {
    .section-shell,
    .site-header {
        width: min(100% - 36px, 760px);
    }

    .site-header {
        grid-template-columns: 1fr auto auto;
        min-height: 66px;
        padding: 9px 10px 9px 14px;
    }

    .brand-link {
        width: 150px;
    }

    .menu-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .site-navigation {
        position: absolute;
        top: calc(100% + 9px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        gap: 3px;
        padding: 10px;
        background: rgba(7, 11, 27, 0.97);
        border: 1px solid var(--line-strong);
        border-radius: 16px;
        box-shadow: 0 25px 55px rgba(0, 0, 0, 0.48);
        flex-direction: column;
    }

    .site-navigation.is-open {
        display: flex;
    }

    .site-navigation a,
    .mobile-nav-login {
        min-height: 46px;
        padding: 0 14px;
        border-radius: 10px;
        line-height: 46px;
    }

    .site-navigation a:hover,
    .site-navigation a:focus-visible,
    .mobile-nav-login:hover,
    .mobile-nav-login:focus-visible {
        background: rgba(91, 109, 247, 0.1);
    }

    .site-navigation a::after {
        display: none;
    }

    .header-actions {
        grid-column: 3;
        grid-row: 1;
    }

    .header-actions .button-compact {
        min-height: 44px;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
        padding-block: 92px 100px;
        background:
            radial-gradient(ellipse at 28% -8%, rgba(139, 190, 255, 0.34), transparent 34%),
            linear-gradient(180deg, rgba(38, 82, 224, 0.68) 0%, rgba(35, 53, 151, 0.48) 37%, rgba(7, 11, 31, 0.95) 70%);
        text-align: center;
    }

    .noscript-login {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-copy {
        max-width: 720px;
        margin-inline: auto;
    }

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

    .hero-intro {
        margin-inline: auto;
    }

    .product-preview {
        width: min(620px, 100%);
        margin: 20px auto 0;
        text-align: left;
        transform: none;
    }

    .feature-showcase,
    .security-section,
    .workforce-section,
    .contact-section {
        grid-template-columns: minmax(0, 1fr);
    }

    .feature-panel-wide {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .security-section,
    .workforce-section,
    .contact-section {
        gap: 46px;
    }

    .security-orbit {
        min-height: 380px;
    }

    .plans-grid {
        grid-template-columns: minmax(0, 1fr);
        width: min(620px, 100%);
        margin-inline: auto;
    }

    .plan-card-featured {
        transform: none;
    }

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

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

    .footer-top nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .section-shell,
    .site-header {
        width: calc(100% - 28px);
    }

    .site-header {
        top: 8px;
        margin-top: 8px;
        border-radius: 15px;
    }

    .brand-link {
        width: 124px;
    }

    .header-actions .button {
        min-height: 42px;
        padding: 0 12px;
        font-size: 10px;
    }

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

    .hero {
        min-height: 0;
        gap: 48px;
        margin-top: 18px;
        padding-block: 82px 82px;
        border-radius: 24px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 0.16em;
    }

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

    .hero-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-actions,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .contact-actions .button,
    .workforce-copy .button {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
    }

    .product-preview {
        padding: 12px;
        border-radius: 18px;
    }

    .preview-topbar {
        grid-template-columns: 30px auto 1fr 30px;
    }

    .preview-brand-mark,
    .preview-avatar {
        width: 30px;
        height: 30px;
    }

    .preview-search {
        margin-left: 0;
    }

    .preview-layout {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 8px;
    }

    .preview-sidebar {
        padding-inline: 6px;
    }

    .preview-sidebar span {
        width: 14px;
        height: 14px;
    }

    .preview-heading > div strong {
        font-size: 11px;
    }

    .preview-heading > span {
        padding: 8px 7px;
        font-size: 6px;
    }

    .preview-metrics article {
        padding: 9px;
    }

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

    .preview-metrics span {
        display: none;
    }

    .preview-contract-row {
        padding-inline: 8px;
    }

    .preview-contract-row:nth-child(4) {
        display: none;
    }

    .preview-success {
        right: -5px;
        bottom: -30px;
    }

    .workflow-strip {
        width: calc(100% - 28px);
        justify-content: flex-start;
        gap: 13px;
        overflow-x: auto;
        padding: 18px;
        border-radius: 14px;
        scrollbar-width: none;
    }

    .workflow-strip::-webkit-scrollbar {
        display: none;
    }

    .workflow-strip span,
    .workflow-strip i {
        flex: 0 0 auto;
    }

    .section-block {
        padding-block: 96px;
    }

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

    .section-heading h2,
    .security-copy h2,
    .workforce-copy h2,
    .contact-section h2 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .section-heading > p:last-child,
    .security-copy > p,
    .workforce-copy > p,
    .contact-section > div:first-child > p:last-child {
        font-size: 13px;
    }

    .feature-showcase,
    .capability-grid,
    .steps-grid,
    .workforce-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .feature-panel,
    .feature-panel-wide {
        min-height: 390px;
        padding: 22px;
        border-radius: 18px;
    }

    .feature-panel-wide {
        min-height: 0;
    }

    .capability-grid article {
        padding: 20px;
    }

    .capability-icon {
        margin-bottom: 20px;
    }

    .security-section,
    .workforce-section,
    .contact-section {
        width: calc(100% - 20px);
        margin-bottom: 96px;
        padding: 38px 20px;
        border-radius: 22px;
    }

    .security-orbit {
        min-height: 330px;
        transform: scale(0.86);
    }

    .orbit-ring-one {
        width: 320px;
        height: 320px;
    }

    .orbit-ring-two {
        width: 230px;
        height: 230px;
    }

    .steps-grid li {
        min-height: 0;
        padding: 22px;
    }

    .steps-grid li > span {
        margin-bottom: 28px;
    }

    .workforce-grid article > span {
        margin-bottom: 12px;
    }

    .plan-card {
        padding: 24px;
    }

    .contact-card {
        padding: 22px;
    }

    .footer-top {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .footer-top nav {
        grid-column: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .login-dialog {
        width: calc(100% - 20px);
        max-height: calc(100dvh - 20px);
        padding: 28px 20px 24px;
        border-radius: 20px;
    }

    .login-dialog-brand {
        width: 140px;
        margin-bottom: 30px;
    }

    .welcome-copy h2 {
        font-size: 29px;
    }

    .code-boxes {
        gap: 6px;
    }

    .code-boxes span {
        height: 48px;
        border-radius: 9px;
    }
}

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

    .menu-toggle {
        grid-column: 2;
    }

    .header-actions {
        display: none;
    }

    .mobile-nav-login {
        display: flex;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        margin-top: 5px;
        color: #071020;
        background: linear-gradient(135deg, #7dcaff, #7b74ff);
        border: 0;
        border-radius: 10px;
        cursor: pointer;
        font-family: inherit;
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
    }

    h1 {
        font-size: 42px;
    }

    .hero-trust {
        grid-template-columns: minmax(0, 1fr);
    }

    .preview-search {
        display: none;
    }

    .preview-topbar {
        grid-template-columns: 30px 1fr 30px;
    }

    .preview-success {
        width: 172px;
    }
}

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

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