:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5c6a62;
  --soft: #f5f2eb;
  --paper: #fffdf8;
  --line: #d9ddd2;
  --green: #0f6f5f;
  --green-strong: #084e45;
  --teal: #168a9d;
  --amber: #d7842a;
  --charcoal: #101615;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 32, 28, 0.16);
  --page-margin: clamp(16px, 5vw, 72px);
  --section-y: clamp(56px, 9vw, 118px);
  --content-max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-strong);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(159, 240, 217, 0.86);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--page-margin);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 22, 21, 0.92);
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: var(--green);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.88rem;
  font-weight: 650;
}

nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 86svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 18, 17, 0.9) 0%, rgba(13, 18, 17, 0.68) 37%, rgba(13, 18, 17, 0.15) 72%),
    linear-gradient(180deg, rgba(13, 18, 17, 0.58) 0%, rgba(13, 18, 17, 0.12) 38%, rgba(13, 18, 17, 0.2) 100%);
}

.hero-content {
  align-self: end;
  width: min(760px, calc(100% - var(--page-margin) - var(--page-margin)));
  margin: 0 var(--page-margin) clamp(42px, 8vh, 92px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 10.5vw, 8.8rem);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.25rem, 7.5vw, 6.7rem);
}

.hero-lede {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.12rem, 1.8vw, 1.32rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

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

.home-hero-actions .hero-main-action {
  flex: 0 1 auto;
  max-width: 100%;
  padding-inline: 22px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-proof.dark-proof li {
  border-color: rgba(15, 111, 95, 0.24);
  background: rgba(15, 111, 95, 0.1);
  color: var(--green-strong);
}

.upgrade-cloud,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.upgrade-cloud {
  max-width: 780px;
  margin-top: 18px;
}

.upgrade-cloud span,
.chip-row span {
  border: 1px solid rgba(15, 111, 95, 0.24);
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.14);
  color: #d7fff3;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 10px;
}

.chip-row {
  margin-top: auto;
  padding-top: 22px;
}

.chip-row span {
  background: #e5f7ef;
  color: var(--green-strong);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-strong);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button-secondary.dark {
  border-color: rgba(23, 32, 28, 0.22);
  background: rgba(23, 32, 28, 0.06);
  color: var(--ink);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.route-section {
  border-bottom: 1px solid rgba(15, 111, 95, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(238, 245, 240, 0.88)),
    var(--paper);
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(42px, 6vw, 74px);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.route-copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.route-copy p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.route-card {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: start;
  border: 1px solid rgba(15, 111, 95, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 248, 0.9)),
    var(--white);
  padding: 20px;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(23, 32, 28, 0.07);
}

.route-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.route-card::after {
  content: "View";
  align-self: end;
  width: fit-content;
  margin-top: 22px;
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.1);
  color: var(--green-strong);
  padding: 6px 9px;
  font-size: 0.72rem;
  font-weight: 850;
}

.route-card span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
}

.route-card strong {
  margin-top: 20px;
  color: var(--green-strong);
  font-size: 1.18rem;
  line-height: 1.08;
}

.route-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.route-card:hover,
.route-card:focus-visible {
  border-color: rgba(15, 111, 95, 0.42);
  box-shadow: 0 20px 56px rgba(15, 111, 95, 0.12);
}

.decision-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.decision-strip span {
  border: 1px solid rgba(15, 111, 95, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-strong);
  padding: 13px 14px;
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 12px 30px rgba(23, 32, 28, 0.05);
}

.route-upgrades {
  grid-column: 1 / -1;
  margin-top: 0;
}

.route-upgrades span {
  background: rgba(15, 111, 95, 0.1);
  color: var(--green-strong);
}

.band {
  background: var(--soft);
}

.section,
.band,
.final-cta {
  padding: var(--section-y) var(--page-margin);
}

.section-inner {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

main > section {
  scroll-margin-top: 96px;
}

.intro-grid,
.method-layout,
.proof-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.intro-grid p:last-child,
.section-heading p,
.proof-points p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-heading p:last-child {
  max-width: 650px;
  margin-top: 18px;
}

.section-heading.compact {
  max-width: 820px;
}

.operating-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(238, 245, 240, 0.82)),
    var(--paper);
}

