:root {
  --ink: #15202b;
  --ink-soft: #2a3540;
  --paper: #eef2f5;
  --white: #f7fafc;
  --muted: #5c6b78;
  --line: #c8d2db;
  --violet: #1f3a5f;
  --violet-soft: #d6e2ef;
  --lime: #3d7a6a;
  --coral: #c4a35a;
  --aqua: #4a9aa0;
  --red: #b94646;
  --display: "Manrope", system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
  --shell: 1220px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

svg {
  display: block;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 7.2vw, 7rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
  font-weight: 500;
}

h3 {
  font-size: 1.45rem;
  font-weight: 600;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid rgba(118, 87, 255, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245, 242, 234, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 254, 249, 0.96);
  border-color: var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand svg {
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--lime);
}

.brand svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: square;
  stroke-linejoin: bevel;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2rem);
  font-size: 0.82rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-action) {
  position: relative;
}

.main-nav > a:not(.nav-action)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
}

.nav-action {
  padding: 0.78rem 1rem;
  color: var(--white);
  background: var(--ink);
}

.nav-action:hover {
  background: var(--violet);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 160ms ease;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background:
    linear-gradient(rgba(25, 24, 29, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 24, 29, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -22rem;
  width: 58rem;
  height: 58rem;
  content: "";
  background: var(--violet-soft);
  border-radius: 50%;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(118, 87, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 5rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
}

.orbit-two {
  top: 13rem;
  right: -2rem;
  width: 20rem;
  height: 20rem;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(580px, 1.22fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.eyebrow {
  display: flex;
  max-width: 460px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow b {
  color: var(--violet);
  font-weight: 500;
}

.hero-copy h1 {
  max-width: 8.4ch;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.83rem;
  font-weight: 700;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.button-primary:hover {
  background: #5f3ff0;
}

.button-secondary,
.button-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: var(--ink);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3.5rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-points div {
  padding: 1.2rem 0.8rem 0 0;
}

.hero-points dt {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.hero-points dd {
  color: var(--muted);
  font-size: 0.7rem;
}

.product-stage {
  position: relative;
  color: #dad8df;
  background: var(--ink);
  border: 10px solid var(--ink);
  box-shadow: 22px 25px 0 var(--lime);
}

.stage-toolbar {
  display: grid;
  height: 52px;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  background: #232127;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.58rem;
}

.stage-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.stage-brand span {
  width: 13px;
  height: 13px;
  background: var(--lime);
}

.stage-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.6rem;
  color: #8f8b95;
  background: #1a191d;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.stage-search kbd {
  padding: 0.1rem 0.3rem;
  color: #a9a5ae;
  background: #2c2a31;
  font-family: var(--mono);
  font-size: 0.48rem;
}

.stage-user {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 700;
}

.stage-body {
  display: grid;
  min-height: 500px;
  grid-template-columns: 118px 1fr;
}

.stage-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0.65rem;
  color: #8d8992;
  background: #201f24;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.56rem;
}

.stage-sidebar span {
  padding: 0.45rem 0.55rem;
}

.stage-sidebar .side-active {
  color: var(--white);
  background: rgba(118, 87, 255, 0.28);
}

.stage-sidebar small {
  margin: 1rem 0.55rem 0.35rem;
  color: #635f68;
  font-family: var(--mono);
  font-size: 0.43rem;
  letter-spacing: 0.08em;
}

.stage-content {
  padding: 1.4rem;
  background: #1b1a1f;
}

.stage-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stage-heading div {
  display: grid;
}

.stage-heading small {
  color: #74707b;
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.stage-heading strong {
  margin-top: 0.25rem;
  color: #f5f2f8;
  font-size: 1rem;
}

.stage-heading button {
  padding: 0.45rem 0.7rem;
  color: var(--white);
  background: var(--violet);
  border: 0;
  font-size: 0.52rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1.4rem 0 0.8rem;
}

.metric-grid article {
  display: grid;
  padding: 0.85rem;
  background: #242329;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.metric-grid small {
  color: #77737e;
  font-family: var(--mono);
  font-size: 0.43rem;
  letter-spacing: 0.08em;
}

.metric-grid strong {
  margin: 0.4rem 0 0.2rem;
  color: #f4f1f7;
  font-size: 1rem;
}

.metric-grid span {
  color: #8a8690;
  font-size: 0.48rem;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 0.65rem;
}

.work-panel {
  min-width: 0;
  padding: 0.9rem;
  background: #242329;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-title strong {
  color: #eeebf2;
  font-size: 0.62rem;
}

.panel-title span {
  color: #827d89;
  font-size: 0.46rem;
}

.task-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.task-row:last-child {
  border-bottom: 0;
}

.task-check {
  width: 13px;
  height: 13px;
  border: 1px solid #696570;
}

.task-check.done {
  position: relative;
  background: var(--violet);
  border-color: var(--violet);
}

.task-check.done::after {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 3px;
  height: 6px;
  content: "";
  border: solid var(--white);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.task-row div {
  display: grid;
  min-width: 0;
}

.task-row strong {
  overflow: hidden;
  color: #dfdce4;
  font-size: 0.54rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-row small {
  color: #77737e;
  font-size: 0.45rem;
}

.avatar {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  font-size: 0.4rem;
}

.avatar.violet {
  background: #9f8cff;
}

.avatar.lime {
  background: var(--lime);
}

.avatar.coral {
  background: var(--coral);
}

.chart-panel {
  display: flex;
  flex-direction: column;
}

.chart {
  display: flex;
  height: 140px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  padding-top: 1.5rem;
  border-bottom: 1px solid #4a4750;
}

.chart span {
  width: 100%;
  height: var(--h);
  background: var(--violet);
}

.chart span:nth-child(3n) {
  background: var(--lime);
}

.chart-panel > small {
  margin-top: 0.6rem;
  color: #68646f;
  font-family: var(--mono);
  font-size: 0.4rem;
  text-align: center;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.55rem;
}

.floating-note span {
  padding: 0.2rem 0.35rem;
  color: #4e379f;
  background: var(--violet-soft);
  font-family: var(--mono);
  font-size: 0.42rem;
  text-transform: uppercase;
}

.floating-note b {
  color: var(--violet);
  font-size: 1rem;
}

.note-one {
  right: -28px;
  bottom: 92px;
}

.note-two {
  bottom: -25px;
  left: 40px;
}

.audience-strip {
  color: #d7d2dc;
  background: var(--ink);
}

.audience-inner {
  display: grid;
  min-height: 90px;
  grid-template-columns: 0.65fr repeat(5, 1fr);
  align-items: center;
}

.audience-inner span,
.audience-inner strong {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.audience-inner span {
  color: #76717d;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--mono);
  font-size: 0.54rem;
  text-transform: uppercase;
}

.audience-inner strong {
  font-size: 0.67rem;
  font-weight: 500;
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-label {
  margin-bottom: 1.2rem;
  color: var(--violet);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.section-label.light {
  color: #b5a7ff;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  max-width: 15ch;
}

.section-heading p:not(.section-label) {
  max-width: 690px;
  color: var(--muted);
}

.platform-section {
  background: var(--white);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 1.6rem;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease;
}

.capability-card:hover {
  z-index: 2;
  transform: translateY(-5px);
}

.card-violet {
  background: var(--violet-soft);
}

.card-lime {
  background: #eef9d4;
}

.card-dark {
  color: #ddd9e1;
  background: var(--ink);
}

.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.capability-top b {
  font-weight: 400;
}

.capability-card > svg {
  width: 54px;
  height: 54px;
  padding: 13px;
  margin: 3.7rem 0 2rem;
  color: var(--violet);
  background: var(--paper);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-violet > svg {
  background: var(--white);
}

.card-lime > svg {
  color: #4b6f1c;
  background: var(--white);
}

.card-dark > svg {
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
}

.capability-card h3 {
  max-width: 12ch;
  margin-bottom: 0.9rem;
}

.capability-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.capability-card ul {
  display: grid;
  gap: 0.4rem;
  padding: 1.25rem 0 0;
  margin: auto 0 0;
  border-top: 1px solid rgba(25, 24, 29, 0.12);
  color: var(--muted);
  font-size: 0.73rem;
  list-style: none;
}

.capability-card li::before {
  margin-right: 0.5rem;
  color: var(--violet);
  content: "↳";
}

.card-dark h3 {
  color: var(--white);
}

.card-dark p,
.card-dark ul,
.card-dark .capability-top {
  color: #9b96a2;
}

.card-dark ul {
  border-color: rgba(255, 255, 255, 0.12);
}

.card-dark li::before {
  color: var(--lime);
}

.workflow-section {
  color: #d8d4dc;
  background: var(--ink);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(4rem, 9vw, 8rem);
}

.workflow-copy h2 {
  max-width: 11ch;
  color: var(--white);
}

.workflow-copy > p:not(.section-label) {
  max-width: 530px;
  color: #96919d;
}

.workflow-tabs {
  display: grid;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.workflow-tabs button {
  padding: 1rem 0;
  color: #8d8894;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease, padding 160ms ease;
}

.workflow-tabs button.is-active {
  padding-left: 1rem;
  color: var(--lime);
  border-left: 2px solid var(--lime);
}

.workflow-demo {
  align-self: center;
  color: var(--ink);
  background: var(--paper);
  border: 8px solid #2b2930;
}

.workflow-demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.4rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.workflow-demo-top div {
  display: grid;
}

.workflow-demo-top small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
}

.workflow-demo-top strong {
  margin-top: 0.2rem;
}

.workflow-demo-top > span {
  padding: 0.28rem 0.45rem;
  color: #466617;
  background: #e1f5b6;
  font-family: var(--mono);
  font-size: 0.5rem;
}

.workflow-demo ol {
  padding: 1.5rem;
  margin: 0;
  list-style: none;
}

.workflow-demo li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.workflow-demo li:not(:last-child)::after {
  position: absolute;
  bottom: -0.8rem;
  left: 31px;
  width: 1px;
  height: 0.8rem;
  content: "";
  background: var(--violet);
}

.workflow-demo li > b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--violet);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 400;
}

.workflow-demo li div {
  display: grid;
}

.workflow-demo li small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.48rem;
}

.workflow-demo li strong {
  margin-top: 0.15rem;
  font-size: 0.77rem;
}

.step-type {
  color: var(--muted);
  font-size: 0.58rem;
}

.workflow-demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.4rem;
  color: var(--muted);
  background: #ece8df;
  font-family: var(--mono);
  font-size: 0.52rem;
}

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

.solutions-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 10vw, 9rem);
}

.solutions-title h2 {
  max-width: 12ch;
}

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

.solution-list article {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.solution-list article > span {
  color: var(--violet);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.solution-list h3 {
  margin-bottom: 0.4rem;
}

.solution-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.solution-list article > b {
  color: var(--violet);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.solution-list article:hover > b {
  transform: translateX(5px);
}

.pricing-section {
  background: var(--white);
}

.pricing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.pricing-heading h2 {
  max-width: 13ch;
}

.billing-toggle {
  display: flex;
  padding: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.billing-toggle button {
  padding: 0.7rem 0.85rem;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.7rem;
}

.billing-toggle button.is-active {
  color: var(--white);
  background: var(--ink);
}

.billing-toggle span {
  margin-left: 0.2rem;
  color: var(--lime);
  font-size: 0.52rem;
}

.pricing-disclaimer {
  max-width: 720px;
  padding: 0.8rem 1rem;
  margin: 0 0 2rem;
  color: #625b49;
  background: #f8f0d4;
  border-left: 3px solid #bf9540;
  font-size: 0.72rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-grid article {
  position: relative;
  display: flex;
  min-height: 580px;
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-grid .featured-plan {
  background: var(--violet-soft);
}

.plan-name {
  color: var(--violet);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.plan-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.3rem 0.45rem;
  color: var(--white);
  background: var(--violet);
  font-family: var(--mono);
  font-size: 0.45rem;
}

.pricing-grid h3 {
  max-width: 13ch;
  margin: 3rem 0 1.5rem;
  font-size: 1.6rem;
}

.price {
  display: grid;
  margin-bottom: 1.2rem;
}

.price strong {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--muted);
  font-size: 0.68rem;
}

.pricing-grid article > p {
  color: var(--muted);
  font-size: 0.8rem;
}

.pricing-grid ul {
  display: grid;
  gap: 0.65rem;
  padding: 1.5rem 0;
  margin: 1rem 0 2rem;
  border-top: 1px solid rgba(25, 24, 29, 0.13);
  list-style: none;
  font-size: 0.75rem;
}

.pricing-grid li::before {
  margin-right: 0.55rem;
  color: var(--violet);
  content: "✓";
}

.pricing-grid .button {
  width: 100%;
  margin-top: auto;
}

.company-section {
  color: #d8d4dd;
  background: var(--violet);
}

.company-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 10vw, 9rem);
}

.company-layout h2 {
  max-width: 13ch;
  color: var(--white);
}

.company-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.company-layout .company-lede {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}

.company-facts {
  margin: 3rem 0 0;
}

.company-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.company-facts div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.company-facts dt {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 0.57rem;
  text-transform: uppercase;
}

.company-facts dd {
  color: var(--white);
  font-size: 0.78rem;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(4rem, 9vw, 8rem);
}

.faq-layout h2 {
  max-width: 11ch;
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.4rem 3rem 1.4rem 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--violet);
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

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

.faq-list p {
  max-width: 680px;
  padding: 0 3rem 1.4rem 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: #d7d3db;
  background: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(4rem, 9vw, 8rem);
}

.contact-copy h2 {
  max-width: 11ch;
  color: var(--white);
}

.contact-copy > p:not(.section-label) {
  max-width: 500px;
  color: #95909b;
}

.contact-copy dl {
  margin: 3rem 0 0;
}

.contact-copy dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-copy dl div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-copy dt {
  color: #76717c;
  font-family: var(--mono);
  font-size: 0.55rem;
  text-transform: uppercase;
}

.contact-copy dd {
  color: #f1eef4;
  font-size: 0.78rem;
}

.access-form {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  color: var(--ink);
  background: var(--white);
}

.form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.form-top strong {
  color: var(--violet);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.09em;
}

.form-top span {
  color: var(--muted);
  font-size: 0.63rem;
}

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

.access-form label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.73rem;
  font-weight: 600;
}

.access-form input,
.access-form select,
.access-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}

.access-form input,
.access-form select {
  min-height: 48px;
}

.access-form textarea {
  min-height: 130px;
  resize: vertical;
}

.access-form input:focus,
.access-form select:focus,
.access-form textarea:focus {
  background: var(--white);
  border-color: var(--violet);
}

.access-form .is-invalid {
  border-color: var(--red);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.access-form .check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 400;
}

.check-label input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  flex: 0 0 auto;
  padding: 0;
  margin-top: 0.15rem;
  accent-color: var(--violet);
}

.check-label a {
  color: var(--violet);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-message {
  min-height: 1.3rem;
  margin-top: 0.8rem;
  color: #3b7a47;
  font-size: 0.73rem;
}

.form-message.is-error {
  color: var(--red);
}

.site-footer {
  color: #99949f;
  background: #111014;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 3rem;
  padding: 4.5rem 0 3.5rem;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand svg {
  color: var(--ink);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 1.4rem;
  font-size: 0.78rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.75rem;
}

.footer-grid h2 {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  max-width: min(380px, calc(100% - 2rem));
  padding: 0.9rem 1.1rem;
  color: var(--ink);
  background: var(--lime);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 0.76rem;
  font-weight: 600;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-body {
  background: var(--white);
}

.legal-header {
  position: static;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.legal-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: var(--white);
  background: var(--ink);
}

.legal-hero h1 {
  max-width: 12ch;
  color: var(--white);
}

.legal-hero p {
  margin-bottom: 0;
  color: #99949f;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: center;
  gap: 5rem;
  padding: 5rem 0 7rem;
}

.legal-nav {
  position: sticky;
  top: 2rem;
  align-self: start;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-nav strong {
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.legal-nav a:hover {
  color: var(--violet);
}

.legal-content h2 {
  padding-top: 1rem;
  margin: 2.3rem 0 0.8rem;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-content a {
  color: var(--violet);
  text-decoration: underline;
}

.legal-notice {
  padding: 1.2rem;
  margin-bottom: 2rem;
  color: #5d5748;
  background: #f6efd8;
  border-left: 3px solid #bd9140;
  font-size: 0.78rem;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .product-stage {
    width: min(760px, calc(100% - 24px));
  }

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

  .pricing-grid article {
    padding: 1.5rem;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - 82px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1rem 20px 2rem;
    background: var(--white);
    border-top: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .main-nav > a::after {
    display: none;
  }

  .main-nav .nav-action {
    margin-top: 1rem;
    color: var(--white);
    text-align: center;
    border: 0;
  }

  .audience-inner {
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem 0;
  }

  .audience-inner span,
  .audience-inner strong {
    min-height: 38px;
  }

  .audience-inner span {
    border-left: 0;
  }

  .section-heading,
  .workflow-layout,
  .solutions-layout,
  .company-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .workflow-layout,
  .faq-layout,
  .contact-layout {
    gap: 3rem;
  }

  .workflow-copy h2,
  .contact-copy h2 {
    max-width: 14ch;
  }

  .pricing-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .pricing-grid article {
    min-height: 0;
  }

  .pricing-grid ul {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

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

  h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-points div {
    display: grid;
    grid-template-columns: 70px 1fr;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }

  .product-stage {
    width: 100%;
    border-width: 6px;
    box-shadow: 10px 12px 0 var(--lime);
  }

  .stage-toolbar {
    grid-template-columns: 1fr auto;
  }

  .stage-search,
  .stage-sidebar {
    display: none;
  }

  .stage-body {
    min-height: 430px;
    grid-template-columns: 1fr;
  }

  .stage-content {
    padding: 0.8rem;
  }

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

  .metric-grid article:last-child {
    display: none;
  }

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

  .chart-panel {
    display: none;
  }

  .floating-note {
    display: none;
  }

  .audience-inner {
    grid-template-columns: 1fr 1fr;
  }

  .audience-inner span {
    grid-column: 1 / -1;
  }

  .section-heading {
    gap: 0.5rem;
  }

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

  .capability-card {
    min-height: 430px;
  }

  .workflow-demo {
    border-width: 4px;
  }

  .workflow-demo li {
    grid-template-columns: 36px 1fr;
  }

  .step-type {
    display: none;
  }

  .solution-list article {
    grid-template-columns: 35px 1fr;
  }

  .solution-list article > b {
    display: none;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    flex: 1;
  }

  .company-facts div,
  .contact-copy dl div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

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

  .form-top {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem 0;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }
}

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

/* SaaS B2B starter — editorial product direction */
.brand svg {
  background: var(--lime);
}

.nav-action {
  background: var(--violet);
}

.nav-action:hover {
  color: var(--ink);
  background: var(--lime);
}

.hero {
  min-height: 810px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    var(--violet);
  background-size: 64px 64px;
}

.hero::after,
.hero-orbit {
  display: none;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.hero .eyebrow b {
  color: var(--lime);
}

.hero-copy h1 {
  max-width: 8.2ch;
  color: var(--white);
  font-size: clamp(3.7rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.76);
}

.hero .button-primary {
  color: var(--ink);
  background: var(--lime);
}

.hero .button-primary:hover {
  background: #ff8747;
}

.hero .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .button-secondary:hover {
  border-color: var(--white);
}

.hero-points {
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-points dt {
  color: var(--white);
}

.hero-points dd {
  color: rgba(255, 255, 255, 0.6);
}

.hero-art {
  position: relative;
  min-height: 620px;
}

.hero-art figure {
  margin: 0;
}

.hero-art-main {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 82%;
  overflow: hidden;
  border: 8px solid var(--white);
}

.hero-art-main img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-art-main figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(17, 18, 22, 0.9);
}

.hero-art-main figcaption span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.hero-art-main figcaption strong {
  font-size: 0.75rem;
}

.hero-art-small {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 45%;
  border: 8px solid var(--lime);
}

.hero-art-small img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-art-badge {
  position: absolute;
  top: 43%;
  left: 6%;
  z-index: 3;
  display: grid;
  width: 145px;
  height: 145px;
  place-content: center;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-7deg);
}

.hero-art-badge span {
  font-family: var(--mono);
  font-size: 0.48rem;
}

.hero-art-badge strong {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 0.95;
}

.hero-art-rule {
  position: absolute;
  right: -2rem;
  bottom: 6rem;
  width: 55%;
  height: 10px;
  background: var(--lime);
  transform: rotate(-8deg);
}

.audience-strip {
  color: var(--ink);
  background: var(--lime);
}

.audience-inner span,
.audience-inner strong {
  border-color: rgba(17, 18, 22, 0.22);
}

.audience-inner span {
  color: rgba(17, 18, 22, 0.62);
}

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

.platform-section .section-heading {
  grid-template-columns: 0.25fr 1fr;
}

.platform-section .section-heading h2 {
  max-width: 17ch;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
}

.service-stories {
  border-top: 1px solid var(--ink);
}

.service-story {
  display: grid;
  min-height: 520px;
  grid-template-columns: 1.14fr 0.86fr;
  align-items: stretch;
  gap: clamp(2rem, 7vw, 6rem);
  padding: clamp(2.2rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--ink);
}

.service-story.is-reversed figure {
  order: 2;
}

.service-story.is-reversed .service-story-copy {
  order: 1;
}

.service-story figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.service-story figure::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(17, 18, 22, 0.12);
  pointer-events: none;
}

.service-story figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-story:hover figure img {
  transform: scale(1.025);
}

.service-story figure span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.65rem;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.service-story-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.story-kicker {
  color: var(--violet);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-story-copy h3 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 500;
  line-height: 0.98;
}

.service-story-copy > p:not(.story-kicker) {
  max-width: 480px;
  color: var(--muted);
}

.service-story-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.service-story-copy li {
  padding: 0.45rem 0.65rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.67rem;
}

.workflow-section {
  color: var(--ink);
  background: var(--lime);
}

.workflow-copy h2 {
  color: var(--ink);
}

.workflow-copy > p:not(.section-label) {
  color: rgba(17, 18, 22, 0.72);
}

.workflow-section .section-label.light {
  color: var(--ink);
}

.workflow-tabs {
  border-color: rgba(17, 18, 22, 0.28);
}

.workflow-tabs button {
  color: rgba(17, 18, 22, 0.62);
  border-color: rgba(17, 18, 22, 0.28);
}

.workflow-tabs button.is-active {
  color: var(--violet);
  border-left-color: var(--violet);
}

.workflow-demo {
  border-color: var(--ink);
}

.featured-plan {
  background: #fff0e7 !important;
}

.company-section {
  background: var(--violet);
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: min(780px, 100%);
  }
}

@media (max-width: 860px) {
  .service-story,
  .service-story.is-reversed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-story.is-reversed figure,
  .service-story.is-reversed .service-story-copy {
    order: initial;
  }

  .service-story-copy h3 {
    max-width: 15ch;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-art-main {
    width: 95%;
    border-width: 5px;
  }

  .hero-art-small {
    width: 48%;
    border-width: 5px;
  }

  .hero-art-badge {
    top: 49%;
    left: 2%;
    width: 105px;
    height: 105px;
  }

  .hero-art-badge strong {
    font-size: 0.9rem;
  }

  .service-story {
    min-height: 0;
  }

  .service-story figure {
    min-height: 290px;
  }
}

/* Propath Cloudminds — route-control visual system */
:root {
  --ink: #102722;
  --ink-soft: #24413a;
  --paper: #f2f4ec;
  --white: #fbfcf5;
  --muted: #5e6f69;
  --line: #b7c5bc;
  --violet: #174c3f;
  --violet-soft: #dff7ed;
  --lime: #c8f24b;
  --coral: #ff7448;
  --aqua: #65d8bd;
  --red: #b73c35;
  --display: "IBM Plex Sans", system-ui, sans-serif;
  --headline: "Archivo Black", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --shell: 1280px;
}

body {
  background:
    radial-gradient(circle at 8% 20%, rgba(101, 216, 189, 0.12), transparent 26rem),
    var(--paper);
}

h1,
h2 {
  font-family: var(--headline);
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h3 {
  letter-spacing: -0.035em;
}

.site-header {
  background: rgba(242, 244, 236, 0.9);
}

.site-header.is-scrolled {
  background: rgba(251, 252, 245, 0.96);
}

.brand {
  gap: 0.65rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.brand b {
  color: var(--violet);
  font-weight: 600;
}

.brand svg {
  color: var(--ink);
  background: var(--lime);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 74% 100%, 0 100%);
}

.main-nav {
  font-family: var(--mono);
  font-size: 0.68rem;
}

.nav-action,
.button {
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

.nav-action {
  color: var(--ink);
  background: var(--lime);
}

.nav-action:hover {
  color: var(--white);
  background: var(--violet);
}

.hero {
  min-height: 780px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 39, 34, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(16, 39, 34, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, var(--paper) 0 62%, #d8eee5 62% 100%);
  background-size: 58px 58px, 58px 58px, auto;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-top: 5.5rem;
  padding-bottom: 6rem;
}

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

.hero .eyebrow b {
  color: var(--violet);
}

.hero-copy h1 {
  max-width: 7.4ch;
  color: var(--ink);
  font-size: clamp(3.7rem, 7.4vw, 7.8rem);
  line-height: 0.85;
}

.hero-lede,
.hero-points dd {
  color: var(--muted);
}

.hero .button-primary {
  color: var(--ink);
  background: var(--lime);
}

.hero .button-primary:hover {
  background: var(--coral);
}

.hero .button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.hero-points,
.hero-points div {
  border-color: rgba(16, 39, 34, 0.3);
}

.hero-points dt {
  color: var(--ink);
}

.route-console {
  position: relative;
  min-height: 610px;
  padding: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 24px 24px 0 var(--lime);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.console-bar {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.console-bar b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lime);
  font-weight: 500;
}

.console-bar b::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(200, 242, 75, 0.12);
}

.console-grid {
  display: grid;
  min-height: 540px;
  grid-template-columns: 88px 1fr;
  grid-template-rows: 1fr auto;
}

.console-grid aside {
  display: grid;
  align-content: start;
  padding: 1rem 0.7rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.console-grid aside strong {
  margin-top: 1rem;
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 500;
}

.console-grid aside span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
}

.route-map {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(101, 216, 189, 0.12), transparent 15rem),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.route-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-line,
.route-pulse {
  fill: none;
  stroke: rgba(101, 216, 189, 0.34);
  stroke-width: 3;
}

.route-pulse {
  stroke: var(--lime);
  stroke-dasharray: 18 140;
  stroke-linecap: square;
  animation: routePulse 5s linear infinite;
}

.route-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 154px;
  padding: 0.8rem;
  background: #183a32;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.23);
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
}

.route-node i {
  width: 9px;
  height: 9px;
  margin-bottom: 1.6rem;
  background: var(--coral);
  border-radius: 50%;
}

.route-node span {
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.46rem;
}

.route-node b {
  margin-top: 0.2rem;
  font-size: 0.66rem;
  font-weight: 600;
}

.node-a { top: 38px; left: 12px; }
.node-b { top: 150px; left: 39%; }
.node-c { top: 290px; right: 10px; }
.node-d { right: 41%; bottom: 12px; }

.console-summary {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto 1.5fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--ink);
  background: var(--lime);
}

.console-summary span,
.console-summary small {
  font-family: var(--mono);
  font-size: 0.5rem;
}

.console-summary strong {
  font-family: var(--headline);
  font-size: 1.3rem;
  text-transform: uppercase;
}

@keyframes routePulse {
  to { stroke-dashoffset: -316; }
}

.audience-strip {
  color: var(--white);
  background: var(--ink);
}

.audience-inner span,
.audience-inner strong {
  border-color: rgba(255, 255, 255, 0.15);
}

.audience-inner span {
  color: var(--aqua);
}

.platform-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 116, 72, 0.12), transparent 25rem),
    var(--white);
}

.service-stories {
  border-color: var(--ink);
}

.service-story {
  min-height: 480px;
  grid-template-columns: 0.92fr 1.08fr;
  border-color: var(--ink);
}

.service-story figure {
  min-height: 380px;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.service-story:nth-child(even) figure {
  background: var(--violet-soft);
}

.service-story figure span {
  color: var(--ink);
  background: var(--lime);
}

.cap-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cap-visual::before,
.cap-visual::after {
  position: absolute;
  content: "";
}

.visual-tasks {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 18%;
  background: repeating-linear-gradient(0deg, transparent 0 41px, rgba(255, 255, 255, 0.08) 42px);
}

.visual-tasks span {
  position: static !important;
  width: 80%;
  height: 28px;
  padding: 0 !important;
  background: var(--aqua) !important;
}

.visual-tasks span:nth-child(2) { width: 58%; margin-left: 24%; background: var(--lime) !important; }
.visual-tasks span:nth-child(3) { width: 69%; margin-left: 9%; background: var(--coral) !important; }
.visual-tasks i { position: absolute; top: 12%; right: 12%; width: 70px; height: 70px; border: 2px solid var(--lime); border-radius: 50%; }

.visual-team {
  display: grid;
  grid-template-columns: repeat(3, 74px);
  place-content: center;
  gap: 1.5rem;
}

.visual-team span {
  position: static !important;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  padding: 0 !important;
  color: var(--ink) !important;
  background: var(--coral) !important;
  border-radius: 50%;
  font-family: var(--headline);
  font-size: 1.5rem !important;
}

.visual-team span:nth-child(2) { background: var(--lime) !important; }
.visual-team span:nth-child(3) { background: var(--aqua) !important; }
.visual-team i { position: absolute; top: 50%; left: 18%; width: 64%; height: 2px; background: var(--ink); }

.visual-automation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 1.8rem;
  padding: 12%;
}

.visual-automation span,
.visual-system span {
  position: static !important;
  padding: 1.2rem 0.6rem !important;
  color: var(--ink) !important;
  background: var(--white) !important;
  border: 2px solid var(--ink);
  text-align: center;
}

.visual-automation i { position: absolute; top: 50%; left: 15%; width: 70%; height: 3px; background: var(--coral); }

.visual-report {
  display: flex;
  align-items: flex-end;
  gap: 7%;
  padding: 16%;
}

.visual-report span {
  position: static !important;
  width: 18%;
  height: 42%;
  padding: 0 !important;
  background: var(--violet) !important;
}

.visual-report span:nth-child(2) { height: 70%; background: var(--coral) !important; }
.visual-report span:nth-child(3) { height: 55%; background: var(--aqua) !important; }
.visual-report span:nth-child(4) { height: 87%; background: var(--lime) !important; }

.visual-cloud {
  display: grid;
  place-items: center;
}

.visual-cloud i {
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--headline);
  font-style: normal;
}

.visual-cloud span {
  position: absolute !important;
  width: 24px;
  height: 24px;
  padding: 0 !important;
  background: var(--coral) !important;
  border-radius: 50%;
}

.visual-cloud span:nth-child(1) { top: 18%; left: 20%; }
.visual-cloud span:nth-child(2) { top: 24%; right: 18%; }
.visual-cloud span:nth-child(3) { right: 27%; bottom: 16%; }

.visual-system {
  display: grid;
  align-content: center;
  gap: 0.7rem;
  padding: 17%;
}

.visual-system i {
  padding: 0.8rem;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--headline);
  font-style: normal;
  text-align: center;
}

.service-story-copy li {
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
}

.workflow-section {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(101, 216, 189, 0.11), transparent 45%),
    var(--ink);
}

.workflow-copy h2 {
  color: var(--white);
}

.workflow-copy > p:not(.section-label),
.workflow-tabs button {
  color: rgba(255, 255, 255, 0.66);
}

.workflow-section .section-label.light,
.workflow-tabs button.is-active {
  color: var(--lime);
}

.workflow-tabs button.is-active {
  border-left-color: var(--lime);
}

.workflow-demo {
  border-color: var(--aqua);
  box-shadow: 16px 16px 0 rgba(101, 216, 189, 0.2);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.workflow-demo li > b,
.workflow-demo-top > span {
  color: var(--ink);
  background: var(--lime);
}

.solutions-section {
  background:
    linear-gradient(90deg, rgba(16, 39, 34, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

.solution-list article:hover {
  padding-left: 1rem;
  background: var(--violet-soft);
}

.pricing-section {
  background: var(--white);
}

.pricing-grid article {
  min-height: 525px;
}

.pricing-grid .featured-plan {
  color: var(--white);
  background: var(--ink) !important;
}

.featured-plan .plan-name,
.featured-plan h3,
.featured-plan .price strong,
.featured-plan li {
  color: var(--white);
}

.featured-plan p,
.featured-plan .price span {
  color: rgba(255, 255, 255, 0.64) !important;
}

.featured-plan ul {
  border-color: rgba(255, 255, 255, 0.18);
}

.featured-plan .button-primary {
  color: var(--ink);
  background: var(--lime);
}

.plan-tag {
  color: var(--ink);
  background: var(--coral);
}

.company-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(200, 242, 75, 0.13), transparent 24rem),
    var(--violet);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--ink);
  background-size: 58px 58px;
}

.access-form {
  box-shadow: 16px 16px 0 var(--aqua);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.access-form input,
.access-form select,
.access-form textarea {
  background: #edf1e9;
  border-color: #9fafa6;
}

.site-footer {
  background: #091713;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .route-console {
    width: min(800px, calc(100% - 24px));
  }
}

@media (max-width: 600px) {
  html,
  body {
    overflow-x: clip;
  }

  .brand span {
    display: grid;
  }

  .main-nav {
    z-index: 80;
  }

  .section-heading,
  .platform-section .section-heading,
  .company-layout,
  .faq-layout,
  .contact-layout {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading > *,
  .company-layout > *,
  .faq-layout > *,
  .contact-layout > * {
    min-width: 0;
  }

  .company-facts dd,
  .contact-copy dd {
    margin-left: 0;
    overflow-wrap: anywhere;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .route-console {
    min-height: 530px;
    box-shadow: 10px 10px 0 var(--lime);
  }

  .console-grid {
    min-height: 460px;
    grid-template-columns: 1fr;
  }

  .console-grid aside {
    display: none;
  }

  .route-map {
    min-height: 390px;
  }

  .route-node {
    width: 125px;
    padding: 0.6rem;
  }

  .node-a { top: 25px; left: 6px; }
  .node-b { top: 132px; left: 42%; }
  .node-c { top: 245px; right: 4px; }
  .node-d { right: 40%; bottom: 8px; }

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

  .console-summary small {
    display: none;
  }

  .service-story figure {
    min-height: 300px;
  }

  .visual-team {
    grid-template-columns: repeat(3, 58px);
  }

  .visual-team span {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-pulse {
    animation: none;
    stroke-dasharray: none;
  }

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