:root {
  --green: #18b968;
  --green-dark: #087a48;
  --green-ink: #075d3b;
  --green-pale: #eaf8f1;
  --ink: #0d1b2a;
  --text: #44515e;
  --muted: #73808c;
  --line: #dfe7e3;
  --surface: #ffffff;
  --page: #f6f8f7;
  --blue: #2f6fed;
  --amber: #d97706;
  --red: #d64545;
  --purple: #7458d6;
  --container: 1240px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.loaded {
  opacity: 1;
}

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

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

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

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 700;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 8px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 116px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(246, 248, 247, 0.86);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background-color 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(13, 27, 42, 0.09);
}

.nav-shell {
  width: min(calc(100% - 48px), 1380px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 122, 72, 0.18);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-mark.small {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.brand-mark.small svg {
  width: 17px;
  height: 17px;
}

.brand-mark.large {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 17px;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.desktop-nav a {
  position: relative;
  color: #34414d;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.capability-tabs button:focus-visible,
.scenario-list button:focus-visible {
  outline: 3px solid rgba(47, 111, 237, 0.24);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 14px;
}

.button-primary {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 122, 72, 0.2);
}

.button-primary:hover {
  background: var(--green-ink);
}

.button-ghost {
  border-color: #cbd8d2;
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.button-text {
  padding-inline: 4px;
  background: transparent;
  color: var(--green-dark);
}

.button-light {
  background: #fff;
  color: var(--green-dark);
}

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

.hero {
  position: relative;
  isolation: isolate;
  height: min(720px, calc(100svh - 36px));
  min-height: 620px;
  overflow: hidden;
  background: #edf3ef;
}

.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 auto;
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: 73% 50%;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 56%;
  background: rgba(246, 248, 247, 0.96);
  border-right: 1px solid rgba(255, 255, 255, 0.68);
}

.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-copy {
  width: 620px;
  max-width: 52%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow span {
  width: 25px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #65e5a5;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 13px;
  font-size: clamp(48px, 5.2vw, 70px);
  line-height: 1.08;
}

.hero-lead {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.45;
}

.hero-description {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 24px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
  color: #50605a;
  font-size: 13px;
}

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

.hero-points svg {
  width: 16px;
  color: var(--green);
}

.hero-status {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 310px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(13, 27, 42, 0.15);
  backdrop-filter: blur(14px);
}

.status-head,
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-head {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.status-head span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status-head svg {
  width: 16px;
  color: var(--green);
}

.status-head em {
  color: var(--green-dark);
  font-size: 11px;
  font-style: normal;
}

.status-row {
  padding: 11px 0;
  border-top: 1px solid #edf0ee;
}

.status-row div {
  display: grid;
}

.status-row small {
  color: var(--muted);
  font-size: 10px;
}

.status-row strong {
  margin-top: 2px;
  font-size: 13px;
}

.status-tag {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.status-tag.success {
  color: var(--green-dark);
  background: var(--green-pale);
}

.status-tag.processing {
  color: var(--blue);
  background: #edf3ff;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(13, 27, 42, 0.58);
  font-size: 9px;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 14px;
  animation: nudge 1.6s ease-in-out infinite;
}

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

.section-heading h2,
.order-copy h2,
.mobile-service-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.23;
}

.section-heading > p:last-child,
.order-copy > p,
.mobile-service-copy > p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

.section-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 90px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.pain-section {
  background: var(--page);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfd9d4;
  border-bottom: 1px solid #cfd9d4;
}

.pain-item {
  position: relative;
  min-height: 300px;
  padding: 40px 28px 34px 0;
}

.pain-item + .pain-item {
  padding-left: 28px;
  border-left: 1px solid #cfd9d4;
}

.pain-number {
  position: absolute;
  top: 30px;
  right: 22px;
  color: #b2beb8;
  font-size: 12px;
  font-weight: 700;
}

.pain-item > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 54px;
  color: var(--green-dark);
}

.pain-item:nth-child(2) > svg {
  color: var(--amber);
}

.pain-item:nth-child(3) > svg {
  color: var(--blue);
}

.pain-item:nth-child(4) > svg {
  color: var(--purple);
}

.pain-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.pain-item p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

.workflow-section {
  overflow: hidden;
  background: #0c3124;
  color: #fff;
}

.workflow-section .section-heading > p:last-child,
.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.67);
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-rail::before {
  content: "";
  position: absolute;
  top: 41px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.workflow-rail li {
  position: relative;
  z-index: 1;
  padding: 0 22px;
  text-align: center;
}

.workflow-icon {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  place-items: center;
  background: #0c3124;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  transition: border-color 300ms ease, background-color 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.workflow-icon svg {
  width: 27px;
  height: 27px;
}

.workflow-rail li.active .workflow-icon {
  border-color: #55df98;
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(24, 185, 104, 0.1), 0 0 42px rgba(24, 185, 104, 0.24);
}

.workflow-rail small {
  display: block;
  margin-bottom: 5px;
  color: #68dba3;
  font-size: 10px;
}

.workflow-rail strong {
  display: block;
  font-size: 18px;
}

.workflow-rail p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.65;
}

.capability-section {
  background: #fff;
}

.capability-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.capability-tabs button {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #697680;
  cursor: pointer;
  font-weight: 700;
}

.capability-tabs button::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  background: var(--green);
  transition: right 200ms ease, left 200ms ease;
}

.capability-tabs button.active {
  color: var(--ink);
}

.capability-tabs button.active::after {
  right: 15%;
  left: 15%;
}

.capability-tabs button span {
  color: #a2aea8;
  font-size: 11px;
}

.capability-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(540px, 1.25fr);
  align-items: center;
  gap: 70px;
  min-height: 560px;
  padding-top: 64px;
}

.capability-panel[hidden] {
  display: none;
}

.capability-panel.active {
  animation: panel-in 340ms ease both;
}

.capability-copy {
  padding-left: 6px;
}

.capability-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 7px;
  background: var(--green-pale);
  color: var(--green-dark);
}