.operating-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 1.1fr) minmax(0, 0.85fr);
  gap: clamp(16px, 2.2vw, 24px);
  align-items: stretch;
  overflow: visible;
  border: 1px solid rgba(15, 111, 95, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 250, 246, 0.88)),
    var(--white);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 18px 54px rgba(23, 32, 28, 0.08);
}

.operating-map::before,
.operating-map::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13%;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 111, 95, 0), rgba(15, 111, 95, 0.42));
  transform: translateY(-50%);
}

.operating-map::before {
  left: 29%;
}

.operating-map::after {
  right: 29%;
  background: linear-gradient(90deg, rgba(15, 111, 95, 0.42), rgba(15, 111, 95, 0));
}

.operating-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 0;
}

.operating-label {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: normal;
}

.operating-node {
  display: flex;
  min-height: 52px;
  align-items: center;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 12px 13px;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.25;
  text-decoration: none;
}

a.operating-node:hover,
a.operating-node:focus-visible,
.operating-core:hover,
.operating-core:focus-visible,
.operating-upgrades a:hover,
.operating-upgrades a:focus-visible {
  border-color: rgba(15, 111, 95, 0.42);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 111, 95, 0.13);
}

.operating-core {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  min-height: 100%;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 78, 69, 0.98), rgba(16, 22, 21, 0.96)),
    var(--charcoal);
  color: var(--white);
  padding: clamp(20px, 4vw, 30px);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(23, 32, 28, 0.16);
}

.operating-core span {
  color: #9ff0d9;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.operating-core strong {
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.operating-core small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.35;
}

.operating-upgrades {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.operating-upgrades span,
.operating-upgrades a {
  border: 1px solid rgba(15, 111, 95, 0.16);
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.08);
  color: var(--green-strong);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 780;
  text-decoration: none;
}

.leader-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 242, 235, 0.92)),
    var(--paper);
}

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

.leader-card {
  display: grid;
  min-height: 395px;
  align-content: start;
  border: 1px solid rgba(23, 32, 28, 0.12);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(22px, 2.6vw, 28px);
  box-shadow: 0 14px 42px rgba(23, 32, 28, 0.07);
}

.leader-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.leader-card-head span {
  display: inline-grid;
  min-width: 58px;
  min-height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.leader-card-head strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.leader-card h3 {
  max-width: 320px;
  margin: 0 0 14px;
  font-size: clamp(1.34rem, 1.85vw, 1.72rem);
  line-height: 1.08;
}

.leader-card p,
.leader-card li {
  color: var(--muted);
}

.leader-card p {
  margin: 0;
}

.leader-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 0;
  list-style: none;
}

.leader-card li {
  border-radius: 8px;
  background: rgba(15, 111, 95, 0.06);
  padding: 8px 10px;
}

.leader-card .text-link {
  margin-top: auto;
  padding-top: 26px;
}

.ceo-card {
  border-top: 4px solid var(--green);
}

.ceo-card .leader-card-head span {
  background: var(--green);
}

.cfo-card {
  border-top: 4px solid var(--amber);
}

.cfo-card .leader-card-head span {
  background: var(--amber);
}

.cto-card {
  border-top: 4px solid var(--teal);
}

.cto-card .leader-card-head span {
  background: var(--teal);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
  gap: 14px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 35px rgba(23, 32, 28, 0.06);
}

.offer-card.featured-offer {
  border-color: rgba(15, 111, 95, 0.3);
  background:
    linear-gradient(180deg, rgba(229, 247, 239, 0.92), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.card-index {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

h3 {
  margin: 20px 0 12px;
  font-size: 1.2rem;
  line-height: 1.16;
}

.offer-card p,
.audience-grid p,
.timeline p,
.outcome-grid p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  color: var(--green-strong);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.light-link {
  color: #9ff0d9;
}

.outcomes-section {
  background: var(--soft);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}

.outcome-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.outcome-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-strong);
  font-size: 1rem;
}

.pattern-fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}

.pattern-fact-grid div {
  border: 1px solid rgba(15, 111, 95, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
}

.pattern-fact-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-strong);
}

