:root {
    color-scheme: dark;
    --bg: #07110f;
    --bg-raised: #0b1714;
    --surface: rgba(14, 29, 25, 0.78);
    --surface-solid: #0e1d19;
    --surface-soft: #12231f;
    --surface-strong: #18302a;
    --text: #f3f7f4;
    --text-soft: #a6b5af;
    --text-faint: #71837c;
    --line: rgba(215, 238, 228, 0.13);
    --line-strong: rgba(215, 238, 228, 0.22);
    --accent: #9de44f;
    --accent-bright: #b8f26f;
    --accent-soft: rgba(157, 228, 79, 0.12);
    --teal: #52e0bb;
    --blue: #62a7ff;
    --danger: #ff8b7e;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    --header-bg: rgba(7, 17, 15, 0.72);
    --max-width: 1240px;
    --radius: 22px;
    --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

[data-theme="light"] {
    color-scheme: light;
    --bg: #f4f7f1;
    --bg-raised: #edf2e9;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-solid: #ffffff;
    --surface-soft: #e9efe5;
    --surface-strong: #dde8d8;
    --text: #10201b;
    --text-soft: #52635c;
    --text-faint: #7b8b84;
    --line: rgba(20, 50, 40, 0.12);
    --line-strong: rgba(20, 50, 40, 0.2);
    --accent: #4a8b19;
    --accent-bright: #64a92d;
    --accent-soft: rgba(93, 157, 43, 0.12);
    --teal: #158a71;
    --blue: #3279d5;
    --danger: #c64d42;
    --shadow: 0 28px 70px rgba(28, 50, 40, 0.14);
    --header-bg: rgba(244, 247, 241, 0.8);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    transition: background-color 220ms ease, color 220ms ease;
}

body.dialog-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

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

button {
    color: inherit;
}

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

p,
h1,
h2,
h3,
blockquote {
    margin: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

::selection {
    background: var(--accent);
    color: #10200c;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--accent);
    color: #10200c;
    font-weight: 800;
    transform: translateY(-150%);
}

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

.page-grid {
    position: absolute;
    z-index: -2;
    inset: 0 0 auto;
    height: 920px;
    opacity: 0.45;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.ambient {
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.ambient-one {
    top: 70px;
    left: -260px;
    background: rgba(78, 180, 113, 0.16);
}

.ambient-two {
    top: 280px;
    right: -280px;
    background: rgba(73, 181, 160, 0.12);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    border-color: var(--line);
    background: var(--header-bg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    overflow: visible;
}

.mark-frame {
    fill: var(--accent-soft);
    stroke: var(--accent);
    stroke-width: 1.6;
}

.mark-top {
    fill: var(--accent-bright);
}

.mark-left {
    fill: var(--accent);
    opacity: 0.72;
}

.mark-right {
    fill: var(--teal);
    opacity: 0.82;
}

.brand-name {
    display: flex;
    align-items: baseline;
    letter-spacing: -0.03em;
    line-height: 1;
}

.brand-name strong {
    font-size: 17px;
    font-weight: 800;
}

.brand-name span {
    margin-left: 4px;
    color: var(--text-soft);
    font-size: 17px;
    font-weight: 500;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    transition: color 160ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -11px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--text);
}

.desktop-nav a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

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

.language-switcher {
    display: flex;
    align-items: center;
    padding-right: 9px;
    margin-right: 1px;
    border-right: 1px solid var(--line);
}

.language-switcher button {
    display: none;
    min-width: 37px;
    padding: 6px 7px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}

.language-switcher:hover,
.language-switcher:focus-within {
    position: relative;
}

.language-switcher button.active,
.language-switcher:hover button,
.language-switcher:focus-within button {
    display: block;
}

.language-switcher button:hover,
.language-switcher button.active {
    background: var(--surface-soft);
    color: var(--text);
}

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

.icon-button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text-soft);
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.icon-button:hover {
    border-color: var(--line-strong);
    background: var(--surface-soft);
    color: var(--text);
}

.theme-toggle svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

[data-theme="dark"] .sun-icon,
[data-theme="light"] .moon-icon {
    display: none;
}

.text-button {
    padding: 9px 10px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
}

.text-button:hover {
    color: var(--text);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border: 1px solid var(--accent);
    border-radius: 11px;
    background: var(--accent);
    color: #11210d;
    cursor: pointer;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: -0.01em;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    border-color: var(--accent-bright);
    background: var(--accent-bright);
    box-shadow: 0 12px 32px rgba(118, 190, 55, 0.17);
    transform: translateY(-2px);
}

.button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.6;
}

.button-small {
    min-height: 38px;
    padding: 0 15px;
    border-radius: 9px;
    font-size: 13px;
}

.button-ghost {
    border-color: var(--line-strong);
    background: var(--surface);
    color: var(--text);
}

.button-ghost:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.button-wide {
    width: 100%;
}

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

.hero {
    position: relative;
    padding: 170px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.83fr) minmax(560px, 1.17fr);
    align-items: center;
    gap: 54px;
}

.hero-grid > * {
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 11px 7px 9px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--surface);
    color: var(--text-soft);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-dot,
.panel-status > span:first-child,
.system-status i,
.auth-aside-status i {
    position: relative;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero h1 {
    max-width: 670px;
    margin-top: 26px;
    font-size: clamp(50px, 5.3vw, 78px);
    font-weight: 730;
    letter-spacing: -0.065em;
    line-height: 0.99;
}

.hero h1 em {
    color: var(--accent);
    font-style: normal;
    font-weight: 500;
}

.hero-lead {
    max-width: 600px;
    margin-top: 28px;
    color: var(--text-soft);
    font-size: 19px;
    line-height: 1.66;
}

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

.hero-note {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 36px;
    color: var(--text-faint);
    font-size: 13px;
    line-height: 1.45;
}

.hero-note strong {
    color: var(--text-soft);
    font-size: 14px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    margin-left: -7px;
    border: 2px solid var(--bg);
    border-radius: 50%;
    background: var(--surface-strong);
    color: var(--text-soft);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 800;
}

.avatar-stack span:first-child {
    margin-left: 0;
    background: #24483b;
}

.avatar-stack span:nth-child(2) {
    background: #283e54;
}

.avatar-stack span:nth-child(3) {
    background: #463f2d;
}

.control-panel {
    position: relative;
    min-height: 488px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 17px;
    background: #0b1513;
    box-shadow: var(--shadow), 0 0 0 7px rgba(200, 240, 215, 0.025);
    color: #e8f0eb;
    transform: perspective(1300px) rotateY(-1deg) rotateX(1deg);
}

.control-panel::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
    content: "";
    pointer-events: none;
}

.panel-glow {
    position: absolute;
    top: -180px;
    right: -90px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(88, 204, 146, 0.09);
    filter: blur(60px);
}

.panel-bar {
    position: relative;
    z-index: 1;
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    border-bottom: 1px solid rgba(215, 238, 228, 0.09);
    background: rgba(255, 255, 255, 0.015);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
}

.panel-title,
.panel-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-mini {
    width: 10px;
    height: 10px;
    border: 1px solid #9de44f;
    border-radius: 2px;
    transform: rotate(30deg);
}

.panel-status {
    color: #81938c;
}

.panel-status > span:first-child {
    width: 5px;
    height: 5px;
    background: #9de44f;
    box-shadow: none;
}

.panel-layout {
    display: grid;
    min-height: 443px;
    grid-template-columns: 45px 1fr;
}

.panel-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 17px 0 13px;
    border-right: 1px solid rgba(215, 238, 228, 0.08);
    gap: 16px;
}