.capability-icon svg {
  width: 23px;
}

.capability-icon.amber {
  background: #fff4e6;
  color: var(--amber);
}

.capability-icon.blue {
  background: #edf3ff;
  color: var(--blue);
}

.capability-icon.purple {
  background: #f3efff;
  color: var(--purple);
}

.kicker {
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.amber-text {
  color: var(--amber);
}

.blue-text {
  color: var(--blue);
}

.purple-text {
  color: var(--purple);
}

.capability-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.32;
}

.capability-copy > p:not(.kicker) {
  color: var(--text);
  line-height: 1.85;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  border: 1px solid #cce8da;
  border-radius: 4px;
  color: var(--green-dark);
  background: #f7fcf9;
  font-size: 11px;
  font-weight: 700;
}

.amber-list li {
  border-color: #f0d5af;
  color: var(--amber);
  background: #fffaf3;
}

.blue-list li {
  border-color: #cfddfb;
  color: var(--blue);
  background: #f7f9ff;
}

.purple-list li {
  border-color: #ddd4fb;
  color: var(--purple);
  background: #faf8ff;
}

.product-window {
  overflow: hidden;
  border: 1px solid #d9e1dd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(14, 37, 25, 0.1);
}

.window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #f4f6f5;
  border-bottom: 1px solid #e2e7e4;
}

.window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7cfcb;
}

.window-bar > span:first-child {
  background: #ef8d8d;
}

.window-bar > span:nth-child(2) {
  background: #e4bb6a;
}

.window-bar > span:nth-child(3) {
  background: #75c99b;
}

.window-bar em {
  margin-left: 8px;
  color: #819088;
  font-size: 10px;
  font-style: normal;
}

.window-body {
  min-height: 412px;
  padding: 30px;
}

.ui-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.ui-toolbar strong {
  font-size: 15px;
}

.ui-toolbar button,
.query-input button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  background: var(--green-dark);
  color: #fff;
  font-size: 10px;
}

.ui-toolbar button svg {
  width: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.form-row label {
  display: grid;
  padding: 11px 12px;
  border: 1px solid #e1e7e4;
  border-radius: 5px;
  color: #87918c;
  font-size: 9px;
}

.form-row b {
  margin-top: 3px;
  color: var(--ink);
  font-size: 11px;
}

.rule-table {
  border: 1px solid #e1e7e4;
  border-radius: 5px;
}

.rule-tr {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr 0.7fr;
  min-height: 48px;
  align-items: center;
  padding: 0 13px;
  border-top: 1px solid #edf1ef;
  font-size: 10px;
}

.rule-tr:first-child {
  border-top: 0;
}

.rule-th {
  min-height: 40px;
  color: #829089;
  background: #f8faf9;
}

.rule-tr span:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

.cost-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
  border: 1px solid #e6e9e7;
  border-radius: 5px;
}