.pattern-fact-grid p {
  margin: 0;
  color: var(--muted);
}

.method-section {
  background: #eef5f0;
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.78);
  padding: 22px 24px;
}

.timeline span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-strong);
  font-size: 1.2rem;
  font-weight: 820;
}

.proof-section {
  background: var(--charcoal);
  color: var(--white);
}

.proof-section .section-kicker,
.final-cta .section-kicker {
  color: #f0ad5f;
}

.proof-points {
  display: grid;
  gap: 18px;
}

.proof-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 14px;
}

.audience-grid div {
  border-top: 3px solid var(--amber);
  background: var(--soft);
  padding: 24px;
}

.audience-grid h3 {
  margin-top: 0;
}

.faq-section {
  background: var(--paper);
}

.engagement-section {
  background: var(--paper);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 14px;
}

.engagement-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.engagement-grid span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.engagement-grid h3 {
  margin-top: 18px;
}

.engagement-grid p {
  margin: 0;
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 16px;
}

.solution-card {
  display: flex;
  min-height: 570px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 14px 42px rgba(23, 32, 28, 0.06);
}

.solution-card.featured {
  border-color: rgba(15, 111, 95, 0.32);
  background:
    linear-gradient(180deg, rgba(229, 247, 239, 0.82), rgba(255, 255, 255, 0.94)),
    var(--white);
}

.solution-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.solution-head strong {
  border: 1px solid rgba(15, 111, 95, 0.2);
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.08);
  color: var(--green-strong);
  padding: 5px 9px;
}

.solution-card h3 {
  max-width: 380px;
}

.solution-card p,
.solution-card li {
  color: var(--muted);
}

.solution-card p {
  margin: 0;
}

.solution-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.solution-card .text-link {
  margin-top: 20px;
}

.question-strip {
  margin-top: 18px;
  border-left: 4px solid var(--amber);
  background: rgba(215, 132, 42, 0.08);
  padding: 14px 16px;
}

.question-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.question-strip p {
  font-size: 0.94rem;
}

.inline-actions {
  margin-top: 24px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
  gap: 14px;
}

.question-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.question-grid h3 {
  margin-top: 0;
}

.question-grid p {
  margin: 0;
  color: var(--muted);
}

.demo-section {
  background: var(--charcoal);
  color: var(--white);
}

.demo-section .section-kicker {
  color: #f0ad5f;
}

.demo-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.demo-panel,
.demo-side,
.demo-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.demo-panel {
  padding: 22px;
}

.demo-side {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.demo-card {
  padding: 16px;
}

.demo-label {
  margin: 0 0 8px;
  color: #9ff0d9;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-panel h2,
.demo-panel h3,
.demo-card h3 {
  color: var(--white);
}

.demo-panel p,
.demo-card p,
.demo-side p {
  color: rgba(255, 255, 255, 0.74);
}

.demo-search {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}

.demo-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.demo-controls button {
  border: 1px solid rgba(159, 240, 217, 0.28);
  border-radius: 999px;
  background: rgba(159, 240, 217, 0.1);
  color: #d7fff3;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 8px 11px;
}

.demo-controls button[aria-pressed="true"] {
  background: #9ff0d9;
  color: var(--green-strong);
}

.demo-result,
.demo-row,
.demo-step,
.demo-metric {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 14px;
}

.demo-result + .demo-result,
.demo-row + .demo-row,
.demo-step + .demo-step,
.demo-metric + .demo-metric {
  margin-top: 10px;
}

.demo-result strong,
.demo-row strong,
.demo-step strong,
.demo-metric strong {
  display: block;
  color: var(--white);
}

.demo-result small,
.demo-row small,
.demo-step small,
.demo-metric small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 10px;
  margin: 18px 0;
}

.demo-metric {
  margin: 0;
}

.demo-metric span {
  display: block;
  color: #9ff0d9;
  font-size: 1.35rem;
  font-weight: 850;
}

.demo-workflow {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.demo-step {
  border-left: 4px solid #9ff0d9;
}

.demo-status {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(159, 240, 217, 0.14);
  color: #9ff0d9;
  font-size: 0.76rem;
  font-weight: 850;
  margin-top: 10px;
  padding: 5px 9px;
}

.demo-shell-wide {
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
}

.demo-product {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #f8fbf7;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.demo-window-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #dce4da;
  background: #eaf2ec;
  padding: 0 16px;
}

.demo-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9fb2a7;
}

.demo-window-bar strong {
  margin-left: 8px;
  color: var(--green-strong);
  font-size: 0.84rem;
}

.demo-window-bar em {
  margin-left: auto;
  border: 1px solid rgba(15, 111, 95, 0.2);
  border-radius: 999px;
  color: var(--green-strong);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
  padding: 4px 8px;
}

.demo-product-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.65fr) minmax(0, 1.4fr) minmax(170px, 0.75fr);
  gap: 14px;
  padding: 16px;
}