.side-logo {
    width: 16px;
    height: 16px;
    margin-bottom: 10px;
    border-radius: 4px;
    background: #9de44f;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.side-item {
    width: 15px;
    height: 15px;
    border: 1px solid #374a43;
    border-radius: 4px;
}

.side-item.active {
    border-color: #9de44f;
    background: rgba(157, 228, 79, 0.15);
}

.side-bottom {
    margin-top: auto;
    border-radius: 50%;
}

.panel-content {
    padding: 22px 22px 19px;
}

.panel-heading,
.card-label,
.cost-top,
.security-console-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-heading > div {
    display: flex;
    flex-direction: column;
}

.panel-kicker {
    color: #70827b;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel-heading strong {
    margin-top: 3px;
    font-size: 16px;
}

.panel-time {
    padding: 4px 7px;
    border: 1px solid rgba(157, 228, 79, 0.2);
    border-radius: 4px;
    background: rgba(157, 228, 79, 0.08);
    color: #a9e66a;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
}

.metric-row {
    display: grid;
    margin-top: 18px;
    border: 1px solid rgba(215, 238, 228, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.018);
    grid-template-columns: repeat(3, 1fr);
}

.metric {
    position: relative;
    display: grid;
    min-height: 73px;
    align-content: center;
    padding: 11px 13px;
    border-right: 1px solid rgba(215, 238, 228, 0.07);
    grid-template-columns: 1fr auto;
}

.metric:last-child {
    border-right: 0;
}

.metric > span {
    grid-column: 1 / -1;
    color: #70827b;
    font-size: 10px;
}

.metric strong {
    margin-top: 3px;
    font-size: 20px;
    letter-spacing: -0.04em;
}

.metric small {
    align-self: end;
    padding-bottom: 3px;
    color: #85958f;
    font-family: var(--font-mono);
    font-size: 10px;
}

.metric small.positive {
    color: #9de44f;
}

.panel-main-grid {
    display: grid;
    margin-top: 13px;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 13px;
}

.topology-card,
.activity-card {
    min-height: 233px;
    padding: 13px;
    border: 1px solid rgba(215, 238, 228, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.018);
}

.card-label {
    color: #80918a;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
}

.card-label span:last-child {
    color: #b4c0bc;
}

.topology {
    width: 100%;
    margin: 3px 0 -5px;
    overflow: visible;
}

.topology-lines {
    fill: none;
    stroke: #31453e;
    stroke-dasharray: 4 5;
    stroke-width: 1;
}

.topology-node {
    fill: #11251f;
    stroke: #416057;
    stroke-width: 1;
}

