@font-face {
  font-family: Golos;
  src: url("assets/fonts/golos-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Golos;
  src: url("assets/fonts/golos-semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Golos;
  src: url("assets/fonts/golos-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --blue: #1749db;
  --ink: #202a3b;
  --muted: #5e6c80;
  --ice: #edf5ff;
  --line: #dce4ee;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  background: #fff;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--white);
  color: var(--ink);
  font:
    16px/1.65 Golos,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(60px, 5.65vw, 82px);
}
h2 {
  font-size: 48px;
}
h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
p {
  color: var(--muted);
}
button,
input {
  font: inherit;
  color: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  cursor: not-allowed;
}
button[hidden],
a[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid #6c90fa;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  width: calc(100% - 96px);
  max-width: 1280px;
  margin-inline: auto;
}
.section {
  padding-block: 108px;
}
.caption {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: white;
  text-align: center;
  transition: background 0.15s;
}
.button:hover {
  background: #1039b3;
  border-color: #1039b3;
}
.button.outline {
  background: transparent;
  color: var(--blue);
  border-color: #b7c9f1;
}
.button.outline:hover {
  background: var(--ice);
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.text-link:hover {
  text-decoration: underline;
}
.skip {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 12px 20px;
  background: white;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e7edf5;
}
.header-row {
  height: 84px;
  display: flex;
  gap: 36px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -1.5px;
  color: var(--blue);
}
.header nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}
.header nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.header nav a:hover {
  color: var(--blue);
}
.header-cta {
  margin-left: 15px;
  min-height: 44px;
  padding: 11px 19px;
  font-size: 13px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  padding: 0;
  place-items: center;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
}
.hero {
  padding-top: 57px;
}
.hero-label {
  font-size: 14px;
  margin-bottom: 23px;
}
.hero-heading {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  align-items: end;
  gap: 65px;
}
.hero h1 {
  color: var(--blue);
  line-height: 1.03;
  letter-spacing: -0.07em;
}
.hero-intro > p:first-child {
  font-size: 17px;
  max-width: 370px;
  line-height: 1.75;
}
.hero-intro .button {
  margin-top: 21px;
}
.hero-intro .caption {
  max-width: 350px;
  margin-top: 12px;
  font-size: 12px;
}
.product-stage {
  background: var(--ice);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 25px;
  padding: 30px 0 30px 32px;
  margin-top: 42px;
  overflow: hidden;
}
.stage-intro {
  padding: 17px 10px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.stage-intro > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
}
.live-mark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.stage-intro h2 {
  font-size: 29px;
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin-bottom: 19px;
}
.stage-intro > p:not(.stage-note) {
  font-size: 16px;
  max-width: 230px;
}
.stage-intro .text-link {
  margin-top: 12px;
  font-size: 13px;
}
.stage-note {
  font-size: 12px;
  line-height: 1.7;
  margin-top: auto;
  padding-top: 30px;
}
.stage-screen {
  min-width: 0;
  align-self: center;
  border: 1px solid #cdddf3;
  border-right: 0;
  border-radius: 11px 0 0 11px;
  overflow: hidden;
  background: white;
  box-shadow: 0 13px 35px #49729b12;
}
.screenshot {
  display: block;
  position: relative;
  border: 0;
  background: white;
  width: 100%;
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.screenshot img {
  width: 100%;
  aspect-ratio: 1440/760;
  object-fit: cover;
  object-position: top;
}
.image-action {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid #cad6e6;
  padding: 9px 12px;
  border-radius: 6px;
  background: #fffffff5;
  color: #354c72;
  box-shadow: 0 3px 12px #23334a0d;
}
.image-action svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.screenshot:hover .image-action {
  background: var(--ice);
}
.source-note {
  font-size: 12px;
  margin-top: 12px;
  max-width: 1000px;
}
.task-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-bottom: 1px solid var(--line);
}
.task-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 17px;
  padding: 22px 29px;
  border-right: 1px solid var(--line);
}
.task-links a:first-child {
  padding-left: 0;
}
.task-links a:last-child {
  border: 0;
  padding-right: 0;
}
.task-links a > span:last-child {
  font-size: 24px;
  color: var(--blue);
  font-weight: 400;
}
.task-links a:hover {
  color: var(--blue);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading p {
  font-size: 17px;
  max-width: 420px;
}
.section-heading h2 {
  max-width: 790px;
}
.comparison {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 76px;
  align-items: start;
}
.comparison-chart {
  padding-top: 27px;
}
.chart-head {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.chart-head h3 {
  font-size: 21px;
  max-width: 230px;
}
.segmented {
  display: flex;
  flex: none;
  background: #edf2f9;
  border-radius: 8px;
  padding: 4px;
  gap: 2px;
}
.segmented button {
  border: 0;
  background: transparent;
  color: #4e6079;
  border-radius: 5px;
  font-size: 13px;
  min-height: 38px;
  padding: 8px 15px;
}
.segmented button[aria-selected="true"] {
  background: white;
  color: var(--blue);
  box-shadow: 0 2px 4px #162c4710;
  font-weight: 600;
}
.chart-instruction {
  margin-top: 23px;
}
.chart-rows {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.chart-row {
  display: block;
  width: 100%;
  padding: 14px 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-align: left;
}
.chart-row[aria-pressed="true"] {
  background: #f7f9fd;
  border-color: #e0e7f3;
}
.chart-row:hover {
  background: #f7f9fd;
}
.chart-row-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  margin-bottom: 12px;
}
.chart-row-label strong {
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.bar-track {
  display: block;
  height: 20px;
  background: #edf2f9;
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  display: block;
  height: 100%;
  background: #9db8f7;
  border-radius: 3px;
  transition:
    width 0.4s ease,
    background 0.2s;
}
.chart-row[aria-pressed="true"] .bar-fill {
  background: var(--blue);
}
.chart-conclusion {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  border-left: 3px solid var(--blue);
  padding: 6px 0 6px 18px;
  margin-top: 24px;
  min-height: 65px;
}
.cost-sheet {
  border-radius: 14px;
  background: #f2f6fc;
  padding: 30px 34px;
}
.cost-title {
  margin-bottom: 24px;
}
.cost-title h3 {
  margin-top: 7px;
  font-size: 25px;
}
.cost-sheet dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
}
.cost-sheet dt {
  color: var(--muted);
}
.cost-sheet dd {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cost-result {
  margin-top: 25px;
  padding-top: 23px;
  border-top: 1px solid #d6dfed;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #4e627d;
}
.cost-result strong {
  font-size: 44px;
  letter-spacing: -0.055em;
  color: var(--blue);
  font-weight: 600;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}
.example-note {
  font-size: 12px;
  margin-top: 22px;
  max-width: 930px;
}
.economics-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.economics-bottom p {
  font-size: 16px;
  max-width: 740px;
}
.economics-bottom .button {
  flex: none;
}
.supply-section {
  background: #f1f6fc;
}
.supply-section .section-heading .text-link {
  margin-top: 14px;
}
.supply-demo {
  border-radius: 15px;
  background: white;
  border: 1px solid #d6e0ed;
  overflow: hidden;
}
.supply-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #e5edf8;
  border-bottom: 1px solid #d6e0ed;
  padding: 0 20px;
}
.supply-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 84px;
  padding: 15px 12px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  font-size: 15px;
  color: #4e6079;
}
.supply-tabs button > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #adbed5;
  border-radius: 50%;
  font-size: 12px;
  flex: none;
}
.supply-tabs button[aria-selected="true"] {
  color: var(--blue);
  border-bottom-color: var(--blue);
  font-weight: 600;
}
.supply-tabs button[aria-selected="true"] > span {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.supply-body {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 65px;
  padding: 42px;
}
.supply-explanation h3 {
  font-size: 27px;
  margin-top: 15px;
  max-width: 330px;
}
.supply-explanation > p:not(.caption) {
  font-size: 16px;
  margin-top: 17px;
}
.supply-summary {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  color: #566c88;
  font-size: 13px;
}
.supply-summary > strong {
  font-size: 59px;
  line-height: 1.3;
  letter-spacing: -0.06em;
  color: var(--blue);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.supply-summary small {
  font-size: 20px;
  letter-spacing: 0;
}
.supply-calculation {
  min-width: 0;
}
.table-scroll {
  overflow: auto;
  border: 1px solid #dce5ef;
  border-radius: 9px;
}
.table-hint {
  display: none;
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: right;
  font-size: 14px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
td,
th {
  padding: 17px 18px;
  border-bottom: 1px solid #e7edf4;
  font-weight: 400;
}
th:first-child {
  text-align: left;
}
thead {
  background: #f6f9fd;
  font-size: 12px;
  color: #5e6f87;
}
tbody tr:last-child > * {
  border-bottom: 0;
}
tbody td:last-child {
  font-weight: 600;
  color: var(--blue);
}
.supply-formula {
  margin-top: 16px;
  min-height: 65px;
}
.supply-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}
.supply-foot {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
  font-size: 12px;
}
.supply-foot p:last-child {
  text-align: left;
}
.finance-section .section-heading {
  grid-template-columns: 1.5fr 1fr;
}
.finance-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: start;
}
.finance-explanations article {
  padding: 0 0 23px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.finance-explanations article:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}
.finance-explanations h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.finance-explanations p {
  font-size: 16px;
}
.finance-screen {
  border-radius: 12px;
  border: 1px solid #d6e0ed;
  overflow: hidden;
  background: #f5f8fd;
  min-width: 0;
}
.finance-screen figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 20px 23px;
  font-size: 15px;
}
.finance-screen .caption {
  font-size: 12px;
}
.finance-screen > p {
  padding: 15px 23px;
}
.finance-screen .screenshot img {
  min-height: 385px;
  object-fit: cover;
  object-position: left top;
}
.finance-note {
  font-size: 14px;
  padding: 20px 24px;
  background: #f3f7fd;
  border-radius: 8px;
  margin-top: 35px;
  color: #53677e;
}
.team-section {
  background: var(--ice);
  padding-block: 76px;
}
.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 120px;
}
.team-layout > div > p {
  font-size: 17px;
  margin-top: 22px;
  max-width: 410px;
}
.team-roles article {
  display: flex;
  gap: 21px;
  align-items: start;
  padding: 3px 0 26px;
}
.team-roles article + article {
  padding-top: 26px;
  border-top: 1px solid #cfdff3;
}
.role-symbol {
  color: var(--blue);
  font-size: 32px;
  line-height: 1.1;
  flex: none;
}
.team-roles h3 {
  font-size: 23px;
  margin-bottom: 9px;
}
.team-roles article p {
  font-size: 16px;
  max-width: 450px;
}
.team-roles > .caption {
  font-size: 13px !important;
  margin-top: 3px !important;
  max-width: 480px !important;
}
.demo-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.demo-title .button {
  flex: none;
}
.demo-agenda {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-top: 50px;
}
.demo-agenda article > span {
  display: block;
  font-size: 13px;
  color: #5c749a;
  margin-bottom: 14px;
}
.demo-agenda h3 {
  font-size: 23px;
  line-height: 1.3;
  max-width: 300px;
  margin-bottom: 13px;
}
.demo-agenda p {
  font-size: 16px;
}
.demo-terms {
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  margin-top: 33px;
  max-width: 100%;
}
.contact-section {
  background: #f6f8fc;
  padding-block: 88px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
}
.contact-layout h2 {
  font-size: 39px;
}
.faq {
  margin-top: 26px;
}
.faq details {
  border-bottom: 1px solid #dbe3ee;
}
.faq summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  font-size: 16px;
  line-height: 1.55;
  list-style: none;
  min-height: 77px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  font-size: 25px;
  font-weight: 400;
  color: var(--blue);
  flex: none;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 16px;
  padding: 0 26px 24px 0;
}
.request {
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  padding: 34px 36px;
  scroll-margin-top: 0;
}
.request h2 {
  font-size: 35px;
  max-width: 400px;
}
.request > p {
  font-size: 16px;
  margin-top: 18px;
}
form {
  margin-top: 27px;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
legend {
  font-size: 13px;
  margin-bottom: 9px;
}
.topic-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.topic-options label {
  position: relative;
  cursor: pointer;
  display: block;
}
.topic-options input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.topic-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 13px;
  border: 1px solid #d5dfed;
  border-radius: 6px;
  padding: 8px 10px;
  color: #5a6b84;
}
.topic-options input:checked + span {
  background: var(--ice);
  border-color: var(--blue);
  color: var(--blue);
}
.topic-options input:focus-visible + span {
  outline: 3px solid #6c90fa;
  outline-offset: 3px;
}
.field {
  display: block;
  font-size: 13px;
  margin-top: 20px;
}
.field input {
  display: block;
  margin-top: 7px;
  width: 100%;
  min-height: 51px;
  border: 1px solid #cdd9e7;
  border-radius: 6px;
  padding: 13px 14px;
  font-size: 16px;
  background: #fff;
}
.field input::placeholder {
  color: #637187;
  font-size: 14px;
}
.field input[aria-invalid="true"] {
  border-color: #af493d;
}
.error {
  display: block;
  font-size: 12px;
  color: #a13e34;
  margin-top: 5px;
}
.error:empty {
  display: none;
}
form > .button {
  width: 100%;
  margin-top: 25px;
}
form > .button:disabled {
  opacity: 0.6;
}
#form-note {
  font-size: 12px;
  margin-top: 13px;
}
#form-status {
  font-size: 14px;
  color: #27674e;
  margin-top: 13px;
}
#form-status:empty {
  display: none;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 42px 0;
}
.footer-main > p {
  font-size: 13px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
  color: var(--muted);
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
dialog {
  padding: 0;
  width: min(1500px, calc(100% - 40px));
  max-width: calc(100% - 40px);
  max-height: calc(100dvh - 40px);
  border: 1px solid #c8d5e7;
  border-radius: 12px;
  color: var(--ink);
  box-shadow: 0 25px 100px #142a4860;
}
dialog::backdrop {
  background: #182b49aa;
  backdrop-filter: blur(3px);
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: white;
  padding: 18px 24px;
  position: sticky;
  top: 0;
  z-index: 1;
}
.dialog-header h2 {
  font-size: 23px;
  letter-spacing: -0.03em;
}
.dialog-header p {
  margin-top: 5px;
}
.dialog-header button {
  width: 44px;
  height: 44px;
  flex: none;
  background: white;
  border: 1px solid #d4dfec;
  border-radius: 6px;
  font-size: 18px;
}
.dialog-scroll {
  overflow: auto;
  max-height: calc(100dvh - 205px);
  background: var(--ice);
}
.dialog-scroll img {
  width: 1440px;
  max-width: none;
  height: auto;
}
.dialog-note {
  padding: 12px 24px;
}
.noscript {
  padding: 20px;
  background: #f8f0d8;
  text-align: center;
  font-size: 14px;
}
.noscript a {
  text-decoration: underline;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 75px;
  }
  .hero-heading {
    gap: 70px;
  }
  .hero h1 {
    font-size: 82px;
  }
}
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero-heading {
    gap: 38px;
    grid-template-columns: 1.6fr 1fr;
  }
  .hero h1 {
    font-size: 69px;
  }
  .hero-intro > p:first-child {
    font-size: 16px;
  }
  .hero-intro .button {
    font-size: 13px;
    padding-inline: 16px;
  }
  .product-stage {
    grid-template-columns: 235px 1fr;
    gap: 20px;
    padding-left: 25px;
  }
  .stage-intro h2 {
    font-size: 26px;
  }
  .stage-intro > div {
    margin-bottom: 22px;
  }
  .stage-intro > p:not(.stage-note) {
    font-size: 16px;
  }
  .stage-note {
    padding-top: 20px;
  }
  .stage-screen .screenshot img {
    min-height: 365px;
    object-fit: cover;
    object-position: left top;
  }
  .section-heading {
    gap: 50px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .section-heading p {
    font-size: 16px;
  }
  .comparison {
    gap: 42px;
    grid-template-columns: 1.3fr 1fr;
  }
  .chart-head {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
  .chart-head h3 {
    max-width: none;
  }
  .chart-instruction {
    margin-top: 16px;
  }
  .cost-sheet {
    padding: 28px;
  }
  .supply-body {
    gap: 40px;
    padding: 32px;
    grid-template-columns: 1fr 1.4fr;
  }
  .finance-layout {
    gap: 37px;
    grid-template-columns: 300px 1fr;
  }
  .finance-screen .screenshot img {
    min-height: 420px;
  }
  .team-layout {
    gap: 75px;
  }
  .contact-layout {
    gap: 55px;
  }
  .request {
    padding: 30px;
  }
  .footer-main {
    gap: 30px;
  }
  .section {
    padding-block: 90px;
  }
}
@media (max-width: 960px) {
  .header-row {
    gap: 24px;
  }
  .header nav {
    gap: 19px;
    font-size: 13px;
  }
  .header-cta {
    margin-left: 0;
    font-size: 12px;
    padding-inline: 15px;
  }
  .brand {
    font-size: 26px;
  }
  .hero {
    padding-top: 45px;
  }
  .hero-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero h1 {
    font-size: 74px;
  }
  .hero-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 40px;
    align-items: center;
  }
  .hero-intro > p:first-child {
    max-width: 490px;
  }
  .hero-intro .button {
    margin: 0;
  }
  .hero-intro .caption {
    grid-column: 1/-1;
    margin: 0;
    max-width: none;
  }
  .product-stage {
    margin-top: 33px;
    grid-template-columns: 200px 1fr;
    padding-block: 23px;
    gap: 20px;
  }
  .stage-intro h2 {
    font-size: 24px;
  }
  .stage-intro .text-link {
    font-size: 12px;
  }
  .stage-intro > div {
    margin-bottom: 20px;
  }
  .stage-intro .stage-note {
    font-size: 12px;
  }
  .stage-screen .screenshot img {
    min-height: 340px;
  }
  .task-links {
    margin-top: 24px;
  }
  .task-links a {
    font-size: 14px;
    padding: 20px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .section-heading p {
    max-width: 590px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .comparison {
    gap: 30px;
  }
  .chart-row-label {
    font-size: 14px;
    gap: 12px;
  }
  .chart-row-label strong {
    font-size: 14px;
  }
  .cost-sheet {
    padding: 24px;
  }
  .cost-title h3 {
    font-size: 23px;
  }
  .cost-result strong {
    font-size: 39px;
  }
  .cost-sheet dl > div {
    font-size: 13px;
    gap: 10px;
  }
  .economics-bottom {
    gap: 30px;
  }
  .economics-bottom .button {
    font-size: 13px;
  }
  .supply-tabs {
    padding-inline: 10px;
  }
  .supply-tabs button {
    font-size: 13px;
    gap: 8px;
    min-height: 75px;
  }
  .supply-body {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .supply-explanation {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 40px;
    align-items: center;
  }
  .supply-explanation > .caption {
    grid-column: 1/-1;
  }
  .supply-explanation h3 {
    max-width: none;
    margin: 0;
    font-size: 28px;
  }
  .supply-explanation > p:not(.caption) {
    grid-column: 1;
    margin: 0;
  }
  .supply-summary {
    grid-column: 2;
    grid-row: 2/4;
    margin: 0;
    min-width: 140px;
  }
  .supply-formula {
    min-height: 44px;
  }
  .supply-foot {
    gap: 25px;
  }
  .finance-section .section-heading {
    grid-template-columns: 1fr;
  }
  .finance-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .finance-explanations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
  }
  .finance-explanations article {
    border: 0;
    padding: 0;
    margin: 0;
  }
  .finance-explanations h3 {
    font-size: 21px;
  }
  .finance-screen .screenshot img {
    min-height: 0;
  }
  .finance-screen figcaption {
    padding-block: 16px;
  }
  .team-layout {
    gap: 45px;
    grid-template-columns: 1fr 1.15fr;
  }
  .team-layout h2 {
    font-size: 41px;
  }
  .team-layout > div > p {
    font-size: 16px;
  }
  .demo-title {
    display: block;
  }
  .demo-title h2 {
    font-size: 43px;
  }
  .demo-title .button {
    margin-top: 28px;
  }
  .demo-agenda {
    gap: 30px;
    margin-top: 38px;
  }
  .demo-agenda h3 {
    font-size: 22px;
  }
  .contact-layout {
    gap: 35px;
    grid-template-columns: 1fr 1.1fr;
  }
  .contact-layout h2 {
    font-size: 33px;
  }
  .request {
    padding: 27px 24px;
  }
  .request h2 {
    font-size: 29px;
  }
  .topic-options {
    gap: 5px;
  }
  .topic-options span {
    font-size: 12px;
    padding: 8px 6px;
  }
  .footer-main {
    gap: 24px;
    flex-wrap: wrap;
  }
  .section {
    padding-block: 80px;
  }
  .contact-section {
    padding-block: 70px;
  }
}
@media (max-width: 700px) {
  html {
    --mobile-header-height: calc(71px + env(safe-area-inset-top, 0px));
    scroll-padding-top: calc(var(--mobile-header-height) + 24px);
    scrollbar-gutter: auto;
  }
  body {
    padding-top: var(--mobile-header-height);
  }
  .header {
    position: fixed;
    inset: 0 0 auto;
    padding-top: env(safe-area-inset-top, 0px);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
  .header::before {
    content: "";
    position: absolute;
    inset: auto 0 100%;
    height: env(safe-area-inset-top, 0px);
    background: #fff;
    pointer-events: none;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-row {
    height: 70px;
    gap: 12px;
  }
  .brand {
    font-size: 24px;
    gap: 8px;
  }
  .header-cta {
    margin-left: auto;
    font-size: 12px;
    min-height: 44px;
    padding: 10px 13px;
  }
  .menu-toggle {
    display: grid;
    flex: none;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    margin: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px;
    box-shadow: 0 12px 20px #22344c0a;
    max-height: calc(100svh - var(--mobile-header-height));
    overflow-y: auto;
    overscroll-behavior-y: contain;
  }
  .header nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }
  .header nav a {
    font-size: 15px;
  }
  .hero {
    padding-top: 32px;
  }
  .hero-label {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(41px, 10.8vw, 64px);
    letter-spacing: -0.065em;
    line-height: 1.08;
  }
  .hero-heading {
    gap: 25px;
  }
  .hero-intro {
    display: block;
  }
  .hero-intro > p:first-child {
    font-size: 16px;
    line-height: 1.75;
  }
  .hero-intro .button {
    margin-top: 23px;
    width: 100%;
    font-size: 14px;
    min-height: 54px;
  }
  .hero-intro .caption {
    font-size: 12px;
    line-height: 1.7;
    margin-top: 12px;
  }
  .product-stage {
    display: block;
    margin-top: 29px;
    padding: 23px 16px 16px;
    border-radius: 15px;
  }
  .stage-intro {
    padding: 0 4px 21px;
  }
  .stage-intro > div {
    margin-bottom: 15px;
  }
  .stage-intro h2 {
    font-size: 27px;
    margin-bottom: 12px;
    max-width: 320px;
  }
  .stage-intro h2 br {
    display: none;
  }
  .stage-intro > p:not(.stage-note) {
    max-width: 400px;
    font-size: 16px;
  }
  .stage-intro .text-link {
    display: none;
  }
  .stage-note {
    margin-top: 12px;
    padding: 0;
    font-size: 12px;
  }
  .stage-note br {
    display: none;
  }
  .stage-screen {
    border-right: 1px solid #cdddf3;
    border-radius: 8px;
    box-shadow: none;
  }
  .stage-screen .screenshot img {
    min-height: 0;
    aspect-ratio: 374/470;
    object-fit: cover;
  }
  .image-action {
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    padding: 8px 10px;
  }
  .source-note {
    font-size: 12px;
    line-height: 1.75;
    margin-top: 15px;
  }
  .task-links {
    grid-template-columns: 1fr;
    margin-top: 22px;
    border-bottom: 0;
  }
  .task-links a {
    padding: 17px 0 !important;
    font-size: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
    min-height: 64px;
  }
  .task-links a > span:last-child {
    font-size: 22px;
  }
  .section {
    padding-block: 62px;
  }
  .section-heading {
    gap: 21px;
    margin-bottom: 30px;
  }
  .section-heading h2,
  h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.05em;
  }
  .section-heading p {
    font-size: 16px;
  }
  .comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .comparison-chart {
    padding-top: 0;
  }
  .chart-head {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .chart-head h3 {
    font-size: 20px;
    max-width: 155px;
  }
  .segmented {
    padding: 3px;
    gap: 0;
  }
  .segmented button {
    font-size: 12px;
    padding: 8px 11px;
    min-height: 44px;
  }
  .chart-instruction {
    font-size: 12px;
    margin-top: 18px;
  }
  .chart-rows {
    gap: 3px;
  }
  .chart-row {
    padding: 13px 10px 16px;
  }
  .chart-row-label,
  .chart-row-label strong {
    font-size: 14px;
  }
  .bar-track {
    height: 18px;
  }
  .chart-conclusion {
    font-size: 16px;
    margin-top: 21px;
    min-height: 0;
  }
  .cost-sheet {
    padding: 24px;
    border-radius: 12px;
  }
  .cost-title h3 {
    font-size: 26px;
  }
  .cost-sheet dl > div {
    font-size: 14px;
  }
  .cost-result strong {
    font-size: 43px;
  }
  .example-note {
    font-size: 12px;
    line-height: 1.75;
    margin-top: 18px;
  }
  .economics-bottom {
    display: block;
    margin-top: 24px;
    padding-top: 24px;
  }
  .economics-bottom p {
    font-size: 16px;
  }
  .economics-bottom .button {
    font-size: 14px;
    width: 100%;
    margin-top: 24px;
  }
  .supply-section .text-link {
    font-size: 14px;
  }
  .supply-demo {
    border-radius: 11px;
  }
  .supply-tabs {
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    gap: 5px;
    background: #e7eef9;
  }
  .supply-tabs button {
    justify-content: start;
    min-height: 55px;
    padding: 8px;
    font-size: 12px;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 5px;
  }
  .supply-tabs button[aria-selected="true"] {
    border-color: #b4c7ed;
    background: white;
  }
  .supply-tabs button > span {
    width: 23px;
    height: 23px;
    font-size: 12px;
  }
  .supply-body {
    padding: 23px 16px;
    gap: 25px;
  }
  .supply-explanation {
    display: block;
  }
  .supply-explanation > .caption {
    font-size: 12px;
  }
  .supply-explanation h3 {
    font-size: 27px;
    margin-top: 13px;
    line-height: 1.25;
  }
  .supply-explanation > p:not(.caption) {
    margin-top: 14px;
    font-size: 16px;
  }
  .supply-summary {
    margin-top: 22px;
    min-width: 0;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  .supply-summary > strong {
    font-size: 43px;
  }
  .supply-summary small {
    font-size: 17px;
  }
  .table-hint {
    display: block;
    font-size: 12px;
  }
  .table-scroll {
    border-radius: 7px;
  }
  table {
    font-size: 13px;
    min-width: 305px;
  }
  td,
  th {
    padding: 14px 10px;
  }
  thead {
    font-size: 12px;
  }
  .supply-formula {
    font-size: 12px;
    min-height: 82px;
    margin-top: 14px;
  }
  .supply-controls {
    margin-top: 12px;
  }
  .supply-controls .button {
    width: 100%;
    font-size: 13px;
    min-height: 50px;
  }
  .supply-foot {
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    margin-top: 19px;
  }
  .supply-foot p:last-child {
    text-align: left;
  }
  .finance-explanations {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .finance-explanations article {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
  .finance-explanations h3 {
    font-size: 23px;
  }
  .finance-screen figcaption {
    padding: 16px;
    align-items: start;
    flex-direction: column;
    gap: 3px;
    font-size: 16px;
  }
  .finance-screen .screenshot img {
    aspect-ratio: 374/470;
    min-height: 0;
  }
  .finance-screen > p {
    padding: 12px 16px;
  }
  .finance-note {
    font-size: 14px;
    padding: 18px;
    margin-top: 24px;
  }
  .team-section {
    padding-block: 57px;
  }
  .team-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .team-layout h2 {
    font-size: 34px;
  }
  .team-layout > div > p {
    font-size: 16px;
    margin-top: 20px;
  }
  .team-roles article {
    gap: 17px;
    padding-bottom: 23px;
  }
  .team-roles article + article {
    padding-top: 23px;
  }
  .team-roles h3 {
    font-size: 23px;
  }
  .team-roles article p {
    font-size: 16px;
  }
  .team-roles > .caption {
    font-size: 13px !important;
  }
  .demo-title h2 {
    font-size: 34px;
  }
  .demo-title .button {
    margin-top: 25px;
    width: 100%;
    font-size: 13px;
  }
  .demo-agenda {
    grid-template-columns: 1fr;
    gap: 29px;
    margin-top: 32px;
  }
  .demo-agenda article > span {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .demo-agenda h3 {
    max-width: none;
    font-size: 24px;
    margin-bottom: 10px;
  }
  .demo-agenda p {
    font-size: 16px;
  }
  .demo-terms {
    font-size: 14px;
    margin-top: 27px;
    padding-top: 23px;
  }
  .contact-section {
    padding-block: 58px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .contact-layout h2 {
    font-size: 34px;
  }
  .faq {
    margin-top: 20px;
  }
  .faq summary {
    font-size: 16px;
    padding-block: 20px;
    min-height: 76px;
  }
  .faq details p {
    font-size: 16px;
    padding-right: 14px;
  }
  .request {
    padding: 27px 22px;
    border-radius: 13px;
  }
  .request h2 {
    font-size: 32px;
  }
  .request > p {
    font-size: 16px;
    margin-top: 16px;
  }
  .topic-options {
    gap: 7px;
  }
  .topic-options span {
    font-size: 12px;
  }
  .field {
    font-size: 14px;
  }
  .field input {
    font-size: 16px;
  }
  .field input::placeholder {
    font-size: 14px;
  }
  form > .button {
    font-size: 13px;
    padding-inline: 12px;
  }
  .footer-main {
    padding-block: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-main > p {
    font-size: 14px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding-block: 21px;
    font-size: 12px;
  }
  dialog {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 9px;
  }
  .dialog-header {
    padding: 14px;
    gap: 15px;
  }
  .dialog-header h2 {
    font-size: 19px;
    line-height: 1.3;
  }
  .dialog-header .caption {
    font-size: 12px;
  }
  .dialog-scroll {
    max-height: calc(100dvh - 215px);
  }
  .dialog-note {
    font-size: 12px;
    padding: 12px 14px;
  }
}
@media (max-width: 374px) {
  .container {
    width: calc(100% - 32px);
  }
  .header-row {
    gap: 8px;
  }
  .brand {
    font-size: 22px;
  }
  .header-cta {
    font-size: 12px;
    padding-inline: 10px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .chart-head {
    gap: 14px;
  }
  .chart-head h3 {
    font-size: 19px;
  }
  .segmented button {
    padding-inline: 9px;
  }
  .chart-row-label,
  .chart-row-label strong {
    font-size: 13px;
  }
  .product-stage {
    padding-inline: 13px;
  }
  .request {
    padding: 25px 18px;
  }
  .topic-options {
    gap: 5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.screenshot:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -5px;
}

/* Anchor destinations remain visible below the sticky navigation. */
.anchor-focus:focus {
  outline: none;
}
@media (min-width: 701px) {
  html {
    scrollbar-gutter: stable;
  }
}
.footer-main {
  flex-wrap: wrap;
}
.footer-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--blue);
  font-size: 14px;
}
.footer-cta:hover {
  text-decoration: underline;
}
@media (max-width: 700px) {
  .footer-cta {
    margin-left: 0;
    justify-self: start;
  }
}

/* Official logo assets from apps/web/public, kept unchanged. */
.brand {
  flex-shrink: 0;
  min-height: 44px;
}
.brand picture {
  display: block;
}
.brand-logo {
  width: 178px;
  height: auto;
}
@media (max-width: 700px) {
  .header .brand-logo {
    width: 130px;
  }
}
@media (max-width: 374px) {
  .header .brand-logo {
    width: 34px;
    height: 30px;
    object-fit: contain;
  }
}

/* Version based on the manager's brief; the original landing stays unchanged. */
.manager-hero h1 {
  font-size: clamp(48px, 4.65vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}
.manager-hero .hero-heading {
  grid-template-columns: 1.65fr 1fr;
  gap: 66px;
}
.manager-hero .source-note {
  margin-bottom: 0;
}
.feature-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.feature-directory > a {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-directory > a:nth-child(3n) {
  border-right: 0;
}
.feature-directory > a:nth-child(n + 4) {
  border-bottom: 0;
}
.feature-directory > a:hover {
  background: #f5f9ff;
}
.feature-directory > a:focus-visible {
  outline-offset: -4px;
}
.feature-symbol {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 27px;
  height: 40px;
  margin-bottom: 6px;
}
.feature-directory h3 {
  font-size: 23px;
}
.feature-directory p {
  font-size: 16px;
}
.feature-link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.feature-link > span {
  margin-left: 7px;
}
.section-result {
  padding: 22px 0 0;
  color: #344a6b;
  font-size: 17px;
}
.stock-ad-section {
  background: #f6f9fe;
}
.stock-ad-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.stock-ad-layout h2 {
  font-size: 44px;
}
.section-intro {
  font-size: 17px;
  margin-top: 23px;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 29px 0;
  display: grid;
  gap: 21px;
}
.benefit-list li {
  padding-left: 20px;
  border-left: 2px solid #b5cafa;
}
.benefit-list strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 5px;
}
.benefit-list li > span {
  display: block;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.stock-visual {
  min-width: 0;
}
.stock-visual figure {
  border: 1px solid #d2deef;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}
.stock-visual figcaption {
  padding: 21px 24px;
  font-size: 16px;
}
.stock-visual .screenshot img {
  min-height: 340px;
  object-position: left top;
}
.stock-visual .image-action {
  bottom: 10px;
  right: 10px;
}
.stock-decision {
  margin: 24px 0 15px;
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 22px;
  background: #e8f0ff;
  border-radius: 10px;
}
.decision-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
  margin-top: 8px;
}
.stock-decision p {
  font-size: 15px;
  color: #415d87;
}
.stock-decision strong {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
}
.table-showcase {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.table-showcase-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 29px 30px;
}
.table-showcase-head h3 {
  font-size: 24px;
}
.table-showcase-head p {
  margin-top: 9px;
}
.sample-label {
  font-size: 12px;
  white-space: nowrap;
  color: #526788;
  background: #eef3fb;
  padding: 5px 10px;
  border-radius: 5px;
}
.column-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 0 30px 24px;
}
.column-controls legend {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 7px;
}
.column-controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  min-height: 44px;
  cursor: pointer;
}
.column-controls input {
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
  margin: 0;
}
.metrics-scroll {
  overflow-x: auto;
}
.custom-metrics {
  width: 100%;
  font-size: 14px;
}
.custom-metrics td,
.custom-metrics th {
  padding: 20px;
}
.custom-metrics th:first-child {
  min-width: 180px;
}
.custom-metrics [hidden] {
  display: none;
}
.custom-metrics tbody td:last-child {
  font-weight: 400;
  color: inherit;
}
.custom-metrics tbody td[data-col="profit"] {
  color: var(--blue);
  font-weight: 600;
}
.stock-warning {
  background: #fff0db;
  color: #985710;
  padding: 5px 9px;
  border-radius: 4px;
}
.table-showcase-foot {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding: 15px 30px;
  background: #fafcff;
}
.table-overflow-note {
  display: none;
  padding: 0 20px 12px;
}
.table-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 32px;
}
.table-benefits p {
  font-size: 16px;
}
.table-benefits strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}
.ai-section {
  background: #edf4ff;
}
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 85px;
  align-items: start;
}
.ai-explainer > p {
  font-size: 17px;
  margin-top: 18px;
}
.ai-explainer h3 {
  font-size: 25px;
}
.ai-example {
  background: #fff;
  border: 1px solid #d1dff4;
  border-radius: 16px;
  padding: 33px;
}
.connection-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 10px 0 30px;
  border-bottom: 1px solid #e1e9f5;
}
.connection-flow > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}
.connection-flow img {
  width: 115px;
  height: auto;
}
.connection-flow div > span {
  font-size: 12px;
  color: #5a7091;
  white-space: nowrap;
}
.connection-line {
  font-size: 22px;
  color: #879fc5;
}
.mcp-node {
  font-size: 19px;
  font-weight: 600;
  color: var(--blue);
}
.mcp-node > span {
  font-weight: 400;
}
.connection-flow .assistant-glyph {
  font-size: 34px;
  height: 27px;
  line-height: 27px;
  color: var(--blue);
}
.ai-example h3 {
  font-size: 22px;
  margin-top: 28px;
  margin-bottom: 20px;
}
.question-example {
  background: #f3f7fe;
  border: 1px solid #e2eaf8;
  border-radius: 11px 11px 11px 2px;
  padding: 15px 19px;
  margin-top: 11px;
  font-size: 16px;
  color: #3f5676;
}
.ai-example > p {
  margin-top: 23px;
  font-size: 12px;
}
.comparison-section {
  padding-top: 0;
}
.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.approach-table {
  text-align: left;
  white-space: normal;
}
.approach-table th,
.approach-table td {
  padding: 22px 25px;
  font-size: 16px;
  vertical-align: top;
}
.approach-table thead th {
  font-size: 14px;
  font-weight: 600;
}
.approach-table thead th:first-child {
  width: 22%;
}
.approach-table thead th:nth-child(2) {
  width: 35%;
}
.approach-table tbody th {
  font-weight: 600;
}
.approach-table td:nth-child(2) {
  color: var(--muted);
}
.approach-table th:last-child,
.approach-table td:last-child {
  background: #f0f5ff;
  color: #355886;
  font-weight: 400;
}
.approach-table thead th:last-child {
  color: var(--blue);
  font-weight: 600;
}
.comparison-caption {
  margin-top: 17px;
  font-size: 12px;
}
.closing-copy h2 {
  font-size: 45px;
  line-height: 1.15;
}
.closing-copy > p {
  font-size: 17px;
  margin-top: 25px;
}
.closing-agenda {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.closing-agenda p {
  font-size: 16px;
  color: var(--ink);
  display: flex;
  gap: 12px;
}
.closing-agenda span {
  color: var(--blue);
}
.closing-copy > p.caption {
  font-size: 13px;
}
.topic-options {
  grid-template-columns: repeat(2, 1fr);
}
.topic-options label:last-child {
  grid-column: 1/-1;
}
.version-reference {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 0 0 20px;
}
.version-reference > span {
  color: var(--muted);
}
.version-reference a {
  color: var(--blue);
  min-height: 44px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .manager-hero h1 {
    font-size: 58px;
  }
  .manager-hero .hero-heading {
    gap: 45px;
  }
  .stock-ad-layout {
    gap: 45px;
  }
  .stock-ad-layout h2 {
    font-size: 39px;
  }
  .ai-layout {
    gap: 45px;
  }
  .ai-example {
    padding: 25px;
  }
  .connection-flow {
    gap: 9px;
  }
  .connection-flow img {
    width: 95px;
  }
  .feature-directory > a {
    padding: 25px;
  }
}
@media (max-width: 960px) {
  .manager-hero .hero-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .manager-hero h1 {
    font-size: 64px;
    max-width: 800px;
  }
  .header-row {
    gap: 16px;
  }
  .header nav {
    gap: 13px;
    font-size: 12px;
  }
  .header .brand-logo {
    width: 154px;
  }
  .feature-directory {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-directory > a:nth-child(n) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .feature-directory > a:nth-child(2n) {
    border-right: 0;
  }
  .feature-directory > a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .stock-ad-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .stock-ad-layout > div:first-child {
    max-width: 650px;
  }
  .stock-visual .screenshot img {
    min-height: 0;
  }
  .table-overflow-note {
    display: block;
  }
  .ai-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ai-explainer > p {
    max-width: 650px;
  }
  .connection-flow img {
    width: 130px;
  }
  .connection-flow {
    max-width: 520px;
    margin: 0 auto;
  }
  .ai-example {
    padding: 30px;
  }
  .table-benefits {
    gap: 28px;
  }
  .closing-copy h2 {
    font-size: 37px;
  }
  .approach-table {
    min-width: 650px;
  }
}
@media (max-width: 700px) {
  .manager-hero h1 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.055em;
  }
  .manager-hero .hero-heading {
    gap: 22px;
  }
  .header .brand-logo {
    width: 130px;
  }
  .header-row {
    gap: 10px;
  }
  .header-cta {
    font-size: 12px;
    padding-inline: 11px;
  }
  .hero-label {
    font-size: 12px;
  }
  .feature-directory {
    grid-template-columns: 1fr;
    border-radius: 11px;
  }
  .feature-directory > a:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 25px;
    gap: 10px;
  }
  .feature-directory > a:last-child {
    border: 0;
  }
  .feature-directory h3 {
    font-size: 24px;
  }
  .feature-symbol {
    margin-bottom: 2px;
    height: 30px;
  }
  .feature-link {
    padding-top: 8px;
  }
  .section-result {
    font-size: 16px;
  }
  .stock-ad-layout h2 {
    font-size: 34px;
  }
  .section-intro {
    font-size: 16px;
  }
  .benefit-list {
    margin-block: 24px;
    gap: 21px;
  }
  .stock-ad-layout .button {
    width: 100%;
    font-size: 13px;
  }
  .stock-visual figcaption {
    padding: 17px;
  }
  .stock-visual .screenshot {
    height: 400px;
  }
  .stock-visual .screenshot img {
    position: relative;
    max-width: none;
    width: 1440px;
    height: 760px;
    left: -256px;
    top: -275px;
  }
  .stock-decision {
    margin-top: 19px;
    padding: 19px;
  }
  .stock-decision p {
    font-size: 16px;
  }
  .stock-visual > .caption {
    font-size: 12px;
  }
  .table-showcase-head {
    align-items: start;
    flex-direction: column;
    gap: 13px;
    padding: 23px 20px;
  }
  .table-showcase-head h3 {
    font-size: 25px;
  }
  .column-controls {
    padding: 0 20px 18px;
    gap: 3px 18px;
  }
  .column-controls label {
    font-size: 13px;
  }
  .custom-metrics th,
  .custom-metrics td {
    padding: 17px;
    font-size: 13px;
  }
  .custom-metrics th:first-child {
    min-width: 165px;
  }
  .table-showcase-foot {
    flex-direction: column;
    align-items: start;
    gap: 2px;
    padding: 15px 20px;
  }
  .table-benefits {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .table-benefits strong {
    margin-bottom: 5px;
  }
  .ai-explainer h3 {
    font-size: 25px;
  }
  .ai-explainer > p {
    font-size: 16px;
  }
  .ai-explainer .button {
    width: 100%;
    font-size: 13px;
  }
  .ai-example {
    padding: 23px 18px;
    border-radius: 12px;
  }
  .connection-flow {
    gap: 7px;
    padding-top: 5px;
  }
  .connection-flow img {
    width: 89px;
  }
  .connection-flow div > span {
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }
  .connection-line {
    font-size: 17px;
  }
  .mcp-node {
    font-size: 17px;
  }
  .question-example {
    padding: 15px;
    font-size: 16px;
  }
  .comparison-section {
    padding-top: 0;
  }
  .comparison-scroll {
    border-radius: 10px;
  }
  .approach-table {
    min-width: 620px;
  }
  .approach-table td,
  .approach-table th {
    font-size: 15px;
    padding: 19px;
  }
  .comparison-caption {
    font-size: 12px;
  }
  .closing-copy h2 {
    font-size: 35px;
  }
  .closing-copy > p {
    font-size: 16px;
    margin-top: 21px;
  }
  .closing-agenda {
    margin-top: 25px;
  }
  .version-reference {
    align-items: start;
    flex-direction: column;
    gap: 3px;
  }
}
@media (max-width: 374px) {
  .header .brand-logo {
    width: 34px;
    height: 30px;
  }
  .manager-hero h1 {
    font-size: 38px;
  }
  .feature-directory > a:nth-child(n) {
    padding: 22px;
  }
  .connection-flow img {
    width: 78px;
  }
  .connection-flow {
    gap: 5px;
  }
}

/* Approved landing: navigation, Lucide icons and focused product captures. */
.header nav a { position: relative; }
.header nav a[aria-current="location"] { color: var(--blue); }
.header nav a[aria-current="location"]::after {
  content: "";
  position: absolute;
  inset: auto 0 1px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.lucide { display: inline-block; flex: none; vertical-align: middle; }
.feature-symbol .lucide { width: 26px; height: 26px; }
.feature-link .lucide, .text-link .lucide { width: 17px; height: 17px; }
.assistant-glyph .lucide { width: 32px; height: 32px; }
.connection-line { display: flex; align-items: center; justify-content: center; }
.closing-agenda .lucide { width: 21px; height: 21px; margin-top: 2px; }
.menu-toggle { color: var(--blue); }
.menu-toggle .lucide { display: block; width: 22px; height: 22px; }
.menu-toggle .menu-close-icon,
.menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close-icon { display: block; }
.topic-hint { margin: -4px 0 13px; }
.topic-options span { gap: 7px; }
.topic-options .lucide { width: 16px; height: 16px; visibility: hidden; }
.topic-options input:checked + span .lucide { visibility: visible; }
#close-dialog { display: grid; place-items: center; }
.stage-screen .screenshot img,
.stock-visual .screenshot img,
.finance-screen .screenshot img {
  position: static;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.stage-screen .screenshot img { aspect-ratio: 2018 / 810; }
.stock-visual .screenshot img { aspect-ratio: 1856 / 606; }
.finance-screen .screenshot img { aspect-ratio: 1734 / 1032; }
.stock-visual .screenshot { height: auto; }
.screenshot { cursor: zoom-in; }
.dialog-scroll img { width: 100%; max-width: none; min-width: 900px; }
@media (min-width: 701px) and (max-width: 1100px) {
  .header-row { gap: 18px; }
  .header nav { gap: 14px; font-size: 13px; }
  .header-cta { margin-left: 0; padding-inline: 12px; }
}
@media (max-width: 700px) {
  .stage-screen .screenshot img { aspect-ratio: 890 / 970; }
  .stock-visual .screenshot img { aspect-ratio: 728 / 272; }
  .finance-screen .screenshot img { aspect-ratio: 916 / 726; }
  .header nav a[aria-current="location"] {
    background: var(--ice);
    border-radius: 6px;
    padding-inline: 12px;
  }
  .header nav a[aria-current="location"]::after { display: none; }
  .stage-screen { padding: 12px; }
}

.topic-options span { height: 100%; }

@media (min-width: 701px) and (max-width: 900px) {
  .header-row { gap: 12px; }
  .header .brand-logo { width: 132px; }
  .header nav { gap: 10px; font-size: 12px; }
  .header-cta { font-size: 12px; white-space: nowrap; }
}

.finance-screen .screenshot { padding: 16px; background: #fff; }
@media (max-width: 700px) {
  .finance-screen .screenshot { padding: 10px; }
}