.demo-source-rail,
.demo-workspace,
.demo-inspector {
  border: 1px solid #dce4da;
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
}

.demo-source-rail {
  display: grid;
  align-content: start;
  gap: 10px;
}

.demo-source-card,
.demo-approval-card,
.demo-answer-card,
.demo-signal-list li,
.demo-kpi-strip div {
  border: 1px solid #dce4da;
  border-radius: 8px;
  background: #f7faf6;
  padding: 12px;
}

.demo-source-card strong,
.demo-approval-card strong,
.demo-signal-list strong,
.demo-kpi-strip strong {
  display: block;
  color: var(--ink);
  font-size: 0.84rem;
}

.demo-source-card span,
.demo-approval-card p,
.demo-signal-list span {
  color: var(--muted);
  font-size: 0.78rem;
}

.demo-workspace {
  min-width: 0;
}

.demo-product .demo-label {
  color: var(--green-strong);
}

.demo-product .demo-controls button {
  border-color: rgba(15, 111, 95, 0.18);
  background: rgba(15, 111, 95, 0.06);
  color: var(--green-strong);
}

.demo-product .demo-controls button[aria-pressed="true"] {
  background: #9ff0d9;
  color: var(--green-strong);
}

.demo-product .demo-search input {
  border-color: #cdd9cf;
  background: var(--white);
}

.demo-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.demo-kpi-strip span {
  display: block;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 850;
}

.demo-answer-card {
  display: grid;
  gap: 14px;
  background: #edf7f1;
}

.demo-answer-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.demo-answer-card small {
  color: var(--muted);
}

.demo-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.demo-flow span {
  min-width: 0;
  border: 1px solid rgba(15, 111, 95, 0.16);
  border-radius: 999px;
  background: rgba(15, 111, 95, 0.08);
  color: var(--green-strong);
  font-size: 0.76rem;
  font-weight: 850;
  overflow-wrap: anywhere;
  padding: 7px 9px;
  text-align: center;
}

.demo-inspector {
  display: grid;
  align-content: start;
  gap: 12px;
}

.demo-approval-card {
  border-color: rgba(215, 132, 42, 0.32);
  background: #fff8ed;
}

.demo-signal-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 18px;
}

.demo-gallery-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 14px 42px rgba(23, 32, 28, 0.07);
}