.topology-node circle:nth-child(4) {
    fill: rgba(157, 228, 79, 0.06);
    stroke: #76aa49;
}

.topology-core {
    fill: #6d8e81;
}

.topology-core circle:nth-child(4),
.topology-core circle:nth-child(5) {
    fill: #9de44f;
}

.region-row {
    display: flex;
    justify-content: space-between;
    color: #61746c;
    font-family: var(--font-mono);
    font-size: 9px;
}

.region-row span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.region-row i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9de44f;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(215, 238, 228, 0.06);
}

.activity-item:last-child {
    border-bottom: 0;
}

.activity-icon {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 6px;
    font-size: 11px;
}

.activity-icon.deploy {
    background: rgba(98, 167, 255, 0.12);
    color: #62a7ff;
}

.activity-icon.policy {
    background: rgba(157, 228, 79, 0.12);
    color: #9de44f;
}

.activity-icon.cost {
    background: rgba(82, 224, 187, 0.12);
    color: #52e0bb;
}

.activity-item p {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.activity-item strong {
    overflow: hidden;
    font-size: 10px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.activity-item small {
    margin-top: 2px;
    color: #5e716a;
    font-family: var(--font-mono);
    font-size: 9px;
}

.integrations {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding-top: 72px;
    color: var(--text-faint);
}

.integrations > span {
    flex: 0 0 auto;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.integration-list {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.integration-list strong {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    opacity: 0.72;
}

.section {
    position: relative;
    padding: 132px 0;
}

.platform-section {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, var(--bg-raised), var(--bg) 75%);
}

.section-heading {
    display: grid;
    align-items: end;
    margin-bottom: 58px;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
}

.section-index,
.feature-tag,
.plan-name,
.auth-heading > span,
.auth-aside-copy > span,
.outcomes-heading > span,
.cta-kicker {
    display: block;
    margin-bottom: 18px;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.13em;
}

.section-heading h2,
.workflow-intro h2,
.security-copy h2,
.plans-section h2,
.faq-intro h2,
.outcomes-heading h2,
.cta-panel h2 {
    font-size: clamp(40px, 4.4vw, 64px);
    font-weight: 680;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.section-heading > p,
.workflow-intro > p,
.security-copy > p,
.faq-intro > p {
    max-width: 510px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
}

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

.bento-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
    transition: border-color 200ms ease, transform 200ms ease;
}

.bento-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
}

.card-copy {
    position: relative;
    z-index: 2;
    max-width: 425px;
}

.feature-tag {
    margin-bottom: 12px;
    font-size: 10px;
}

.card-copy h3 {
    font-size: 28px;
    font-weight: 680;
    letter-spacing: -0.04em;
}

.card-copy p {
    max-width: 430px;
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.fleet-card {
    background: radial-gradient(circle at 75% 85%, rgba(62, 148, 107, 0.12), transparent 45%), var(--surface);
}

.fleet-visual {
    position: absolute;
    right: 0;
    bottom: -155px;
    left: 0;
    width: 540px;
    height: 540px;
    margin: auto;
}

.radar-ring {
    position: absolute;
    inset: 0;
    margin: auto;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.ring-one {
    width: 160px;
    height: 160px;
}

.ring-two {
    width: 310px;
    height: 310px;
}

.ring-three {
    width: 490px;
    height: 490px;
}

.radar-ring::before,
.radar-ring::after {
    position: absolute;
    inset: 50% auto auto 50%;
    background: var(--line);
    content: "";
    transform: translate(-50%, -50%);
}

.radar-ring::before {
    width: 1px;
    height: 100%;
}

.radar-ring::after {
    width: 100%;
    height: 1px;
}

.radar-node {
    position: absolute;
    z-index: 2;
    display: block;
    width: 12px;
    height: 12px;
    border: 3px solid var(--surface-solid);
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 1px var(--teal), 0 0 22px rgba(82, 224, 187, 0.35);
}

.node-main {
    top: 264px;
    left: 264px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 0 28px var(--accent-soft);
}

.node-a { top: 197px; left: 174px; }
.node-b { top: 166px; right: 130px; }
.node-c { top: 315px; left: 136px; }
.node-d { top: 357px; right: 165px; }

.radar-label {
    position: absolute;
    z-index: 3;
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-solid);
    color: var(--text-soft);
    font-family: var(--font-mono);
    font-size: 10px;
    box-shadow: var(--shadow);
}

.label-a { top: 175px; left: 112px; }
.label-b { top: 144px; right: 51px; }
.label-c { top: 334px; right: 84px; }

.policy-card,
.cost-card,
.incident-card {
    display: flex;
    flex-direction: column;
}

.code-window,
.cost-visual,
.incident-visual {
    width: calc(100% + 22px);
    margin: auto -11px -12px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.code-bar {
    display: flex;
    height: 34px;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
}

.code-bar span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-faint);
    opacity: 0.42;
}

.code-bar small {
    margin-left: 6px;
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 10px;
}

.code-window pre {
    margin: 0;
    padding: 19px 21px 15px;
    color: var(--text-soft);
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.85;
}

.code-window pre i {
    color: var(--blue);
    font-style: normal;
}

.code-window pre b {
    color: var(--accent);
    font-weight: 500;
}

.code-window pre em {
    color: var(--teal);
    font-style: normal;
}

.code-result {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    border-top: 1px solid var(--line);
    background: var(--accent-soft);
    color: var(--accent);
}

.code-result span {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #12200e;
    font-size: 10px;
}

.code-result small {
    font-family: var(--font-mono);
    font-size: 10px;
}

.cost-visual {
    min-height: 192px;
    padding: 18px 20px 16px;
}

.cost-top {
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 10px;
}

.cost-top strong {
    color: var(--accent);
    font-size: 11px;
}

.bar-chart {
    display: flex;
    height: 89px;
    align-items: flex-end;
    gap: 8px;
    padding-top: 13px;
    border-bottom: 1px solid var(--line);
}

.bar-chart i {
    width: 100%;
    min-height: 10px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, rgba(82, 224, 187, 0.25), var(--teal));
    opacity: 0.78;
}

.bar-chart i.projected {
    border: 1px dashed var(--text-faint);
    border-bottom: 0;
    background: transparent;
    opacity: 0.55;
}

.cost-total {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-top: 10px;
}

.cost-total small {
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 10px;
}

.cost-total strong {
    font-size: 19px;
    letter-spacing: -0.04em;
}

.incident-visual {
    padding: 17px;
}

.incident-head {
    display: flex;
    align-items: center;
    gap: 11px;
}

.pulse-ring {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 139, 126, 0.1);
}