.cost-summary div {
  display: grid;
  padding: 18px;
}

.cost-summary div + div {
  border-left: 1px solid #e6e9e7;
}

.cost-summary small {
  color: #859089;
  font-size: 9px;
}

.cost-summary strong {
  margin-top: 5px;
  font-size: 20px;
}

.cost-ladder {
  display: grid;
  gap: 21px;
}

.cost-ladder div {
  display: grid;
  grid-template-columns: 62px 1fr 70px;
  align-items: center;
  gap: 13px;
  font-size: 10px;
}

.cost-ladder div > i {
  position: relative;
  height: 9px;
  overflow: hidden;
  border-radius: 4px;
  background: #f1eee9;
}

.cost-ladder div > i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--width);
  background: var(--amber);
}

.cost-ladder b {
  color: var(--amber);
  text-align: right;
}

.query-input {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 0 10px 0 14px;
  border: 1px solid #dfe5e2;
  border-radius: 5px;
}

.query-input > svg {
  width: 15px;
  color: var(--blue);
}

.query-input span {
  flex: 1;
  color: #47564f;
  font-size: 10px;
}

.query-input button {
  background: var(--blue);
}

.query-row {
  display: grid;
  grid-template-columns: 34px 1fr auto auto;
  align-items: center;
  gap: 13px;
  min-height: 76px;
  padding: 0 14px;
  border-bottom: 1px solid #ebefed;
}

.query-row.best {
  border: 1px solid #bde5d0;
  border-radius: 5px;
  background: #f7fcf9;
}

.provider-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 5px;
  background: var(--green-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

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

.query-row div:nth-child(2) {
  display: grid;
}

.query-row strong {
  font-size: 11px;
}

.query-row small {
  color: #89938e;
  font-size: 9px;
}

.query-row > span {
  font-size: 15px;
  font-weight: 700;
}

.query-row > button {
  min-height: 29px;
  padding-inline: 9px;
  border: 1px solid #d3ded8;
  border-radius: 4px;
  background: #fff;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 700;
}

.query-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--amber);
  font-size: 9px;
}

.query-note svg {
  width: 13px;
}

.batch-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.batch-title div {
  display: grid;
}

.batch-title strong {
  font-size: 13px;
}

.batch-title small {
  color: #89938e;
  font-size: 9px;
}

.batch-title > span {
  color: var(--purple);
  font-size: 10px;
  font-weight: 700;
}

.progress-track {
  position: relative;
  height: 7px;
  margin: 18px 0 17px;
  overflow: hidden;
  border-radius: 4px;
  background: #eeeaf9;
}

.progress-track i {
  position: absolute;
  inset: 0 24% 0 0;
  background: var(--purple);
}

.batch-stats {
  display: flex;
  gap: 22px;
  margin-bottom: 23px;
  color: #7f8984;
  font-size: 9px;
}

.batch-stats b {
  margin-right: 3px;
  color: var(--ink);
  font-size: 12px;
}

.batch-stats .error-text,
.batch-stats .error-text b {
  color: var(--red);
}

.mini-table {
  border: 1px solid #e5e8e6;
  border-radius: 5px;
}

.mini-table div {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  min-height: 52px;
  align-items: center;
  padding: 0 14px;
  border-top: 1px solid #edf0ee;
  font-size: 9px;
}

.mini-table div:first-child {
  border-top: 0;
}

.mini-table b {
  font-weight: 600;
}

.mini-table em {
  justify-self: end;
  color: var(--blue);
  font-style: normal;
}

.mini-table em.warn {
  color: var(--amber);
}

.order-section {
  background: var(--green-pale);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1fr);
  align-items: center;
  gap: 100px;
}

.order-copy blockquote {
  margin: 32px 0 0;
  padding: 18px 0 18px 24px;
  border-left: 3px solid var(--green);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
}

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

.order-steps li {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 20px;
  min-height: 118px;
  border-bottom: 1px solid #c7ddd2;
}