.demo-gallery-card.featured {
  border-color: rgba(15, 111, 95, 0.28);
  background:
    linear-gradient(180deg, rgba(229, 247, 239, 0.72), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.demo-gallery-card h3 {
  margin-top: 12px;
}

.demo-gallery-card p {
  color: var(--muted);
}

.demo-card-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.demo-card-meta div {
  border-left: 4px solid var(--green);
  background: var(--soft);
  padding: 12px 14px;
}

.demo-card-meta strong,
.demo-card-meta span {
  display: block;
}

.demo-card-meta strong {
  color: var(--green-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.demo-card-meta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.demo-preview-screen {
  overflow: hidden;
  border: 1px solid #dce4da;
  border-radius: 8px;
  background: #f8fbf7;
}

.preview-window-head {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #dce4da;
  background: #eaf2ec;
  padding: 0 12px;
}

.preview-window-head span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9fb2a7;
}

.preview-window-head strong {
  color: var(--green-strong);
  font-size: 0.82rem;
}

.preview-window-head em {
  margin-left: auto;
  color: var(--green-strong);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.preview-layout,
.preview-metrics,
.preview-flow,
.preview-roadmap,
.preview-code,
.preview-chart,
.preview-lines {
  padding: 14px;
}

.preview-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr;
  gap: 12px;
}

.preview-stack,
.preview-main,
.preview-lines,
.preview-code {
  display: grid;
  gap: 8px;
}

.preview-stack b,
.preview-main strong,
.preview-metrics b,
.preview-flow b {
  border-radius: 6px;
  background: rgba(15, 111, 95, 0.08);
  color: var(--green-strong);
  font-size: 0.78rem;
  padding: 8px;
}

.preview-main span,
.preview-lines span,
.preview-code span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #dce8df;
}

.preview-main span:first-child,
.preview-lines span:first-child,
.preview-code span:first-child {
  width: 78%;
}

.preview-main span:nth-child(2),
.preview-lines span:nth-child(2),
.preview-code span:nth-child(2) {
  width: 56%;
}

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

.preview-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.preview-chart {
  display: flex;
  height: 126px;
  align-items: end;
  gap: 10px;
}

.preview-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #9ff0d9, var(--green));
}

.preview-chart span:nth-child(1) { height: 38%; }
.preview-chart span:nth-child(2) { height: 62%; }
.preview-chart span:nth-child(3) { height: 48%; }
.preview-chart span:nth-child(4) { height: 82%; }

.preview-roadmap {
  display: grid;
  gap: 10px;
}

.preview-roadmap i {
  display: block;
  height: 16px;
  border-left: 5px solid var(--green);
  background: #edf7f1;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 14px;
}

.architecture-grid div {
  border-top: 3px solid var(--green);
  background: var(--soft);
  padding: 24px;
}

.architecture-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-strong);
}

.architecture-grid p {
  margin: 0;
  color: var(--muted);
}

.architecture-diagram-grid {
  display: grid;
  gap: 18px;
}

.architecture-diagram-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(22px, 4vw, 32px);
  box-shadow: 0 14px 42px rgba(23, 32, 28, 0.06);
}

.diagram-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.diagram-head span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.diagram-head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

.architecture-diagram-card > p {
  max-width: 800px;
  margin: 14px 0 22px;
  color: var(--muted);
}

.diagram-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.diagram-stage {
  position: relative;
  display: grid;
  min-height: 92px;
  align-items: center;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 8px;
  background: #f8fbf7;
  color: var(--ink);
  padding: 14px;
  font-size: 0.88rem;
  font-weight: 780;
}

.diagram-stage:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(15, 111, 95, 0.55);
  border-right: 2px solid rgba(15, 111, 95, 0.55);
  transform: translateY(-50%) rotate(45deg);
}

.diagram-stage.core {
  border-color: rgba(15, 111, 95, 0.34);
  background: rgba(15, 111, 95, 0.1);
  color: var(--green-strong);
}

.diagram-stage.gate {
  border-color: rgba(215, 132, 42, 0.36);
  background: rgba(215, 132, 42, 0.12);
  color: #69410f;
}