.pulse-ring i {
    width: 9px;
    height: 9px;
    border: 2px solid var(--bg);
    border-radius: 50%;
    background: var(--danger);
    box-shadow: 0 0 0 4px rgba(255, 139, 126, 0.17);
}

.incident-head p {
    display: flex;
    flex-direction: column;
}

.incident-head small,
.incident-foot small {
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 10px;
}

.incident-head strong {
    font-size: 13px;
}

.incident-head time {
    margin-left: auto;
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 10px;
}

.incident-path {
    display: flex;
    align-items: center;
    padding: 23px 7px 20px;
}

.incident-path span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 10px;
}

.incident-path span.done {
    border-color: var(--teal);
    background: rgba(82, 224, 187, 0.1);
    color: var(--teal);
}

.incident-path i {
    width: 100%;
    height: 1px;
    background: var(--line-strong);
}

.incident-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 7px;
    background: var(--surface-soft);
}

.incident-foot p {
    display: flex;
    flex-direction: column;
}

.incident-foot strong {
    font-size: 11px;
}

.incident-foot b {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 14px;
}

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

.workflow-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 112px;
}

.workflow-intro {
    position: sticky;
    top: 135px;
    align-self: start;
}

.workflow-intro h2 {
    max-width: 490px;
}

.workflow-intro > p {
    margin-top: 25px;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    border-bottom: 1px solid var(--line-strong);
    color: var(--text);
    font-size: 14px;
    font-weight: 750;
}

.inline-link span:last-child {
    color: var(--accent);
}

.workflow-steps {
    border-top: 1px solid var(--line);
}

.workflow-step {
    display: grid;
    min-height: 168px;
    align-items: center;
    padding: 30px 10px 30px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 45px 1fr 105px;
    gap: 24px;
}

.step-number {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 12px;
}

.workflow-step h3 {
    font-size: 22px;
    font-weight: 680;
    letter-spacing: -0.03em;
}