.order-steps li:first-child {
  border-top: 1px solid #c7ddd2;
}

.order-steps > li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #aed0bf;
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
}

.order-steps strong {
  display: block;
  font-size: 17px;
}

.order-steps p {
  margin: 3px 0 0;
  color: var(--text);
  font-size: 13px;
}

.order-steps svg {
  width: 18px;
  color: var(--green-dark);
}

.scenario-section {
  background: #fff;
}

.scenario-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 520px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scenario-list {
  display: grid;
  border-right: 1px solid var(--line);
}

.scenario-list button {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  align-items: center;
  gap: 15px;
  padding: 20px 28px 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease, padding-left 180ms ease;
}

.scenario-list button:last-child {
  border-bottom: 0;
}

.scenario-list button.active {
  padding-left: 18px;
  background: var(--green-pale);
  color: var(--green-dark);
}

.scenario-list button > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d5e0db;
  border-radius: 6px;
  background: #fff;
}

.scenario-list button > span svg {
  width: 19px;
}

.scenario-list button > div {
  display: grid;
}

.scenario-list small {
  color: #8a9690;
  font-size: 10px;
}

.scenario-list strong {
  font-size: 14px;
}

.scenario-list button > svg {
  width: 16px;
}

.scenario-stage {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(360px, 1fr);
  align-items: center;
  gap: 50px;
  padding: 54px 0 54px 60px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.scenario-stage.changing {
  opacity: 0;
  transform: translateY(8px);
}

.scenario-copy h3 {
  margin: 18px 0 17px;
  font-size: 29px;
  line-height: 1.4;
}

.scenario-copy p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.85;
}

.chat-demo {
  padding: 22px;
  background: #f4f7f5;
  border: 1px solid #e1e8e4;
  border-radius: 8px 0 0 8px;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.chat-head span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.chat-head svg {
  width: 15px;
  color: var(--green);
}

.chat-head em {
  color: var(--green-dark);
  font-size: 9px;
  font-style: normal;
}

.message {
  width: fit-content;
  max-width: 84%;
  margin-bottom: 14px;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 11px;
}

.message.incoming {
  background: #fff;
  border: 1px solid #e1e7e4;
  border-top-left-radius: 2px;
}

.message.outgoing {
  display: grid;
  margin-left: auto;
  border-top-right-radius: 2px;
  background: var(--green-dark);
  color: #fff;
}

.message.outgoing small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}

.message.outgoing strong {
  margin: 4px 0;
  font-size: 13px;
}

.message.outgoing span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
}

.chat-action {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 27px;
}

.chat-action button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #d5dfda;
  border-radius: 4px;
  background: #fff;
  font-size: 9px;
  font-weight: 700;
}

.chat-action button:last-child {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
}

.chat-action svg {
  width: 12px;
}

.mobile-service {
  overflow: hidden;
  background: #f1f5f3;
}

.mobile-service-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1fr);
  align-items: center;
  gap: 110px;
}

.phone-shell {
  position: relative;
  width: 330px;
  height: 640px;
  margin-inline: auto;
  overflow: hidden;
  border: 9px solid #17231d;
  border-radius: 42px;
  background: #f5f7f6;
  box-shadow: 0 35px 70px rgba(13, 27, 42, 0.18);
}

.phone-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 88px;
  height: 24px;
  border-radius: 14px;
  background: #17231d;
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 700;
}

.phone-top svg {
  width: 14px;
}

.phone-title {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #e1e8e4;
  background: #fff;
}

.phone-title div {
  display: grid;
  text-align: center;
}

.phone-title strong {
  font-size: 13px;
}

.phone-title small {
  color: var(--green-dark);
  font-size: 8px;
}

.phone-title svg {
  width: 17px;
}

.phone-chat {
  min-height: 452px;
  padding: 28px 17px;
}

.phone-chat .message {
  font-size: 10px;
}

.phone-chat .message.outgoing {
  background: #dff5ea;
  color: var(--ink);
}

.phone-chat .message.outgoing small,
.phone-chat .message.outgoing span {
  color: var(--green-dark);
}

.phone-copy {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 6px 8px;
  color: var(--green-dark);
  font-size: 8px;
}

.phone-copy svg {
  width: 11px;
}