.diagram-points {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.diagram-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.faq-grid h3 {
  margin-top: 0;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.credibility-section {
  background: var(--paper);
}

.credibility-strip {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px) 0;
}

.credibility-strip h2 {
  max-width: 960px;
  font-size: clamp(1.85rem, 3vw, 2.9rem);
}

.credibility-strip p:last-child {
  max-width: 840px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.final-cta {
  background: var(--green-strong);
  color: var(--white);
}

.service-main {
  background: var(--paper);
}

.subpage-hero {
  padding: clamp(140px, 18vw, 190px) var(--page-margin) clamp(70px, 10vw, 120px);
  background:
    linear-gradient(135deg, rgba(238, 245, 240, 0.96), rgba(255, 253, 248, 0.96)),
    radial-gradient(circle at 80% 20%, rgba(15, 111, 95, 0.18), transparent 38%);
  color: var(--ink);
}

.subpage-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.subpage-hero .hero-lede {
  color: var(--muted);
}

.visual-hero {
  padding-bottom: clamp(48px, 8vw, 84px);
}

.demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.hero-product-preview {
  align-self: stretch;
  display: grid;
  align-items: center;
}

.hero-product-preview .demo-preview-screen {
  box-shadow: 0 24px 70px rgba(23, 32, 28, 0.16);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
}

.text-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.text-list li {
  border-left: 4px solid var(--green);
  background: var(--soft);
  padding: 18px 20px;
  color: var(--muted);
}

.contact-panel {
  max-width: 760px;
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-promise {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-choice-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-choice-card,
.contact-direct-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

.contact-choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 22px;
  text-decoration: none;
}

.contact-choice-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: rgba(159, 240, 217, 0.36);
}

.contact-choice-card.primary-choice::before {
  background: linear-gradient(90deg, #9ff0d9, var(--teal));
}

.contact-choice-card span,
.contact-direct-card span {
  color: #9ff0d9;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-choice-card strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.contact-choice-card p {
  max-width: 560px;
}

.contact-choice-card:hover,
.contact-choice-card:focus-visible,
.contact-direct-card:focus-within {
  border-color: rgba(159, 240, 217, 0.45);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.contact-direct-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 18px 20px;
}

.contact-direct-card div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-direct-card a {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-direct-card a:hover,
.contact-direct-card a:focus-visible {
  color: #9ff0d9;
}

.contact-direct-card .copy-email {
  background: var(--white);
  color: var(--green-strong);
}

.contact-direct-card .copy-email:hover,
.contact-direct-card .copy-email:focus-visible {
  background: #9ff0d9;
  color: var(--green-strong);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--charcoal);
  color: var(--white);
  padding: 38px var(--page-margin);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.footer-company p {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  font-size: 0.88rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-brand:hover,
.footer-brand:focus-visible {
  color: #9ff0d9;
}

.legal {
  margin-top: 28px !important;
  font-size: 0.86rem !important;
}

@media (max-width: 1100px) {
  .operating-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px) {
  .intro-grid,
  .method-layout,
  .proof-grid,
  .final-grid,
  .detail-grid,
  .demo-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-product-preview {
    order: -1;
  }

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

  .leader-card {
    min-height: auto;
  }

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

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

  .route-card {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 142px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand span:last-child {
    display: inline;
  }

  nav {
    width: 100%;
    max-width: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 15px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 100svh;
    padding: 150px 0 38px;
  }

  .hero-content {
    width: calc(100% - var(--page-margin) - var(--page-margin));
    margin: 0 var(--page-margin);
  }

  main > section {
    scroll-margin-top: 142px;
  }

  h1 {
    font-size: clamp(2.7rem, 13.5vw, 4.9rem);
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .operating-intro {
    gap: 26px;
  }

  .upgrade-cloud span,
  .chip-row span {
    font-size: 0.75rem;
  }

  .decision-strip {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: auto;
  }

  .operating-map {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .operating-map::before,
  .operating-map::after {
    display: none;
  }

  .operating-core {
    min-height: auto;
    order: 2;
    padding: 20px;
    text-align: left;
  }

  .operating-outputs {
    order: 3;
  }

  .diagram-flow {
    grid-template-columns: 1fr;
  }

  .diagram-stage {
    min-height: auto;
  }

  .diagram-stage:not(:last-child)::after {
    display: none;
  }

  .solution-card {
    min-height: auto;
  }

  .demo-gallery-card {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

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

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

  .demo-shell {
    grid-template-columns: 1fr;
  }

  .demo-product-grid {
    grid-template-columns: 1fr;
  }

  .demo-kpi-strip,
  .demo-flow {
    grid-template-columns: 1fr;
  }

  .preview-layout,
  .preview-metrics,
  .preview-flow {
    grid-template-columns: 1fr;
  }

  .hero-product-preview .preview-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .hero-product-preview .preview-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-product-preview .preview-layout,
  .hero-product-preview .preview-flow {
    padding: 10px;
  }

  .hero-product-preview .preview-stack b,
  .hero-product-preview .preview-main strong,
  .hero-product-preview .preview-flow b {
    font-size: 0.7rem;
    padding: 6px;
  }

  .contact-direct-card {
    display: grid;
  }
}
