@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #172522;
  --muted: #687773;
  --forest: #183e35;
  --forest-2: #24574a;
  --mint: #b9e8c8;
  --mint-soft: #e7f4e7;
  --cream: #f7f8f4;
  --paper: #fff;
  --line: #dbe4df;
  --amber: #e6a95c;
  --shadow: 0 24px 70px rgba(24, 62, 53, .12);
  --text-caption: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { display: inline-block; width: 1.125rem; height: 1.125rem; flex: 0 0 auto; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Manrope, "Segoe UI", system-ui, sans-serif; font-size: var(--text-md); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .65; }
:where(a, button, input, summary):focus-visible { outline: 3px solid #e6a95c; outline-offset: 4px; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; border-radius: 4px; color: #fff; background: var(--forest); transform: translateY(-180%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-light { background: #eef3ec; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.eyebrow, .muted-label, .output-label, .flow-label, .footer-heading, .window-title, .window-status, .editable-head, .portal-row-head { font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; letter-spacing: .12em; text-transform: uppercase; font-size: var(--text-caption); }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--forest-2); font-weight: 500; margin: 0 0 12px; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 99px; background: #64b88a; box-shadow: 0 0 0 5px #dcefe0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Manrope, "Segoe UI", sans-serif; letter-spacing: -.055em; line-height: 1.12; }
h1 { max-width: 13em; margin-bottom: 16px; font-size: clamp(2.15rem, 4.4vw, 3.5rem); font-weight: 700; }
h2 { margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 700; }
h3 { font-size: var(--text-xl); }
em { color: #589b71; font-style: normal; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 48px; border: 0; border-radius: 5px; padding: 14px 20px; font-size: var(--text-md); font-weight: 700; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.is-busy,
.button.is-busy:hover {
  position: relative;
  transform: none;
  pointer-events: none;
  color: transparent !important;
}
.button.is-busy > * { visibility: hidden; }
.button.is-busy::after {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(23, 53, 45, .18);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: stm-spin .7s linear infinite;
}
.button-dark.is-busy::after {
  border-color: rgba(255, 255, 255, .25);
  border-top-color: #fff;
}
.button .icon { width: 1.125rem; height: 1.125rem; }
.button-primary { color: #17352d; background: var(--mint); }
.button-primary:hover { background: #a7ddba; }
.button-dark { color: #fff; background: var(--forest); }
.button-dark:hover { background: #2c6656; }
.button-small { min-height: 44px; padding: 10px 14px; font-size: var(--text-sm); }
.text-link { display: inline-flex; align-items: center; gap: 12px; border-bottom: 1px solid #a7b8af; padding-bottom: 5px; color: var(--forest); font-size: var(--text-md); font-weight: 700; }
.text-link .icon { width: 1.125rem; height: 1.125rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 244, .92);
  backdrop-filter: saturate(1.15) blur(16px);
  -webkit-backdrop-filter: saturate(1.15) blur(16px);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 248, 244, .96);
  box-shadow: 0 10px 28px rgba(24, 62, 53, .07);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 10px; font-family: Manrope, "Segoe UI", sans-serif; font-size: 1.125rem; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; color: var(--forest); background: var(--mint); font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 9px; letter-spacing: -.04em; }
.brand-name span { color: #60a979; }
.main-nav { display: flex; align-items: center; gap: 28px; color: #4d625b; font-size: 0.9375rem; font-weight: 600; }
.main-nav a:not(.button):hover { color: var(--forest); }
.menu-toggle { display: none; border: 0; background: none; }
.hero { overflow: hidden; padding: 48px 0 56px; background: radial-gradient(circle at 91% 8%, rgba(199, 235, 203, .55), transparent 25%), var(--cream); }
.hero-grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: 40px; }
.hero-lead { max-width: 38rem; margin-bottom: 22px; color: #5d6d67; font-size: var(--text-lg); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 20px; }
.micro-trust { display: flex; align-items: center; gap: 8px; margin: 18px 0 0; color: #7a8c83; font-size: var(--text-sm); }
.check-icon { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; color: #fff; background: #72b889; }
.check-icon .icon { width: 10px; height: 10px; }
.hero-visual { position: relative; padding: 8px 0 24px; }
.visual-glow { position: absolute; top: 5%; left: 7%; width: 90%; height: 90%; border-radius: 50%; background: radial-gradient(circle, rgba(191, 228, 197, .55), transparent 68%); }
.product-window { position: relative; z-index: 1; overflow: hidden; border: 1px solid rgba(26, 75, 60, .14); border-radius: 9px; background: #f7faf5; box-shadow: 0 30px 90px rgba(23, 69, 51, .2); transform: perspective(1600px) rotateY(-4deg) rotateX(2deg); }
.window-top { display: flex; align-items: center; justify-content: space-between; min-height: 40px; padding: 0 15px; border-bottom: 1px solid #d9e6dc; background: #fbfdf9; }
.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 6px; height: 6px; border-radius: 50%; background: #cbd7cf; }
.window-title { color: #92a29a; font-size: 8px; letter-spacing: .04em; }
.window-status { color: #5b9c73; font-size: 8px; letter-spacing: .04em; }
.window-status i, .live-dot { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #63b47c; box-shadow: 0 0 0 3px #dcefe0; }
.dashboard-body { display: flex; min-height: 340px; }
.dashboard-sidebar { width: 140px; flex: 0 0 140px; padding: 19px 10px; border-right: 1px solid #dfe9e0; background: #eff5ee; }
.mini-logo { margin: 0 10px 31px; color: var(--forest); font-family: Manrope, sans-serif; font-size: 13px; font-weight: 800; }
.mini-logo span { color: #65ad7e; }
.side-item { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 4px; color: #7b8d83; font-size: 9px; }
.side-item b { width: 13px; color: #8ba098; font-size: 13px; font-weight: 400; }
.side-item.active { color: var(--forest); background: #dcefe0; font-weight: 700; }
.side-item.active b { color: #5eaa77; }
.side-line { height: 1px; margin: 19px 10px; background: #d7e4d8; }
.dashboard-content { flex: 1; padding: 22px 24px; background: #fbfdf9; }
.dashboard-heading, .panel-heading, .readiness-head { display: flex; align-items: flex-start; justify-content: space-between; }
.dashboard-heading strong, .panel-heading strong, .readiness-head strong { display: block; margin-top: 4px; font-family: Manrope, sans-serif; font-size: 13px; letter-spacing: -.03em; }
.muted-label { display: block; color: #9aa9a1; font-size: 7px; letter-spacing: .08em; }
.year-pill { padding: 5px 9px; border: 1px solid #dce7dc; border-radius: 4px; color: #7c9084; font-size: 9px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 21px 0; }
.metric { padding: 11px; border: 1px solid #e2eae1; border-radius: 4px; background: #fff; }
.metric span, .metric small { display: block; color: #8d9d94; font-size: 8px; }
.metric strong { display: block; margin: 6px 0 2px; font-family: Manrope, sans-serif; font-size: 21px; letter-spacing: -.06em; }
.metric small { color: #62a177; }
.dashboard-panels { display: grid; grid-template-columns: 1.06fr .94fr; gap: 10px; }
.analysis-panel, .trend-panel { min-height: 175px; padding: 14px; border: 1px solid #e2eae1; border-radius: 4px; background: #fff; }
.panel-heading strong { font-size: 10px; }
.panel-heading > b { color: #65a876; font-family: Manrope, sans-serif; font-size: 19px; }
.progress-track, .readiness-track { overflow: hidden; height: 5px; margin: 18px 0 16px; border-radius: 10px; background: #e5eee5; }
.progress-track span, .readiness-track span { display: block; width: 91%; height: 100%; border-radius: inherit; background: #79be8c; }
.check-list { display: grid; gap: 9px; color: #7e9085; font-size: 8px; }
.check-list span.done { color: #67a779; }
.check-list span.warning { color: #cb9250; }
.check-list b { color: #657e70; font-weight: 500; }
.trend-up { color: #6bad7c; font-size: 8px; }
.bars { display: flex; align-items: end; justify-content: space-between; height: 102px; padding-top: 19px; border-bottom: 1px solid #dfe9e0; }
.bars i { width: 7px; border-radius: 2px 2px 0 0; background: linear-gradient(#8bc99b, #c7e9c9); }
.bars .bar-34 { height: 34%; }
.bars .bar-48 { height: 48%; }
.bars .bar-42 { height: 42%; }
.bars .bar-62 { height: 62%; }
.bars .bar-54 { height: 54%; }
.bars .bar-78 { height: 78%; }
.bars .bar-68 { height: 68%; }
.bars .bar-88 { height: 88%; }
.bar-labels { display: flex; justify-content: space-between; color: #a2afa8; font-size: 6px; }
.dashboard-foot { display: flex; justify-content: space-between; margin-top: 15px; color: #9eaaa3; font-size: 7px; }
.floating-note { position: absolute; z-index: 2; right: -21px; bottom: 13px; display: flex; align-items: center; gap: 11px; width: 205px; padding: 12px; border: 1px solid #d6e7d8; border-radius: 7px; background: rgba(255,255,255,.95); box-shadow: 0 18px 35px rgba(32, 79, 58, .14); }
.note-icon { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: #4e9b6a; background: #ddf2df; font-size: 13px; }
.floating-note b, .floating-note small { display: block; }
.floating-note b { font-size: 10px; }
.floating-note small { color: #83948b; font-size: 8px; }
.proof-strip { border-top: 1px solid #dce7dc; border-bottom: 1px solid #dce7dc; background: #f2f6ef; }
.proof-items { display: flex; align-items: center; justify-content: space-between; min-height: 56px; color: #788a81; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: var(--text-caption); }
.proof-label { color: var(--forest); font-weight: 500; }
.proof-items i { color: #79ad89; font-size: 18px; font-style: normal; }
.section-intro { margin-bottom: 32px; }
.section-intro.narrow { max-width: 750px; }
.section-intro p:last-child, .split-intro > p { max-width: 590px; color: var(--muted); font-size: var(--text-lg); line-height: 1.7; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pain-card { position: relative; min-height: 0; padding: 22px; border: 1px solid #dce6db; border-radius: 5px; background: rgba(255,255,255,.43); transition: background .2s ease, transform .2s ease; }
.pain-card:hover { background: #fff; transform: translateY(-5px); }
.card-number { color: #9aaba0; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 10px; }
.line-icon { display: grid; place-items: center; width: 42px; height: 42px; margin: 18px 0 14px; border: 1px solid #bdd9c1; border-radius: 50%; color: #5da774; font-size: 21px; }
.pain-card h3 { margin-bottom: 10px; font-size: var(--text-xl); }
.pain-card p { color: #7d8e85; font-size: var(--text-md); line-height: 1.6; }
.workflow-section { background: var(--forest); color: #f2f6ef; }
.workflow-section .eyebrow, .security-section .eyebrow, .portal-section .eyebrow { color: var(--mint); }
.workflow-section h2 em { color: var(--mint); }
.split-intro { display: grid; grid-template-columns: 1fr .72fr; align-items: end; gap: 40px; }
.split-intro > p { margin-bottom: 8px; color: #a6beb1; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { position: relative; min-height: 0; padding: 0 24px 0 0; }
.step:not(:last-child):after { position: absolute; top: 38px; right: 20px; width: calc(100% - 68px); height: 1px; background: #386653; content: ""; }
.step-no { color: #72a888; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 10px; }
.step-icon { display: grid; place-items: center; position: relative; z-index: 1; width: 48px; height: 48px; margin: 14px 0 16px; border: 1px solid #51846c; border-radius: 50%; color: var(--mint); background: var(--forest); font-size: 20px; }
.step h3 { max-width: 190px; margin-bottom: 12px; font-size: 1.125rem; }
.step p { max-width: 220px; color: #a6beb1; font-size: var(--text-md); line-height: 1.6; }
.automation-section { background: #f8faf6; }
.centered { max-width: 680px; margin-right: auto; margin-left: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.flow-board { display: grid; grid-template-columns: 1.02fr .45fr 1.12fr .45fr .74fr; align-items: center; gap: 16px; padding: 33px; border: 1px solid #dce8dc; border-radius: 6px; background: #eef5ec; }
.flow-source, .flow-fields, .flow-record { min-height: 180px; padding: 18px; border: 1px solid #d8e5d9; border-radius: 4px; background: #fff; }
.file-icon { display: inline-grid; place-items: center; width: 34px; height: 40px; margin-bottom: 20px; border-radius: 3px; color: #fff; background: #e28572; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 9px; }
.flow-source b, .flow-source small { display: block; }
.flow-source b { font-size: 13px; }
.flow-source small { margin-top: 5px; color: #8b9a91; font-size: 9px; }
.source-lines { display: block; height: 35px; margin-top: 17px; background: repeating-linear-gradient(to bottom, #e7eeea 0 2px, transparent 2px 9px); }
.flow-arrow { color: #6c9f7b; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; text-align: center; font-size: 22px; }
.flow-arrow span, .flow-arrow b { display: block; }
.flow-arrow span { margin-bottom: 6px; color: #a1b3a7; font-size: 9px; }
.flow-arrow b { margin-bottom: 5px; color: #879a8e; font-size: 8px; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }
.flow-fields { padding: 18px 14px; }
.flow-label { display: block; margin-bottom: 13px; color: #9aaba0; font-size: 8px; }
.flow-fields div { display: flex; justify-content: space-between; margin-top: 11px; padding-bottom: 7px; border-bottom: 1px solid #edf1ec; font-size: 9px; }
.flow-fields div span { color: #97a49d; }
.flow-fields div b { font-weight: 600; }
.record-check { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 19px; border-radius: 50%; color: #4b9b69; background: #dcf2df; }
.flow-record strong, .flow-record small { display: block; }
.flow-record strong { margin-bottom: 11px; font-family: Manrope, sans-serif; font-size: 15px; line-height: 1.15; }
.flow-record small { color: #87978f; font-size: 9px; line-height: 1.7; }
.document-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.document-tags span { padding: 8px 11px; border: 1px solid #dbe7dc; border-radius: 3px; color: #70867a; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 9px; }
.sick-leave-section { background: #e8f2e7; }
.showcase-grid, .portal-grid, .readiness-grid, .audience-grid, .faq-grid, .control-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
.showcase-copy p:not(.eyebrow), .portal-copy > p:not(.eyebrow), .readiness-grid > div > p:not(.eyebrow), .security-intro > p { color: #697b71; font-size: var(--text-lg); line-height: 1.7; }
.showcase-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 18px 0; color: #618e6d; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 9px; }
.showcase-flow .icon { width: 14px; height: 14px; color: #a4b9aa; }
.editable-card { border: 1px solid #cbded0; border-radius: 7px; background: #fff; box-shadow: var(--shadow); }
.editable-head { display: flex; justify-content: space-between; padding: 16px 19px; border-bottom: 1px solid #e6eee6; color: #80948a; font-size: 8px; }
.editable-head > div { display: flex; align-items: center; }
.confidence { color: #67a477; font-family: Manrope, "Segoe UI", sans-serif; letter-spacing: 0; text-transform: none; }
.editable-body { display: flex; align-items: center; gap: 12px; padding: 20px; }
.avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #3e7e59; background: #cce8d0; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 10px; }
.record-title small, .record-title strong { display: block; }
.record-title small { color: #9baa9f; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 8px; }
.record-title strong { font-family: Manrope, sans-serif; font-size: 15px; }
.edit-state { margin-left: auto; color: #6ea67c; font-size: 10px; }
.edit-state i { font-size: 15px; font-style: normal; }
.editable-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 20px 20px; }
.editable-fields label { color: #8b9b92; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 8px; text-transform: uppercase; }
.editable-fields input { display: block; width: 100%; margin-top: 7px; padding: 10px; border: 1px solid #dce7dd; border-radius: 3px; color: #405a4d; background: #f8fbf7; font-size: 10px; }
.editable-foot { display: flex; justify-content: space-between; padding: 15px 20px; border-top: 1px solid #e6eee6; color: #9aaba0; font-size: 9px; }
.editable-foot button { border: 0; color: #659c72; background: none; font-size: 10px; font-weight: 700; }
.outputs-section { background: var(--cream); }
.output-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.output-card { min-height: 0; padding: 22px; border: 1px solid #dbe5dc; border-radius: 5px; background: #fdfefb; transition: transform .2s ease, box-shadow .2s ease; }
.output-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(39, 74, 50, .1); }
.primary-output { color: #edf7ed; background: var(--forest); }
.output-label { color: #74b287; font-size: 9px; }
.primary-output .output-label { color: var(--mint); }
.output-icon { display: grid; place-items: center; width: 42px; height: 42px; margin: 22px 0 14px; border-radius: 50%; color: #69ae7d; background: #e2f1e1; }
.output-icon .icon { width: 22px; height: 22px; }
.primary-output .output-icon { color: var(--forest); background: var(--mint); }
.output-card h3 { margin-bottom: 11px; font-size: var(--text-xl); }
.output-card p { min-height: 0; color: #82938a; font-size: var(--text-md); }
.primary-output p { color: #a8c1b2; }
.output-card a { display: inline-flex; align-items: center; gap: 10px; margin-top: 13px; color: #6ba878; font-size: var(--text-sm); font-weight: 700; }
.output-card a .icon { width: 0.95rem; height: 0.95rem; }
.control-section { background: #dfeee0; }
.control-grid { align-items: stretch; }
.control-grid .portal-visual { height: 100%; }
.readiness-card { padding: 28px; border: 1px solid #c8ddca; border-radius: 7px; background: #f9fcf7; box-shadow: 0 20px 55px rgba(40, 92, 56, .1); }
.readiness-score { color: #5ea775; font-family: Manrope, sans-serif; font-size: 31px; font-weight: 700; letter-spacing: -.06em; }
.readiness-score small { margin-left: 5px; color: #8d9d92; font-family: Manrope, "Segoe UI", sans-serif; font-size: 10px; font-weight: 400; letter-spacing: 0; }
.readiness-track { height: 7px; margin: 23px 0; }
.readiness-card ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; color: #6b8072; font-size: var(--text-md); }
.readiness-card li { display: flex; align-items: center; gap: 9px; }
.readiness-card li b { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; color: #fff; background: #72b889; font-size: 11px; }
.readiness-card li.is-warning { color: #a07745; }
.readiness-card li.is-warning b { color: #fff; background: var(--amber); }
.readiness-card li small { margin-left: auto; color: #bd8b4e; font-size: 10px; }
.portal-section { background: #f5f8f3; }
.portal-visual { padding: 18px; border: 1px solid #dbe6dc; border-radius: 7px; background: #e6f0e4; }
.portal-window { overflow: hidden; border: 1px solid #d5e3d6; border-radius: 5px; background: #fff; box-shadow: 0 14px 30px rgba(43, 80, 49, .1); }
.portal-top { display: flex; justify-content: space-between; padding: 16px; border-bottom: 1px solid #e3ebe3; color: #3d5f4c; font-family: Manrope, sans-serif; font-size: 11px; font-weight: 700; }
.secure-badge { color: #6aa379; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 7px; font-weight: 400; letter-spacing: .04em; }
.portal-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; padding: 15px 16px; border-bottom: 1px solid #edf2ec; }
.portal-row strong { color: #62796b; font-size: 10px; font-weight: 500; }
.portal-row-head { padding: 12px 16px 8px; color: #a2b0a8; font-size: 7px; }
.status-pill { padding: 5px 8px; border-radius: 3px; font-size: 8px; }
.status-pill.ready { color: #5a9c6d; background: #e0f2e2; }
.status-pill.progress { color: #967b47; background: #fff1cf; }
.status-pill.missing { color: #bc785d; background: #ffe7de; }
.status-pill.waiting { color: #82938a; background: #edf1ed; }
.feature-list { display: grid; gap: 13px; margin: 27px 0; padding: 0; list-style: none; color: #65786c; font-size: var(--text-md); }
.feature-list li { display: flex; align-items: center; gap: 11px; }
.feature-list b { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: #5c9e6e; background: #dcefdc; font-size: 13px; font-weight: 400; }
.trust-note { padding-left: 15px; border-left: 2px solid #a7d5ae; color: #83938a !important; font-size: var(--text-sm) !important; line-height: 1.5 !important; }
.security-section { color: #f2f6ef; background: var(--forest); }
.security-intro { max-width: 690px; }
.security-section h2 em { color: var(--mint); }
.security-intro > p { color: #a6beb1; }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 36px 0 28px; border-top: 1px solid #386653; border-bottom: 1px solid #386653; }
.security-principle { min-height: 0; padding: 20px 20px 20px 0; border-right: 1px solid #386653; }
.security-principle:not(:first-child) { padding-left: 20px; }
.security-principle:last-child { border-right: 0; }
.security-principle span { display: block; margin-bottom: 16px; color: #73a989; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 10px; }
.security-principle strong { display: block; margin-bottom: 8px; font-family: Manrope, "Segoe UI", sans-serif; font-size: 1.125rem; }
.security-principle p { margin: 0; color: #a4bcae; font-size: var(--text-md); line-height: 1.6; }
.ai-note { display: grid; grid-template-columns: 55px 1fr 1fr; align-items: center; gap: 25px; padding: 24px; border: 1px solid #42745e; border-radius: 5px; background: #204b3e; }
.ai-symbol { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--forest); background: var(--mint); font-size: 21px; }
.ai-note h3 { margin-bottom: 8px; font-size: 19px; }
.ai-note p { max-width: 450px; margin: 0; color: #b0c5b8; font-size: var(--text-md); }
.ai-controls { display: grid; gap: 9px; color: #c7e8cb; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 9px; }
.ai-controls span:before { margin-right: 9px; color: #72bb89; content: "✓"; }
.audience-section { background: #f4f7f1; }
.audience-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.audience-list > div { padding: 20px 0; border-top: 1px solid #d9e5d9; }
.audience-list span { display: inline-block; width: 38px; color: #86a18e; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 9px; }
.audience-list b { font-family: Manrope, "Segoe UI", sans-serif; font-size: 1.0625rem; }
.audience-list p { margin: 8px 0 0 41px; color: #7b8c82; font-size: var(--text-md); }
.value-section { padding-top: 0; background: #f4f7f1; }
.value-card { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; padding: 60px; border-radius: 7px; color: #eef8ee; background: #2b6250; }
.value-card h2 em { color: var(--mint); }
.value-card p:not(.eyebrow) { max-width: 510px; color: #b8d1bf; font-size: var(--text-md); }
.value-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; align-self: center; gap: 20px; }
.value-stats div { padding-left: 15px; border-left: 1px solid #5f9479; }
.value-stats strong, .value-stats span { display: block; }
.value-stats strong { margin-bottom: 15px; color: var(--mint); font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 11px; }
.value-stats span { color: #cee4d0; font-size: var(--text-sm); line-height: 1.4; }
.faq-section { background: #f4f7f1; }
.faq-grid { align-items: start; }
.faq-grid > div > p:last-child { color: #7d8d83; font-size: var(--text-md); }
.faq-grid a { color: #5f9e6d; }
.faq-list details { border-top: 1px solid #d5e2d6; }
.faq-list details:last-child { border-bottom: 1px solid #d5e2d6; }
.faq-list summary { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; cursor: pointer; list-style: none; font-family: Manrope, "Segoe UI", sans-serif; font-size: 1.0625rem; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #73a67e; font-size: 22px; font-weight: 400; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 550px; padding: 0 30px 14px 0; color: #788a80; font-size: var(--text-md); }
.register-section { padding: 56px 0 72px; background: #dbeede; }
.register-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; padding: 36px 40px; border-radius: 8px; background: #f8fcf6; box-shadow: 0 22px 50px rgba(49, 100, 59, .1); }
.register-copy h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
.register-copy > p:not(.eyebrow) { color: #6d8074; font-size: var(--text-md); }
.register-note { color: #8c9a90; font-size: var(--text-sm); }
.pricing-section { background: #f4f7f1; }
.pricing-intro { max-width: 720px; margin-bottom: 36px; }
.pricing-intro p:not(.eyebrow) { color: #6d8074; font-size: var(--text-md); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pricing-card { padding: 28px 24px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.pricing-card.is-featured { border-color: #5f9e6d; box-shadow: 0 16px 40px rgba(49, 100, 59, .08); }
.pricing-name { margin: 0 0 8px; color: #5f7a68; font-size: var(--text-sm); letter-spacing: .04em; text-transform: uppercase; }
.pricing-price { margin: 0 0 18px; font-family: Manrope, "Segoe UI", sans-serif; font-size: 2.1rem; font-weight: 700; }
.pricing-price span { color: #7b8c82; font-size: 1rem; font-weight: 500; }
.pricing-card ul { margin: 0; padding-left: 18px; color: #63756b; }
.pricing-card li + li { margin-top: 8px; }
.consent-copy { margin: 10px 0 0; color: #88968d; font-size: var(--text-caption); line-height: 1.6; }
.consent-copy a { color: #5c9f6d; text-decoration: underline; text-underline-offset: 3px; }
.site-footer { padding: 48px 0 24px; color: #b5cbbd; background: #163a31; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .95fr 1fr; gap: 28px; padding-bottom: 40px; }
.footer-brand { color: #f3faf1; }
.footer-grid p { max-width: 180px; margin: 18px 0 0; color: #90aa9a; font-size: var(--text-sm); }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-heading { margin-bottom: 8px; color: #78b08a; font-size: var(--text-caption); }
.footer-grid a:not(.brand) { color: #b5cbbd; font-size: var(--text-sm); }
.footer-grid a:not(.brand):hover { color: var(--mint); }
.footer-company { margin-top: 14px; color: #829e8d; font-size: var(--text-caption); line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid #315b4c; color: #789687; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: var(--text-caption); }
.legal-shell { min-height: 100vh; background: var(--cream); }
.legal-header { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-main { max-width: 820px; padding-top: 80px; padding-bottom: 100px; }
.legal-main h1 { font-size: clamp(42px, 6vw, 67px); }
.legal-main h2 { margin-top: 50px; font-size: 28px; }
.legal-main p, .legal-main li { color: #63756b; font-size: 1.0625rem; line-height: 1.75; }
.legal-main ul { padding-left: 22px; }
.legal-main h3 { margin-top: 28px; font-size: 1.15rem; letter-spacing: -.03em; }
.legal-main a { color: #3d7a52; font-weight: 600; }
.legal-main a:hover { color: var(--forest); }
.legal-meta { color: #7a8c82; font-size: var(--text-sm); margin-bottom: 28px; }
.legal-card {
  margin: 20px 0 8px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.legal-card-title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.legal-main .legal-card h2 { margin-top: 0; font-size: 1.05rem; }
.legal-company p { margin-bottom: 0; }
.legal-table-wrap { overflow-x: auto; margin: 18px 0 8px; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.legal-table th, .legal-table td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}
.legal-table th {
  background: var(--mint-soft);
  color: var(--ink);
  font-size: var(--text-caption);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.legal-table td { color: #63756b; }
.legal-main code {
  padding: 1px 5px;
  border-radius: 4px;
  font-size: .85em;
  background: var(--mint-soft);
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-nav a { color: #5f9f6e; font-size: var(--text-sm); font-weight: 700; }
.legal-back { display: inline-flex; margin-top: 28px; color: #5f9f6e; font-size: var(--text-md); font-weight: 700; }
section[id] { scroll-margin-top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); }

.busy-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: none;
  width: 100%;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
  background: rgba(185, 232, 200, .35);
}
html.is-busy-bar .busy-bar,
html.is-busy .busy-bar {
  display: block;
}
.busy-bar::after {
  content: "";
  display: block;
  width: 32%;
  height: 100%;
  background: linear-gradient(90deg, #64b88a, var(--forest));
  animation: stm-bar 1.1s linear infinite;
}
.busy-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(247, 248, 244, .88);
}
html.is-busy .busy-overlay {
  display: grid;
}
.busy-dialog {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(360px, 100%);
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}
.busy-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid #dcefe0;
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: stm-spin .6s linear infinite;
}
.busy-message {
  margin: 0;
  color: var(--forest);
  font-weight: 700;
  line-height: 1.4;
}
html.is-busy,
html.is-busy-bar { cursor: wait; }
@keyframes stm-spin { to { transform: rotate(360deg); } }
@keyframes stm-bar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(420%); }
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1050px) {
  .container { width: min(100% - 36px, 920px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 740px; }
  .hero-visual { max-width: 780px; margin: 20px auto 0; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid, .portal-grid, .readiness-grid, .audience-grid, .faq-grid, .control-grid { gap: 40px; }
  .value-card { gap: 40px; padding: 45px; }
}
@media (max-width: 760px) {
  .container { width: calc(100% - 36px); }
  .section { padding: 56px 0; }
  .nav-wrap { min-height: var(--header-h); }
  .menu-toggle { display: grid; place-items: center; padding: 8px; color: var(--forest); }
  .menu-toggle .icon { width: 1.25rem; height: 1.25rem; }
  .menu-toggle[aria-expanded="true"] { border-radius: 4px; background: #dcefe0; }
  .main-nav { display: none; position: absolute; z-index: 20; top: calc(100% - 8px); right: 18px; left: 18px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 6px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; }
  .main-nav .button { margin-top: 5px; }
  .hero { min-height: 0; padding: 28px 0 40px; }
  h1 { font-size: clamp(1.9rem, 9vw, 2.75rem); }
  h2 { font-size: clamp(1.5rem, 7vw, 2.1rem); }
  .hero-lead { font-size: var(--text-lg); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .product-window { transform: none; }
  .dashboard-sidebar { display: none; }
  .dashboard-content { padding: 15px; }
  .dashboard-body { min-height: 300px; }
  .metric-grid { gap: 5px; }
  .metric { padding: 8px; }
  .metric strong { font-size: 16px; }
  .metric span, .metric small { font-size: 7px; }
  .dashboard-panels { grid-template-columns: 1fr; }
  .trend-panel { display: none; }
  .floating-note { right: 8px; bottom: 0; width: min(205px, calc(100% - 16px)); }
  .proof-items { flex-wrap: wrap; gap: 8px 12px; padding: 18px 0; font-size: var(--text-caption); }
  .proof-items i { font-size: 13px; }
  .proof-label { flex-basis: 100%; }
  .pain-grid, .steps, .output-grid, .security-grid, .audience-list { grid-template-columns: 1fr; }
  .pain-card { min-height: 0; padding: 22px; }
  .line-icon { margin-top: 20px; }
  .split-intro, .showcase-grid, .portal-grid, .readiness-grid, .audience-grid, .faq-grid, .control-grid, .register-card, .value-card, .pricing-grid { grid-template-columns: 1fr; gap: 28px; }
  .split-intro { gap: 5px; }
  .steps { gap: 28px; }
  .step { min-height: 0; padding: 0; }
  .step:not(:last-child):after { display: none; }
  .step-icon { margin: 13px 0 17px; }
  .flow-board { grid-template-columns: 1fr; gap: 10px; padding: 18px; }
  .flow-arrow { display: flex; align-items: center; justify-content: center; gap: 9px; transform: rotate(90deg); }
  .flow-arrow b { margin: 0; }
  .editable-fields { gap: 9px; padding: 0 14px 14px; }
  .editable-body, .editable-head, .editable-foot { padding-right: 14px; padding-left: 14px; }
  .output-card { min-height: 0; }
  .output-icon { margin-top: 16px; }
  .security-grid { margin: 24px 0; }
  .security-principle, .security-principle:not(:first-child) { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid #386653; }
  .security-principle span { margin-bottom: 16px; }
  .ai-note { grid-template-columns: 45px 1fr; gap: 15px; padding: 18px; }
  .ai-controls { grid-column: 1 / -1; padding-top: 15px; border-top: 1px solid #42745e; }
  .audience-list { gap: 0; }
  .value-card { padding: 35px 25px; }
  .value-stats { gap: 10px; }
  .value-stats span { font-size: var(--text-sm); }
  .register-card { padding: 35px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
.footer-heading-contact { margin-top: 18px; }
.page-inner .site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 244, .96);
}
.cluster-section { padding-top: 72px; background: #f3f7f1; }
.cluster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cluster-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #dce6db;
  border-radius: 5px;
  background: rgba(255,255,255,.7);
  transition: transform .2s ease, background .2s ease;
}
.cluster-card:hover { transform: translateY(-5px); background: #fff; }
.cluster-card span { display: block; margin-bottom: 48px; color: #9aaba0; font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", monospace; font-size: 10px; }
.cluster-card h3 { margin-bottom: 10px; font-size: var(--text-xl); }
.cluster-card p { margin: 0; color: #7d8e85; font-size: var(--text-md); line-height: 1.6; }
.guide-shell { padding: 48px 0 100px; }
.guide-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 64px; align-items: start; }
.guide-article { max-width: 760px; }
.guide-article .lead { margin-bottom: 28px; color: #4f6359; font-size: var(--text-lg); line-height: 1.7; }
.guide-article h1 { max-width: 18ch; margin-bottom: 20px; font-size: clamp(2.25rem, 5vw, 3.5rem); }
.guide-article h2 { margin-top: 42px; font-size: clamp(1.5rem, 3vw, 2rem); }
.guide-article p, .guide-article li { color: #63756b; font-size: 1.0625rem; line-height: 1.75; }
.guide-article a { color: #2f7a4e; font-weight: 600; }
.guide-article a:hover { color: var(--forest); }
.guide-article ul { padding-left: 22px; }
.guide-note { margin-top: 40px; padding: 16px 18px; border-left: 3px solid #a7d5ae; background: #eef6ee; color: #5d7266; font-size: var(--text-sm); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #8a9b91; font-size: var(--text-sm); }
.breadcrumbs a { color: #5f9e6d; font-weight: 600; }
.guide-aside {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  padding: 24px;
  border: 1px solid #dce6db;
  border-radius: 6px;
  background: #f7fbf6;
}
.guide-aside h2 { margin-bottom: 16px; font-size: 1.25rem; }
.aside-links { display: grid; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; }
.aside-links a, .aside-links span { color: #4d6558; font-size: var(--text-sm); font-weight: 600; }
.aside-links a:hover { color: var(--forest); }
.aside-links span[aria-current="page"] { color: var(--forest); }
.aside-cta { width: 100%; }
.glossary-list { display: grid; gap: 0; margin: 36px 0 0; }
.glossary-item { padding: 22px 0; border-top: 1px solid #d5e2d6; }
.glossary-item:last-child { border-bottom: 1px solid #d5e2d6; }
.glossary-item dt { margin-bottom: 8px; font-family: Manrope, "Segoe UI", sans-serif; font-size: 1.125rem; font-weight: 700; letter-spacing: -.04em; }
.glossary-item dd { margin: 0; color: #63756b; font-size: 1.0625rem; line-height: 1.75; }
.guide-faq { margin-top: 12px; }
.page-inner .legal-shell { min-height: auto; }
.page-inner .legal-main { padding-top: 56px; }
.page-home main > .section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

@media (max-width: 1050px) {
  .cluster-grid { grid-template-columns: 1fr 1fr; }
  .guide-wrap { grid-template-columns: 1fr; gap: 40px; }
  .guide-aside { position: static; }
}

@media (max-width: 760px) {
  .cluster-grid { grid-template-columns: 1fr; }
  .cluster-card { min-height: 0; }
  .cluster-card span { margin-bottom: 20px; }
  .guide-shell { padding: 28px 0 72px; }
  .guide-article h1 { max-width: none; }
}

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