.workflow-step p {
    max-width: 440px;
    margin-top: 7px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.step-signal {
    position: relative;
    display: block;
    width: 90px;
    height: 64px;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
}

.signal-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.signal-wave i {
    width: 3px;
    height: 12px;
    border-radius: 4px;
    background: var(--teal);
}

.signal-wave i:nth-child(2),
.signal-wave i:nth-child(4) { height: 28px; }
.signal-wave i:nth-child(3) { height: 42px; background: var(--accent); }

.signal-nodes i {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid var(--teal);
    border-radius: 50%;
    background: var(--surface-solid);
}

.signal-nodes::before,
.signal-nodes::after {
    position: absolute;
    background: var(--line-strong);
    content: "";
}

.signal-nodes::before { top: 31px; left: 22px; width: 45px; height: 1px; }
.signal-nodes::after { top: 15px; left: 44px; width: 1px; height: 33px; }
.signal-nodes i:nth-child(1) { top: 27px; left: 17px; }
.signal-nodes i:nth-child(2) { top: 27px; right: 17px; }
.signal-nodes i:nth-child(3) { top: 10px; left: 40px; background: var(--accent); }
.signal-nodes i:nth-child(4) { bottom: 10px; left: 40px; }

.signal-check {
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 26px;
}

.signal-check::before {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    content: "";
    opacity: 0.35;
}

.signal-branch i {
    position: absolute;
    width: 9px;
    height: 9px;
    border: 2px solid var(--surface-solid);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.signal-branch i:nth-child(1) { top: 26px; left: 17px; }
.signal-branch i:nth-child(2) { top: 14px; right: 17px; }
.signal-branch i:nth-child(3) { right: 17px; bottom: 14px; background: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.signal-branch::before { position: absolute; top: 30px; left: 25px; width: 41px; height: 1px; background: var(--line-strong); content: ""; }
.signal-branch::after { position: absolute; top: 18px; right: 24px; width: 1px; height: 29px; background: var(--line-strong); content: ""; }

.security-section {
    overflow: hidden;
    border-top: 1px solid rgba(180, 230, 207, 0.13);
    border-bottom: 1px solid rgba(180, 230, 207, 0.13);
    background: #081713;
    color: #f3f7f4;
}

.security-section::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(186, 223, 207, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(186, 223, 207, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    content: "";
    mask-image: radial-gradient(circle at 80% 50%, black, transparent 62%);
}

.security-orbit {
    position: absolute;
    top: -280px;
    right: -330px;
    width: 920px;
    height: 920px;
    border: 1px solid rgba(157, 228, 79, 0.08);
    border-radius: 50%;
    box-shadow: inset 0 0 140px rgba(82, 224, 187, 0.025), 0 0 0 110px rgba(82, 224, 187, 0.012), 0 0 0 220px rgba(82, 224, 187, 0.008);
}

.security-grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 110px;
}

.security-copy > p {
    margin-top: 26px;
    color: #9eb0a9;
}

.security-list {
    margin-top: 34px;
    border-top: 1px solid rgba(215, 238, 228, 0.12);
}

.security-list > div {
    display: grid;
    padding: 20px 0;
    border-bottom: 1px solid rgba(215, 238, 228, 0.12);
    grid-template-columns: 42px 1fr;
}

.security-list > div > span {
    color: #9de44f;
    font-family: var(--font-mono);
    font-size: 11px;
}

.security-list p {
    display: flex;
    flex-direction: column;
}

.security-list strong {
    font-size: 15px;
}

.security-list small {
    margin-top: 4px;
    color: #7f938b;
    font-size: 13px;
}

.security-console {
    position: relative;
    min-height: 520px;
    padding: 26px;
    border: 1px solid rgba(215, 238, 228, 0.14);
    border-radius: var(--radius);
    background: rgba(13, 30, 25, 0.82);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.shield-graphic {
    position: relative;
    display: grid;
    height: 350px;
    place-items: center;
    border-bottom: 1px solid rgba(215, 238, 228, 0.09);
    background: radial-gradient(circle, rgba(157, 228, 79, 0.11), transparent 48%);
}

.shield-graphic::before,
.shield-graphic::after {
    position: absolute;
    width: 290px;
    height: 290px;
    border: 1px dashed rgba(157, 228, 79, 0.12);
    border-radius: 50%;
    content: "";
}

.shield-graphic::after {
    width: 210px;
    height: 210px;
    border-style: solid;
}

.shield-graphic svg {
    position: relative;
    z-index: 2;
    width: 180px;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.25));
}

.shield-outline {
    fill: rgba(157, 228, 79, 0.05);
    stroke: #9de44f;
    stroke-width: 1.5;
}

.shield-inner {
    fill: rgba(82, 224, 187, 0.05);
    stroke: rgba(82, 224, 187, 0.55);
    stroke-width: 1;
}

.shield-check {
    fill: none;
    stroke: #9de44f;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 9;
}

.orbit-dot {
    position: absolute;
    z-index: 3;
    width: 8px;
    height: 8px;
    border: 2px solid #10231d;
    border-radius: 50%;
    background: #52e0bb;
    box-shadow: 0 0 0 1px #52e0bb;
}

.dot-one { top: 55px; left: 30%; }
.dot-two { right: 23%; bottom: 83px; background: #9de44f; box-shadow: 0 0 0 1px #9de44f; }
.dot-three { top: 49%; left: 13%; }

.security-console-head {
    padding: 20px 2px 13px;
    color: #81938c;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
}

.verified {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9de44f;
    letter-spacing: 0;
}

.verified i {
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 50%;
    background: #9de44f;
    color: #14220f;
    font-style: normal;
    font-size: 9px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(215, 238, 228, 0.09);
    border-radius: 8px;
}

.compliance-grid > span {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid rgba(215, 238, 228, 0.09);
    font-size: 15px;
    font-weight: 800;
}

.compliance-grid > span:last-child {
    border-right: 0;
}

.compliance-grid small {
    margin-top: 2px;
    color: #70827b;
    font-family: var(--font-mono);
    font-size: 12px;
}

.outcomes-section {
    padding: 110px 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg-raised);
}

.outcomes-heading {
    text-align: center;
}

.outcomes-heading > span {
    margin-bottom: 14px;
}

.outcome-grid {
    display: grid;
    margin-top: 60px;
    grid-template-columns: repeat(3, 1fr);
}

.outcome-grid article {
    padding: 10px 50px;
    border-right: 1px solid var(--line);
    text-align: center;
}

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

.outcome-grid strong {
    display: block;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 630;
    letter-spacing: -0.07em;
    line-height: 1;
}

.outcome-grid strong span {
    color: var(--accent);
    font-size: 0.45em;
    letter-spacing: -0.03em;
}

.outcome-grid p {
    max-width: 220px;
    margin: 14px auto 0;
    color: var(--text-soft);
    font-size: 14px;
}

.outcome-note {
    margin-top: 42px;
    color: var(--text-faint);
    font-size: 15px;
    line-height: 1.55;
    text-align: center;
}

.plans-section {
    background: linear-gradient(180deg, var(--bg), var(--bg-raised));
}

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

.plan-card {
    position: relative;
    display: flex;
    min-height: 490px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    flex-direction: column;
}

.plan-card.featured {
    border-color: var(--accent);
    background: linear-gradient(155deg, var(--accent-soft), transparent 48%), var(--surface);
    box-shadow: 0 22px 60px rgba(78, 134, 35, 0.09);
}

.popular {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 8px;
    border-radius: 5px;
    background: var(--accent-soft);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.plan-name {
    margin-bottom: 18px;
}

.plan-card > p {
    min-height: 50px;
    color: var(--text-soft);
    font-size: 15px;
}

.plan-price {
    display: flex;
    min-height: 96px;
    align-items: baseline;
    flex-direction: column;
    justify-content: center;
    margin: 25px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.plan-price strong {
    font-size: 40px;
    font-weight: 680;
    letter-spacing: -0.055em;
}

.plan-price span {
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 10px;
}

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

.plan-card li {
    position: relative;
    padding-left: 21px;
    color: var(--text-soft);
    font-size: 13px;
}

.plan-card li::before {
    position: absolute;
    top: 2px;
    left: 0;
    color: var(--accent);
    content: "✓";
    font-size: 12px;
}

.plan-card .button {
    margin-top: auto;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 110px;
}

.faq-intro > p {
    margin-top: 22px;
    font-size: 15px;
}

.faq-intro a {
    border-bottom: 1px solid var(--line-strong);
    color: var(--text);
}

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

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

.faq-list summary {
    display: flex;
    min-height: 83px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 680;
    list-style: none;
}

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

.faq-list summary i {
    position: relative;
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.faq-list summary i::before,
.faq-list summary i::after {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 13px;
    height: 1px;
    background: var(--text-soft);
    content: "";
    transition: transform 180ms ease;
}

.faq-list summary i::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
    transform: rotate(0);
}

.faq-list details > p {
    max-width: 650px;
    padding: 0 55px 26px 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.final-cta {
    padding: 0 0 90px;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 86px 50px;
    border-radius: 25px;
    background: #9de44f;
    color: #13200f;
    text-align: center;
}

.cta-panel::before,
.cta-panel::after {
    position: absolute;
    border: 1px solid rgba(15, 34, 12, 0.14);
    border-radius: 50%;
    content: "";
}

.cta-panel::before {
    top: -230px;
    left: -150px;
    width: 480px;
    height: 480px;
}

.cta-panel::after {
    right: -120px;
    bottom: -280px;
    width: 520px;
    height: 520px;
}

.cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image: linear-gradient(#13200f 1px, transparent 1px), linear-gradient(90deg, #13200f 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle, black, transparent 75%);
}

.cta-kicker {
    position: relative;
    margin-bottom: 18px;
    color: rgba(19, 32, 15, 0.65);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .button {
    position: relative;
    z-index: 2;
}

.cta-panel p {
    margin-top: 20px;
    color: rgba(19, 32, 15, 0.7);
    font-size: 17px;
}

.button-light {
    margin-top: 30px;
    border-color: #13200f;
    background: #13200f;
    color: #f2f8ee;
}

.button-light:hover {
    border-color: #263d20;
    background: #263d20;
    box-shadow: 0 14px 35px rgba(13, 29, 10, 0.2);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-raised);
}

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

.footer-brand p {
    max-width: 270px;
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 14px;
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.footer-column > strong {
    margin-bottom: 8px;
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.11em;
}

.footer-column a,
.footer-column button {
    padding: 0;
    color: var(--text-soft);
    font-size: 13px;
    text-align: left;
}

.footer-column a:hover,
.footer-column button:hover {
    color: var(--text);
}

.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 10px;
}

.system-status i {
    width: 5px;
    height: 5px;
    box-shadow: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 28px;
    border-top: 1px solid var(--line);
    color: var(--text-faint);
    font-family: var(--font-mono);
    font-size: 14px;
}

.footer-bottom > div {
    display: flex;
    gap: 25px;
}

.footer-bottom a {
    color: inherit;
}

.footer-bottom a:hover {
    color: var(--text);
}

.auth-dialog {
    width: min(940px, calc(100% - 36px));
    max-height: min(720px, calc(100vh - 36px));
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(215, 238, 228, 0.16);
    border-radius: 22px;
    background: #0c1815;
    color: #eef5f0;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58);
}

.auth-dialog::backdrop {
    background: rgba(3, 8, 7, 0.72);
    backdrop-filter: blur(16px);
}

.auth-layout {
    display: grid;
    min-height: 620px;
    grid-template-columns: 0.88fr 1.12fr;
}

.auth-aside {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 35px;
    border-right: 1px solid rgba(215, 238, 228, 0.1);
    background: #0a211a;
    flex-direction: column;
}

.auth-aside::before {
    position: absolute;
    right: -170px;
    bottom: -170px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(157, 228, 79, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(157, 228, 79, 0.018), 0 0 0 160px rgba(157, 228, 79, 0.01);
    content: "";
}

.auth-aside-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(190, 230, 210, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(190, 230, 210, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(140deg, black, transparent 70%);
}

.auth-brand,
.auth-aside-copy,
.auth-aside-status {
    position: relative;
    z-index: 2;
}

.auth-aside-copy {
    margin: auto 0;
}

.auth-aside-copy > span {
    margin-bottom: 18px;
    color: #9de44f;
}

.auth-aside-copy blockquote {
    max-width: 320px;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.25;
}

.auth-aside-copy p {
    margin-top: 19px;
    color: #81968d;
    font-size: 12px;
}

.auth-aside-status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #8fa39b;
    font-family: var(--font-mono);
    font-size: 10px;
}

.auth-aside-status i {
    width: 6px;
    height: 6px;
    box-shadow: none;
}

.auth-main {
    position: relative;
    display: grid;
    padding: 36px 60px;
    background: #0d1916;
    place-items: center;
}

.dialog-close {
    position: absolute;
    z-index: 3;
    top: 22px;
    right: 22px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(215, 238, 228, 0.12);
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
}

.dialog-close:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dialog-close span {
    position: absolute;
    top: 16px;
    left: 9px;
    width: 15px;
    height: 1px;
    background: #a8b7b1;
    transform: rotate(45deg);
}

.dialog-close span:last-child {
    transform: rotate(-45deg);
}

.auth-form-wrap {
    width: 100%;
    max-width: 390px;
}

.auth-tabs {
    display: grid;
    padding: 4px;
    border: 1px solid rgba(215, 238, 228, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    grid-template-columns: 1fr 1fr;
}

.auth-tabs button {
    min-height: 35px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #7e9089;
    cursor: pointer;
    font-size: 12px;
    font-weight: 750;
}

.auth-tabs button.active {
    background: #1a2925;
    color: #eef5f0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.auth-heading {
    margin-top: 35px;
}

.auth-heading > span {
    margin-bottom: 9px;
    color: #9de44f;
    font-size: 10px;
}

.auth-heading h2 {
    font-size: 33px;
    font-weight: 680;
    letter-spacing: -0.05em;
}

.auth-heading p {
    margin-top: 7px;
    color: #84968f;
    font-size: 13px;
}

#auth-form {
    margin-top: 28px;
}

#auth-form > label {
    display: flex;
    margin-top: 16px;
    flex-direction: column;
    gap: 7px;
}

#auth-form > label > span {
    color: #aab8b2;
    font-size: 11px;
    font-weight: 700;
}

#auth-form input[type="email"],
#auth-form input[type="password"],
#auth-form input[type="text"] {
    width: 100%;
    height: 45px;
    padding: 0 13px;
    border: 1px solid rgba(215, 238, 228, 0.13);
    border-radius: 9px;
    background: #0a1512;
    color: #eef5f0;
    outline: none;
    font-size: 13px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

#auth-form input::placeholder {
    color: #54675f;
}

#auth-form input:focus {
    border-color: #82bd4e;
    box-shadow: 0 0 0 3px rgba(157, 228, 79, 0.08);
}

.company-field {
    display: none !important;
}

.auth-dialog.register-mode .company-field {
    display: flex !important;
}

.auth-dialog.register-mode [data-password-field],
.auth-dialog.register-mode [data-login-options] {
    display: none !important;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7f918a;
    font-size: 11px;
}

.checkbox-label input {
    accent-color: #9de44f;
}

.form-options > button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #9eb1a9;
    cursor: pointer;
    font-size: 11px;
}

.auth-submit {
    min-height: 45px;
    margin-top: 23px;
}

.auth-submit:disabled {
    cursor: wait;
    opacity: 0.6;
}

.form-disclaimer {
    margin-top: 14px;
    color: #5f716a;
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}

.form-message {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 17px;
    padding: 13px;
    border: 1px solid rgba(157, 228, 79, 0.18);
    border-radius: 9px;
    background: rgba(157, 228, 79, 0.07);
}

.form-message[hidden] {
    display: none;
}

.form-message > span {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #9de44f;
    color: #12200e;
    font-size: 11px;
}

.form-message div {
    display: flex;
    flex-direction: column;
}

.form-message strong {
    font-size: 12px;
}

.form-message p {
    margin-top: 2px;
    color: #82968e;
    font-size: 10px;
    line-height: 1.5;
}

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .desktop-nav { display: none; }
    .hero-grid { grid-template-columns: 0.82fr 1.18fr; gap: 34px; }
    .hero h1 { font-size: 54px; }
    .control-panel { min-height: 450px; }
    .panel-layout { min-height: 405px; }
    .panel-content { padding: 18px 16px; }
    .topology-card, .activity-card { min-height: 215px; }
    .activity-item { padding: 12px 0; }
    .workflow-grid, .faq-grid { gap: 65px; }
    .security-grid { gap: 65px; }
    .footer-main { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 920px) {
    .shell { width: min(calc(100% - 36px), var(--max-width)); }
    .login-button { display: none; }
    .menu-toggle { display: grid; }
    .menu-toggle span { display: block; width: 16px; height: 1px; background: currentColor; transition: transform 180ms ease; }
    .menu-toggle span:last-child { margin-top: -8px; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .mobile-nav { position: absolute; top: 78px; right: 18px; left: 18px; display: none; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-solid); box-shadow: var(--shadow); }
    .mobile-nav.open { display: grid; }
    .mobile-nav a, .mobile-nav button { padding: 13px 12px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--text-soft); font-size: 15px; text-align: left; }
    .mobile-nav > *:last-child { border-bottom: 0; }
    .hero { padding-top: 145px; }
    .hero-grid { grid-template-columns: minmax(0, 1fr); }
    .hero-copy { max-width: 690px; }
    .hero h1 { font-size: clamp(50px, 9vw, 72px); }
    .control-panel { width: 100%; margin-top: 25px; transform: none; }
    .integrations { align-items: flex-start; flex-direction: column; padding-top: 55px; }
    .integration-list { flex-wrap: wrap; justify-content: flex-start; }
    .section { padding: 105px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 24px; }
    .bento-card { min-height: 425px; }
    .workflow-grid, .security-grid, .faq-grid { grid-template-columns: minmax(0, 1fr); gap: 55px; }
    .workflow-intro { position: static; }
    .security-copy { max-width: 650px; }
    .security-console { width: min(100%, 660px); }
    .plans-grid { grid-template-columns: minmax(0, 1fr); }
    .plan-card { min-height: auto; }
    .plan-card > p { min-height: 0; }
    .footer-main { grid-template-columns: 1.5fr repeat(2, 1fr); }
    .footer-main .footer-column:last-child { grid-column: 2 / 4; }
    .auth-layout { grid-template-columns: 0.7fr 1.3fr; }
    .auth-aside { padding: 28px; }
    .auth-aside-copy blockquote { font-size: 23px; }
    .auth-main { padding: 35px; }
}