.phone-input {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin: 0 12px;
  padding: 0 8px 0 13px;
  border: 1px solid #dce4e0;
  border-radius: 8px;
  background: #fff;
  color: #a0aaa5;
  font-size: 9px;
}

.phone-input svg {
  width: 31px;
  height: 31px;
  padding: 8px;
  border-radius: 6px;
  background: var(--green-dark);
  color: #fff;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: #34423b;
  font-size: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-list svg {
  width: 17px;
  color: var(--green);
}

.management-section {
  background: #0c241a;
  color: #fff;
}

.dashboard {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #f6f8f7;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.dashboard-bar {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #e0e7e3;
  background: #fff;
  font-size: 12px;
}

.dashboard-bar div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-bar > span {
  color: #7d8983;
  font-size: 9px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
  gap: 16px;
  padding: 16px;
}

.metric-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e0e6e3;
  border-radius: 6px;
  background: #fff;
}

.metric-strip div {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: center;
  padding: 20px 24px;
}

.metric-strip div + div {
  border-left: 1px solid #e5e9e7;
}

.metric-strip small {
  color: #84908a;
  font-size: 9px;
}

.metric-strip strong {
  margin: 4px 0;
  font-size: 23px;
}

.metric-strip span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 700;
}

.metric-strip span.neutral {
  color: var(--blue);
}

.metric-strip svg {
  width: 12px;
}

.chart-panel,
.ranking-panel {
  padding: 22px;
  border: 1px solid #e0e6e3;
  border-radius: 6px;
  background: #fff;
}

.chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.chart-head > div:first-child {
  display: grid;
}

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

.chart-head small {
  color: #89958f;
  font-size: 9px;
}

.chart-head > div:last-child {
  display: flex;
  gap: 14px;
  color: #7f8a84;
  font-size: 8px;
}

.chart-head > div:last-child span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend.revenue {
  background: var(--green);
}

.legend.profit {
  background: var(--blue);
}

.chart-area {
  position: relative;
  height: 240px;
  margin-top: 20px;
}

.grid-lines {
  position: absolute;
  inset: 6px 0 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid-lines i {
  width: 100%;
  height: 1px;
  background: #edf0ee;
}

.chart-area svg {
  position: absolute;
  inset: 7px 0 24px;
  width: 100%;
  height: calc(100% - 31px);
  overflow: visible;
}

.line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.revenue-line {
  stroke: var(--green);
}

.profit-line {
  stroke: var(--blue);
  stroke-width: 3;
}

.dots circle {
  fill: #fff;
  stroke: var(--green);
  stroke-width: 3;
}

.chart-labels {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  color: #a0aaa5;
  font-size: 8px;
}

.ranking-panel .chart-head button {
  border: 0;
  background: transparent;
}

.ranking-panel .chart-head svg {
  width: 17px;
}

.ranking-panel ol {
  display: grid;
  gap: 19px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ranking-panel li {
  display: grid;
  grid-template-columns: 23px 1fr auto;
  align-items: center;
  gap: 10px;
}

.ranking-panel li > span {
  color: #9aa49f;
  font-size: 9px;
}

.ranking-panel li > div {
  display: grid;
  gap: 5px;
}

.ranking-panel li strong,
.ranking-panel li b {
  font-size: 9px;
}

.ranking-panel li i {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background: #edf0ee;
}

.ranking-panel li i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rank);
  background: var(--green);
}

.management-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.management-links > div {
  padding: 36px 30px 0 0;
}

.management-links > div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.management-links svg {
  width: 24px;
  margin-bottom: 16px;
  color: #5fe0a2;
}

.management-links strong {
  display: block;
  font-size: 16px;
}

.management-links p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.ecosystem-section {
  background: #fff;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.ecosystem-layout .section-heading {
  margin-bottom: 0;
}

.ecosystem-map {
  position: relative;
  min-height: 480px;
  border: 1px solid #dfe7e3;
  border-radius: 50%;
}

.ecosystem-map::before,
.ecosystem-map::after {
  content: "";
  position: absolute;
  border: 1px dashed #d6e2dc;
  border-radius: 50%;
}

.ecosystem-map::before {
  inset: 56px;
}

.ecosystem-map::after {
  inset: 116px;
}

.ecosystem-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  align-content: center;
  gap: 9px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translate(-50%, -50%);
}

.ecosystem-core strong {
  font-size: 14px;
}