@media (max-width: 680px) {
    .shell { width: min(calc(100% - 28px), var(--max-width)); }
    .header-inner { min-height: 70px; }
    .brand-name strong, .brand-name span { font-size: 15px; }
    .brand-mark { width: 32px; height: 32px; }
    .language-switcher { padding-right: 4px; border-right: 0; }
    .theme-toggle { display: none; }
    .register-button { display: none; }
    .mobile-nav { top: 70px; right: 14px; left: 14px; }
    .hero { padding: 125px 0 42px; }
    .hero h1 { font-size: clamp(43px, 13vw, 62px); }
    .hero-lead { font-size: 18px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .control-panel { min-height: auto; border-radius: 12px; }
    .panel-layout { min-height: auto; grid-template-columns: 34px 1fr; }
    .panel-sidebar { gap: 12px; }
    .panel-content { padding: 15px 11px; }
    .panel-heading strong { font-size: 14px; }
    .metric { min-height: 65px; padding: 9px; }
    .metric strong { font-size: 18px; }
    .metric small { display: none; }
    .panel-main-grid { grid-template-columns: 1fr; }
    .topology-card { min-height: 205px; }
    .activity-card { display: none; }
    .integrations { gap: 20px; }
    .integration-list { gap: 15px 20px; }
    .section { padding: 85px 0; }
    .section-heading { margin-bottom: 40px; }
    .section-heading h2, .workflow-intro h2, .security-copy h2, .plans-section h2, .faq-intro h2, .outcomes-heading h2, .cta-panel h2 { font-size: 42px; }
    .bento-grid { grid-template-columns: minmax(0, 1fr); }
    .bento-card { min-height: 415px; padding: 27px; }
    .card-copy h3 { font-size: 25px; }
    .workflow-step { min-height: 150px; grid-template-columns: 35px 1fr; gap: 14px; }
    .step-signal { display: none; }
    .security-console { min-height: 450px; padding: 18px; }
    .shield-graphic { height: 305px; }
    .shield-graphic svg { width: 150px; }
    .shield-graphic::before { width: 250px; height: 250px; }
    .shield-graphic::after { width: 185px; height: 185px; }
    .compliance-grid > span { min-height: 58px; font-size: 14px; }
    .compliance-grid small { font-size: 12px; }
    .outcomes-section { padding: 80px 0; }
    .outcome-grid { grid-template-columns: 1fr; margin-top: 42px; }
    .outcome-grid article { padding: 32px 15px; border-right: 0; border-bottom: 1px solid var(--line); }
    .outcome-grid article:last-child { border-bottom: 0; }
    .plans-section .section-heading { margin-bottom: 38px; }
    .plan-card { padding: 28px; }
    .faq-list summary { min-height: 76px; font-size: 15px; }
    .cta-panel { width: calc(100% - 28px); padding: 70px 22px; }
    .cta-panel p { font-size: 15px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-main .footer-column:last-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
    .auth-dialog { width: min(100% - 20px, 540px); max-height: calc(100vh - 20px); overflow-y: auto; }
    .auth-layout { min-height: 0; grid-template-columns: 1fr; }
    .auth-aside { display: none; }
    .auth-main { min-height: 590px; padding: 62px 25px 32px; }
    .dialog-close { top: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}