.ecosystem-core small {
  color: #618172;
  font-size: 9px;
}

.orbit-item {
  position: absolute;
  z-index: 3;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #d9e4de;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.08);
  font-size: 11px;
  font-weight: 700;
}

.orbit-item svg {
  width: 16px;
  color: var(--green-dark);
}

.item-a {
  top: 0;
  left: 42%;
}

.item-b {
  top: 21%;
  right: -16px;
}

.item-c {
  right: 1%;
  bottom: 13%;
}

.item-d {
  bottom: 4%;
  left: 9%;
}

.item-e {
  top: 25%;
  left: -22px;
}

.final-cta {
  padding: 110px 0;
  background: var(--green-dark);
  color: #fff;
}

.final-cta-inner {
  display: flex;
  max-width: 860px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta .eyebrow {
  margin: 26px 0 14px;
}

.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.4vw, 54px);
  line-height: 1.3;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.site-footer {
  padding: 68px 0 24px;
  background: #081a12;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 80px;
  padding-bottom: 58px;
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 13px;
}

.footer-links a,
.footer-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  font-size: 12px;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.56);
  transition: color 160ms ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.reveal-delay {
  transition-delay: 160ms;
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 24px;
  }

  .hero-image {
    width: 66%;
    object-position: 65% 50%;
  }

  .hero-overlay {
    width: 61%;
  }

  .hero-copy {
    max-width: 58%;
  }

  .hero-status {
    width: 275px;
  }

  .capability-panel {
    grid-template-columns: minmax(280px, 0.72fr) minmax(470px, 1.28fr);
    gap: 38px;
  }

  .scenario-layout {
    grid-template-columns: 330px 1fr;
  }

  .scenario-stage {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mobile-service-layout {
    gap: 60px;
  }

  .ecosystem-layout {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .nav-shell {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 90px 0;
  }

  .desktop-nav,
  .desktop-login {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    place-items: center;
    border: 1px solid #d4ded9;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
  }

  .menu-toggle svg {
    width: 20px;
  }

  .mobile-nav {
    position: absolute;
    top: var(--header-height);
    right: 18px;
    left: 18px;
    display: grid;
    padding: 10px;
    border: 1px solid #dce4e0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 45px rgba(13, 27, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a,
  .mobile-nav button {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border: 0;
    border-bottom: 1px solid #edf1ef;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
  }

  .mobile-nav button {
    border-bottom: 0;
    color: var(--green-dark);
  }

  .mobile-nav button svg {
    width: 16px;
  }

  .hero {
    height: auto;
    min-height: 800px;
  }

  .hero-image {
    inset: auto 0 0;
    width: 100%;
    height: 47%;
    object-position: center 60%;
  }

  .hero-overlay {
    inset: 0 0 auto;
    width: 100%;
    height: 58%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }

  .hero-inner {
    height: 800px;
    align-items: flex-start;
    padding-top: 136px;
  }

  .hero-copy {
    width: 700px;
    max-width: 88%;
  }

  .hero-status {
    right: 18px;
    bottom: 45px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #cfd9d4;
  }

  .pain-item:nth-child(4) {
    border-top: 1px solid #cfd9d4;
  }

  .workflow-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 0;
  }

  .workflow-rail::before {
    display: none;
  }

  .capability-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 52px;
  }

  .capability-copy {
    max-width: 650px;
  }

  .order-layout,
  .mobile-service-layout,
  .ecosystem-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .scenario-layout {
    grid-template-columns: 1fr;
  }

  .scenario-list {
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scenario-list button:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .scenario-list button:nth-child(3) {
    border-bottom: 0;
  }

  .scenario-stage {
    grid-template-columns: 0.8fr 1.2fr;
    padding: 42px 0 42px 42px;
  }

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

  .chart-panel,
  .ranking-panel {
    grid-column: auto;
  }

  .ecosystem-map {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

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

  .brand-mark svg {
    width: 19px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    height: 760px;
    padding-top: 102px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .hero-image {
    height: 38%;
  }

  .hero-overlay {
    height: 65%;
  }

  .hero-status {
    right: 14px;
    bottom: 24px;
    left: 14px;
    width: auto;
  }

  .pain-section {
    padding-top: 12px;
  }

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

  .section-heading h2,
  .order-copy h2,
  .mobile-service-copy h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .order-copy > p,
  .mobile-service-copy > p {
    font-size: 15px;
  }

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

  .pain-item {
    min-height: 240px;
    padding: 34px 0;
  }

  .pain-item + .pain-item,
  .pain-item:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid #cfd9d4;
    border-left: 0;
  }

  .pain-item > svg {
    margin-bottom: 32px;
  }

  .workflow-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-rail li {
    display: grid;
    grid-template-columns: 62px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  .workflow-icon {
    grid-row: 1 / 4;
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .workflow-icon svg {
    width: 22px;
  }

  .workflow-rail p {
    margin-top: 3px;
  }

  .capability-tabs {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--line);
  }

  .capability-tabs button {
    min-height: 56px;
    border-bottom: 1px solid var(--line);
  }

  .capability-tabs button:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .capability-tabs button:nth-child(n + 3) {
    border-bottom: 0;
  }

  .capability-tabs button.active::after {
    right: 24%;
    left: 24%;
  }

  .capability-panel {
    gap: 42px;
  }

  .capability-copy h3 {
    font-size: 30px;
  }

  .window-body {
    min-height: 350px;
    padding: 18px;
  }

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

  .form-row label:nth-child(3) {
    display: none;
  }

  .rule-tr {
    grid-template-columns: 1.2fr 1fr 0.8fr;
  }

  .rule-tr span:nth-child(3),
  .rule-tr span:nth-child(4) {
    display: none;
  }

  .rule-tr span:last-child {
    display: flex;
  }

  .cost-summary {
    grid-template-columns: 1fr;
  }

  .cost-summary div {
    padding: 12px 16px;
  }

  .cost-summary div + div {
    border-top: 1px solid #e6e9e7;
    border-left: 0;
  }

  .query-row {
    grid-template-columns: 34px 1fr auto;
  }

  .query-row > button {
    display: none;
  }

  .query-input span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mini-table div {
    grid-template-columns: 1fr 1fr;
  }

  .mini-table em {
    display: none;
  }

  .order-layout {
    gap: 45px;
  }

  .order-copy blockquote {
    font-size: 16px;
  }

  .scenario-list {
    grid-template-columns: 1fr;
  }

  .scenario-list button,
  .scenario-list button:nth-child(odd),
  .scenario-list button:nth-child(3) {
    padding: 17px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scenario-list button:last-child {
    border-bottom: 0;
  }

  .scenario-list button.active {
    padding-left: 22px;
  }

  .scenario-stage {
    grid-template-columns: 1fr;
    padding: 38px 0;
  }

  .chat-demo {
    border-radius: 8px;
  }

  .mobile-service-layout {
    gap: 58px;
  }

  .phone-shell {
    width: 300px;
    height: 600px;
  }

  .phone-chat {
    min-height: 412px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-strip div:nth-child(3) {
    border-top: 1px solid #e5e9e7;
    border-left: 0;
  }

  .metric-strip div:nth-child(4) {
    border-top: 1px solid #e5e9e7;
  }

  .metric-strip strong {
    font-size: 18px;
  }

  .dashboard-grid {
    padding: 8px;
    gap: 8px;
  }

  .chart-panel,
  .ranking-panel {
    padding: 17px;
  }

  .management-links {
    grid-template-columns: 1fr;
  }

  .management-links > div,
  .management-links > div + div {
    padding: 27px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ecosystem-map {
    min-height: 340px;
  }

  .ecosystem-map::before {
    inset: 36px;
  }

  .ecosystem-map::after {
    inset: 86px;
  }

  .ecosystem-core {
    width: 148px;
    height: 148px;
  }

  .ecosystem-core strong {
    font-size: 11px;
  }

  .orbit-item {
    min-height: 38px;
    padding-inline: 9px;
    font-size: 9px;
  }

  .item-a {
    left: 34%;
  }

  .item-b {
    right: -5px;
  }

  .item-c {
    right: 0;
  }

  .item-d {
    left: 0;
  }

  .item-e {
    left: -4px;
  }

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

  .final-cta h2 {
    font-size: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-height: 700px) and (min-width: 901px) {
  .hero {
    min-height: 610px;
  }

  .hero-description {
    margin-bottom: 20px;
  }

  .hero-points {
    margin-top: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
