:root {
  --paper: #f4eee4;
  --paper-2: #fffaf2;
  --paper-3: #e9dfd2;
  --ink: #2b1912;
  --ink-soft: #705f55;
  --night: #1d120e;
  --night-2: #291a14;
  --roast: #8e472b;
  --roast-2: #b46842;
  --mint: #77d8ae;
  --mint-deep: #2f8d69;
  --line: rgba(53, 32, 23, 0.14);
  --white-line: rgba(255, 250, 242, 0.14);
  --shadow: 0 24px 64px rgba(57, 34, 22, 0.1);
  --radius: 30px;
  --radius-in: 20px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

body[data-theme="ember"] {
  --paper: #f1eee8;
  --paper-2: #fbf8f2;
  --paper-3: #dedbd4;
  --ink: #121516;
  --ink-soft: #656868;
  --night: #242829;
  --night-2: #2d3232;
  --roast: #eb5731;
  --roast-2: #f17651;
  --mint: #ef5a33;
  --mint-deep: #d94521;
  --line: rgba(18, 21, 22, 0.14);
  --white-line: rgba(251, 248, 242, 0.14);
  --shadow: 0 24px 64px rgba(20, 24, 25, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  transition: color 240ms ease, background-color 240ms ease;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: rgba(255, 250, 242, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.42fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.architecture-head h2,
.plan-head h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > p,
.architecture-head > p,
.plan-head > p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.button {
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--mint);
}

.button-ghost {
  color: var(--paper-2);
  border-color: rgba(255, 250, 242, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.button-dark {
  color: var(--paper-2);
  background: var(--night);
}

.button-light {
  color: var(--night);
  background: var(--paper-2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 750;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--paper-2);
}

.nav-shell {
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-header .brand-name {
  color: var(--paper-2);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}

.site-header .brand-art img {
  filter: none;
}

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

.brand-art {
  position: relative;
  width: 56px;
  height: 64px;
  overflow: hidden;
}

.brand-art img {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 110px;
  max-width: none;
  transform: translateX(-50%);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 650;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-trigger {
  border: 0;
  padding: 10px 0;
  color: rgba(255, 250, 242, 0.84);
  background: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-trigger:hover {
  color: #fff;
}

.nav-trigger::after {
  margin-left: 7px;
  content: "⌄";
  font-size: 12px;
}

.nav-item.is-open .nav-trigger::after {
  content: "⌃";
}

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 310px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 242, 0.15);
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  background: rgba(29, 18, 14, 0.96);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, 10px);
  transition: 160ms ease;
}

.nav-item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown a {
  padding: 12px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 10px;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.dropdown strong {
  font-size: 12px;
  font-family: var(--mono);
}

.dropdown span {
  grid-column: 2;
  color: rgba(255, 250, 242, 0.58);
  font-size: 11px;
  line-height: 1.4;
}

.dropdown-code {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(119, 216, 174, 0.42);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.theme-toggle {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 250, 242, 0.78);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  border-color: rgba(255, 250, 242, 0.48);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.theme-swatches {
  position: relative;
  width: 27px;
  height: 17px;
  display: inline-block;
}

.theme-swatches i {
  position: absolute;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}

.theme-swatches i:first-child {
  left: 0;
  background: #77d8ae;
}

.theme-swatches i:last-child {
  right: 0;
  background: #ef5a33;
}

.theme-label {
  min-width: 38px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sign-in {
  font-size: 13px;
  font-weight: 650;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(980px, 100svh);
  height: max(820px, 100svh);
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  color: var(--paper-2);
  background: var(--night);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 11, 8, 0.94) 0%, rgba(22, 13, 10, 0.79) 45%, rgba(22, 13, 10, 0.34) 74%, rgba(22, 13, 10, 0.52) 100%),
    linear-gradient(0deg, rgba(28, 16, 11, 0.48), transparent 52%);
  content: "";
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: radial-gradient(rgba(255,255,255,0.12) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
  pointer-events: none;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  padding-top: 168px;
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.66fr);
  gap: 80px;
  align-items: end;
}

.hero-copy {
  align-self: center;
  max-width: 770px;
  padding-top: 26px;
}

.hero-kicker {
  margin: 0 0 25px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(66px, 7.1vw, 112px);
  font-weight: 650;
  letter-spacing: -0.073em;
  line-height: 0.87;
}

.hero h1 em {
  color: var(--mint);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 11px;
}

.hero-system {
  align-self: end;
  padding: 21px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 26px;
  background: rgba(29, 18, 14, 0.58);
  backdrop-filter: blur(18px);
}

.system-top {
  padding: 0 4px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  color: rgba(255,250,242,0.58);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint);
}

.live-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(119,216,174,0.12);
  content: "";
}

.system-modules {
  padding-top: 13px;
  display: grid;
  gap: 9px;
}

.system-module {
  min-height: 82px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.045);
}

.system-module:first-child {
  border-color: rgba(119,216,174,0.45);
  background: rgba(119,216,174,0.09);
}

.module-code {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
}

.module-copy strong {
  display: block;
  font-size: 14px;
}

.module-copy small {
  display: block;
  margin-top: 4px;
  color: rgba(255,250,242,0.52);
  font-size: 11px;
}

.module-state {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-foot {
  margin: 15px 4px 1px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,250,242,0.48);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Architecture */
.architecture {
  padding: 120px 0;
}

.architecture-frame {
  padding: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.architecture-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.48fr);
  gap: 80px;
  align-items: end;
}

.market-paths {
  margin-top: 62px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 12px;
  background: rgba(233, 223, 210, 0.42);
}

.market-path {
  min-height: 92px;
  padding: 20px 22px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--paper-2);
}

.market-path strong {
  display: block;
  font-size: 15px;
}

.market-path span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 12px;
}

.market-flow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.market-flow i {
  color: var(--mint-deep);
  font-style: normal;
}

.architecture-map {
  position: relative;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1fr;
  align-items: stretch;
}

.arch-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-in);
  display: flex;
  flex-direction: column;
  background: #fcf7ef;
}

.arch-card-required {
  color: var(--paper-2);
  background: var(--night);
}

.arch-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
}

.arch-card h3 {
  margin: 48px 0 8px;
  font-size: 36px;
  letter-spacing: -0.045em;
}

.arch-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.arch-card-required > p {
  color: rgba(255,250,242,0.57);
}

.arch-list {
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.arch-card-required .arch-list {
  border-color: var(--white-line);
  color: rgba(255,250,242,0.68);
}

.arch-list li::before {
  margin-right: 8px;
  color: var(--mint-deep);
  content: "✓";
}

.architecture-connector {
  position: relative;
  display: grid;
  place-items: center;
}

.architecture-connector::before {
  width: 100%;
  height: 1px;
  background: var(--line);
  content: "";
}

.architecture-connector span {
  position: absolute;
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink-soft);
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.architecture-note {
  margin-top: 24px;
  padding: 16px 20px;
  border-left: 3px solid var(--mint-deep);
  color: var(--ink-soft);
  background: rgba(119,216,174,0.1);
  font-size: 13px;
  line-height: 1.55;
}

/* PTS */
.product-section {
  padding: 112px 0 128px;
}

.section-code {
  color: var(--mint-deep);
  font-family: var(--mono);
}

.pts-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(510px, 1.2fr);
  gap: 22px;
}

.photo-card,
.attendance-console {
  min-height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-card {
  position: relative;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(29,18,14,0.86), transparent 52%);
  content: "";
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: var(--paper-2);
}

.photo-caption .eyebrow {
  margin-bottom: 12px;
}

.photo-caption h3 {
  margin: 0;
  max-width: 460px;
  font-size: 36px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.attendance-console {
  padding: 28px;
  color: var(--paper-2);
  background: var(--night);
}

.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white-line);
}

.console-title {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 750;
}

.console-title i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(119,216,174,0.1);
}

.console-date {
  color: rgba(255,250,242,0.46);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.attendance-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
}

.attendance-main,
.score-card,
.mode-card,
.request-card {
  border: 1px solid var(--white-line);
  border-radius: var(--radius-in);
  background: rgba(255,255,255,0.045);
}

.attendance-main {
  min-height: 285px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.attendance-main small,
.score-card small,
.mode-card small,
.request-card small {
  color: rgba(255,250,242,0.48);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.clock-value {
  margin-top: 35px;
  font-family: var(--mono);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.clock-meta {
  margin-top: 9px;
  color: rgba(255,250,242,0.52);
  font-size: 12px;
}

.clock-status {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--white-line);
  display: flex;
  justify-content: space-between;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.score-card {
  min-height: 285px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.score-ring {
  width: 118px;
  height: 118px;
  margin: 27px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--mint) 0 96%, rgba(255,255,255,0.09) 96% 100%);
}

.score-ring::before {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--night-2);
  content: "96";
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 800;
}

.score-card strong {
  margin-top: auto;
  font-size: 13px;
  text-align: center;
}

.mode-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr;
  gap: 14px;
}

.mode-card,
.request-card {
  min-height: 170px;
  padding: 22px;
}

.mode-card h4,
.request-card h4 {
  margin: 43px 0 7px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.mode-card p,
.request-card p {
  margin: 0;
  color: rgba(255,250,242,0.5);
  font-size: 11px;
  line-height: 1.5;
}

.request-card {
  border-color: rgba(119,216,174,0.3);
  background: rgba(119,216,174,0.08);
}

.feature-rail {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--paper-2);
}

.feature-item {
  min-height: 172px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item span {
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
}

.feature-item h4 {
  margin: 38px 0 8px;
  font-size: 17px;
}

.feature-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

/* WPCS */
.workflow-section {
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: 112px 0 118px;
  border-radius: var(--radius);
  color: var(--paper-2);
  background: var(--night);
  overflow: hidden;
}

.workflow-section .section-heading > p {
  color: rgba(255,250,242,0.58);
}

.workflow-console {
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.025);
}

.workflow-tabs,
.branch-tabs {
  padding: 13px;
  border-bottom: 1px solid var(--white-line);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.workflow-tab,
.branch-tab {
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: rgba(255,250,242,0.48);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: 160ms ease;
}

.workflow-tab span {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
}

.workflow-tab strong {
  font-size: 12px;
}

.workflow-tab:hover,
.workflow-tab.is-active,
.branch-tab:hover,
.branch-tab.is-active {
  color: var(--paper-2);
  border-color: rgba(119,216,174,0.26);
  background: rgba(119,216,174,0.09);
}

.workflow-tab.is-active span,
.branch-tab.is-active small {
  color: var(--mint);
}

.workflow-stage {
  min-height: 560px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 22px;
}

.workflow-visual {
  position: relative;
  min-height: 510px;
  border-radius: var(--radius-in);
  overflow: hidden;
}

.workflow-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(23,13,9,0.78));
  content: "";
}

.workflow-ticket {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 17px;
  background: rgba(29,18,14,0.77);
  backdrop-filter: blur(14px);
}

.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,250,242,0.56);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.workflow-ticket h4 {
  margin: 20px 0 7px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.workflow-ticket p {
  margin: 0;
  color: rgba(255,250,242,0.58);
  font-size: 11px;
}

.workflow-detail {
  padding: 54px 42px;
  display: flex;
  flex-direction: column;
}

.workflow-status {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-detail h3 {
  max-width: 480px;
  margin: 38px 0 20px;
  font-size: 48px;
  letter-spacing: -0.055em;
  line-height: 1;
}

.workflow-detail > p {
  max-width: 500px;
  margin: 0;
  color: rgba(255,250,242,0.58);
  font-size: 15px;
  line-height: 1.7;
}

.workflow-points {
  margin: auto 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--white-line);
  list-style: none;
  display: grid;
  gap: 14px;
  color: rgba(255,250,242,0.76);
  font-size: 12px;
}

.workflow-points li::before {
  margin-right: 10px;
  color: var(--mint);
  content: "→";
}

.workflow-progress {
  margin-top: 32px;
  height: 4px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.workflow-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  background: var(--mint);
  transition: width 260ms ease;
}

/* MDS */
.mds-section {
  padding: 126px 0;
}

.mds-layout {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.mds-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: end;
}

.mds-head h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.mds-head > div:last-child p {
  max-width: 550px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.sync-map {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 105px 0.95fr;
  align-items: stretch;
}

.catalog-card {
  min-height: 460px;
  padding: 26px;
  border-radius: var(--radius-in);
  color: var(--paper-2);
  background: var(--night);
}

.catalog-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white-line);
  display: flex;
  justify-content: space-between;
  color: rgba(255,250,242,0.52);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-item {
  padding: 21px 0;
  border-bottom: 1px solid var(--white-line);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
}

.menu-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--mint);
  font-size: 20px;
}

.menu-copy strong {
  display: block;
  font-size: 13px;
}

.menu-copy span {
  display: block;
  margin-top: 5px;
  color: rgba(255,250,242,0.45);
  font-size: 10px;
}

.menu-price {
  font-family: var(--mono);
  font-size: 11px;
}

.catalog-foot {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,250,242,0.48);
  font-family: var(--mono);
  font-size: 9px;
}

.sync-bus {
  position: relative;
  display: grid;
  place-items: center;
}

.sync-bus::before {
  width: 100%;
  height: 1px;
  background: var(--line);
  content: "";
}

.sync-pulse {
  position: absolute;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(47,141,105,0.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 0 0 11px rgba(119,216,174,0.12);
}

.endpoint-list {
  display: grid;
  gap: 12px;
}

.endpoint-card {
  min-height: 145px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-in);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  background: #fcf7ef;
}

.endpoint-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 19px;
}

.endpoint-card strong {
  display: block;
  font-size: 14px;
}

.endpoint-card p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.sync-state {
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

/* Operating environments */
.audience-section {
  padding: 124px 0 76px;
}

.audience-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.44fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 58px;
}

.audience-heading h2 {
  margin: 0;
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.audience-heading h2 span {
  color: var(--roast);
  font-family: Georgia, serif;
  font-weight: 400;
}

.audience-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audience-card {
  position: relative;
  min-height: 510px;
  border-radius: 24px;
  overflow: hidden;
  color: var(--paper-2);
  box-shadow: 0 20px 48px rgba(48, 28, 19, 0.12);
}

.audience-card-photo img,
.audience-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.audience-card-photo img {
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .75, .25, 1);
}

.audience-card-photo:hover img {
  transform: scale(1.035);
}

.audience-card-photo:nth-child(2) img {
  object-position: 56% center;
}

.audience-card-photo:nth-child(3) img {
  object-position: 48% center;
}

.audience-card-shade {
  background: linear-gradient(180deg, rgba(25, 14, 10, 0.08) 18%, rgba(25, 14, 10, 0.9) 92%);
}

.audience-card-system {
  border: 1px solid rgba(119, 216, 174, 0.22);
  background:
    linear-gradient(145deg, rgba(119, 216, 174, 0.1), transparent 48%),
    var(--night);
}

.audience-card-system::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(119, 216, 174, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 216, 174, 0.22) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 74%);
  content: "";
}

.audience-system-top {
  position: relative;
  z-index: 2;
  margin: 24px 24px 0;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--white-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 250, 242, 0.62);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audience-system-top i {
  color: var(--mint);
  font-size: 12px;
  font-style: normal;
}

.audience-system-mark {
  position: absolute;
  top: 116px;
  left: 20px;
  color: rgba(119, 216, 174, 0.12);
  font-family: var(--mono);
  font-size: clamp(78px, 7.5vw, 122px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.audience-card-content {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  left: 25px;
}

.audience-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.audience-modules span {
  padding: 6px 8px;
  border: 1px solid rgba(119, 216, 174, 0.32);
  border-radius: 100px;
  color: var(--mint);
  background: rgba(29, 18, 14, 0.38);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.audience-pro span {
  color: #ffd4ba;
  border-color: rgba(255, 212, 186, 0.32);
}

.audience-card h3 {
  margin: 19px 0 10px;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.audience-card p {
  margin: 0;
  color: rgba(255, 250, 242, 0.64);
  font-size: 14px;
  line-height: 1.55;
}

.industry-list {
  margin-top: 21px;
  padding-top: 17px;
  border-top: 1px solid var(--white-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 12px;
  color: rgba(255, 250, 242, 0.52);
  font-size: 12px;
}

.industry-list span::before {
  margin-right: 6px;
  color: var(--mint);
  content: "+";
}

.audience-foot {
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  background: rgba(255, 250, 242, 0.55);
  font-size: 13px;
}

.audience-foot > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.audience-foot > span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-deep);
  content: "";
}

.audience-foot a {
  color: var(--ink);
  font-weight: 750;
}

.audience-foot a i {
  margin-left: 7px;
  color: var(--mint-deep);
  font-style: normal;
}

/* Plans */
.plans-section {
  padding: 118px 0 132px;
}

.plan-head {
  display: grid;
  grid-template-columns: 0.9fr 0.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  min-height: 610px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
}

.plan-card-featured {
  color: var(--paper-2);
  border-color: var(--night);
  background: var(--night);
  transform: translateY(-14px);
  box-shadow: 0 28px 70px rgba(36,20,14,0.2);
}

.plan-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-pill {
  padding: 7px 9px;
  border-radius: 100px;
  color: var(--night);
  background: var(--mint);
  font-size: 8px;
}

.plan-card h3 {
  margin: 48px 0 11px;
  font-size: 40px;
  letter-spacing: -0.05em;
}

.plan-subtitle {
  min-height: 46px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.plan-card-featured .plan-subtitle {
  color: rgba(255,250,242,0.56);
}

.plan-capacity {
  margin: 35px 0 0;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.plan-card-featured .plan-capacity {
  border-color: var(--white-line);
}

.plan-capacity small {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.plan-card-featured .plan-capacity small {
  color: rgba(255,250,242,0.46);
}

.plan-features {
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 15px;
  color: var(--ink-soft);
  font-size: 12px;
}

.plan-card-featured .plan-features {
  color: rgba(255,250,242,0.7);
}

.plan-features li::before {
  margin-right: 9px;
  color: var(--mint-deep);
  content: "✓";
  font-weight: 900;
}

.plan-card-featured .plan-features li::before {
  color: var(--mint);
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

/* Multi branch */
.multi-section {
  width: calc(100% - 48px);
  margin: 0 auto;
  border-radius: var(--radius);
  color: var(--paper-2);
  background: var(--roast);
  overflow: hidden;
}

.multi-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
}

.multi-copy {
  padding: 88px 70px 74px 0;
  display: flex;
  flex-direction: column;
}

.multi-copy h2 {
  margin: 0;
  font-size: 68px;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.multi-copy > p {
  max-width: 430px;
  margin: 25px 0 0;
  color: rgba(255,250,242,0.68);
  font-size: 16px;
  line-height: 1.65;
}

.branch-tabs {
  margin-top: auto;
  padding: 0;
  border: 0;
  grid-template-columns: 1fr;
  gap: 7px;
}

.branch-tab {
  min-height: 62px;
  padding-inline: 16px;
  border-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branch-tab strong {
  font-size: 12px;
}

.branch-tab small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.multi-console-wrap {
  padding: 52px 0 52px 52px;
}

.multi-console {
  height: 100%;
  min-height: 575px;
  padding: 28px;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--ink);
  background: var(--paper-2);
  box-shadow: 0 30px 70px rgba(39,20,12,0.2);
}

.branch-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.branch-head small {
  display: block;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.branch-head h3 {
  margin: 8px 0 0;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.branch-live {
  padding: 8px 10px;
  border-radius: 100px;
  color: var(--mint-deep);
  background: rgba(119,216,174,0.16);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
}

.branch-metrics {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-card {
  min-height: 126px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.metric-card span {
  color: var(--ink-soft);
  font-size: 10px;
}

.metric-card strong {
  display: block;
  margin-top: 25px;
  font-family: var(--mono);
  font-size: 27px;
}

.metric-card small {
  color: var(--mint-deep);
  font-size: 8px;
}

.branch-feed {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.feed-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feed-row {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}

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

.feed-row time,
.feed-row em {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
}

.feed-row b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

/* Trust and CTA */
.trust-section {
  padding: 124px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.trust-card {
  min-height: 305px;
  padding: 34px;
  background: var(--paper-2);
}

.trust-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
}

.trust-card h3 {
  margin: 72px 0 11px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.trust-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.cta-section {
  width: calc(100% - 48px);
  margin: 0 auto 24px;
  border-radius: var(--radius);
  color: var(--paper-2);
  background: var(--night);
  overflow: hidden;
}

.cta-grid {
  min-height: 530px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.cta-copy {
  padding: 84px 70px 70px 0;
  display: flex;
  flex-direction: column;
}

.cta-copy p {
  max-width: 480px;
  margin: 25px 0 0;
  color: rgba(255,250,242,0.58);
  font-size: 16px;
  line-height: 1.65;
}

.cta-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.cta-visual {
  position: relative;
  min-height: 530px;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--night), transparent 34%);
  content: "";
}

.site-footer {
  padding: 58px 0 44px;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.55fr);
  gap: 50px;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.footer-column strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 11px 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Modal */
.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(19,11,8,0.74);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  padding: 42px;
  border-radius: 26px;
  overflow-y: auto;
  background: var(--paper-2);
  box-shadow: 0 35px 90px rgba(0,0,0,0.34);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.modal-panel h2 {
  margin: 0;
  font-size: 42px;
  letter-spacing: -0.055em;
}

.modal-panel > p {
  margin: 14px 0 28px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-field {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fffdf9;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--mint-deep);
  font-size: 11px;
}

.demo-form .button {
  grid-column: 1 / -1;
}

@media (max-width: 1120px) {
  .shell {
    width: min(100% - 44px, 1100px);
  }

  .main-nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr 400px;
    gap: 42px;
  }

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

  .architecture-frame {
    padding: 46px;
  }

  .architecture-map {
    grid-template-columns: 1fr 55px 1fr 55px 1fr;
  }

  .pts-showcase {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .attendance-console {
    padding: 20px;
  }

  .workflow-detail {
    padding: 40px 24px;
  }

  .workflow-detail h3 {
    font-size: 40px;
  }

  .multi-copy h2 {
    font-size: 56px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 28px, 760px);
  }

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

  .main-nav,
  .sign-in {
    display: none;
  }

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

  .hero-inner {
    padding-top: 150px;
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-copy {
    align-self: auto;
  }

  .hero h1 {
    font-size: clamp(58px, 13vw, 86px);
  }

  .hero-system {
    max-width: 600px;
  }

  .section-heading,
  .architecture-head,
  .plan-head,
  .mds-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .architecture-frame,
  .mds-layout {
    padding: 32px;
  }

  .market-paths,
  .architecture-map,
  .pts-showcase,
  .workflow-stage,
  .sync-map,
  .plan-grid,
  .multi-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .architecture-map {
    gap: 12px;
  }

  .architecture-connector {
    min-height: 42px;
  }

  .architecture-connector::before {
    width: 1px;
    height: 100%;
  }

  .pts-showcase,
  .plan-grid {
    gap: 16px;
  }

  .feature-rail,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item:nth-child(2) {
    border-right: 0;
  }

  .feature-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .sync-bus {
    min-height: 100px;
  }

  .sync-bus::before {
    width: 1px;
    height: 100%;
  }

  .plan-card-featured {
    transform: none;
  }

  .multi-copy,
  .cta-copy {
    padding: 70px 0 38px;
  }

  .multi-console-wrap {
    padding: 0 0 40px;
  }

  .multi-console {
    border-radius: var(--radius);
  }

  .cta-visual {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .workflow-section,
  .multi-section,
  .cta-section {
    width: calc(100% - 16px);
  }

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

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

  .system-module {
    grid-template-columns: 44px 1fr;
  }

  .module-state {
    display: none;
  }

  .architecture-frame,
  .mds-layout {
    padding: 24px;
  }

  .market-paths,
  .attendance-grid,
  .mode-row,
  .feature-rail,
  .trust-grid,
  .branch-metrics,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .workflow-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-stage {
    padding: 12px;
  }

  .workflow-detail {
    padding: 30px 18px;
  }

  .feature-item,
  .feature-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* DV3 document bindings */
.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  color: var(--night);
  background: var(--mint);
  transform: translateY(-150%);
}

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

.nav-inner {
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 36px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 650;
}

.nav-group {
  position: relative;
}

.nav-trigger > span {
  margin-left: 6px;
}

.nav-trigger::after {
  content: none;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 330px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 242, 0.15);
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  background: rgba(29, 18, 14, 0.97);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, 10px);
  transition: 160ms ease;
}

.nav-group.is-open .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-menu a {
  padding: 12px 13px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 4px 10px;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.nav-menu strong {
  grid-row: span 2;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
}

.nav-menu span {
  color: rgba(255, 250, 242, 0.58);
  font-size: 11px;
}

.signin {
  color: rgba(255, 250, 242, 0.82);
  font-size: 13px;
  font-weight: 650;
}

.button-outline {
  min-height: 44px;
  color: var(--paper-2);
  border-color: rgba(255, 250, 242, 0.34);
  background: rgba(255, 255, 255, 0.04);
}

.hero::before {
  content: none;
}

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

.hero-image {
  object-fit: cover;
  object-position: center 40%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(19, 11, 8, 0.96) 0%, rgba(22, 13, 10, 0.83) 48%, rgba(22, 13, 10, 0.32) 78%, rgba(22, 13, 10, 0.54) 100%),
    linear-gradient(0deg, rgba(28, 16, 11, 0.55), transparent 54%);
}

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

.hero-copy h1 span,
.section-heading h2 span,
.product-heading h2 span,
.multi-copy h2 span {
  color: var(--mint);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-copy > p {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 250, 242, 0.7);
  font-size: 17px;
  line-height: 1.62;
}

.hero-proof {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(255, 250, 242, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.hero-platform {
  align-self: end;
  padding: 19px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 26px;
  background: rgba(29, 18, 14, 0.6);
  backdrop-filter: blur(18px);
}

.hero-module {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-module.root {
  border-color: rgba(119, 216, 174, 0.4);
  background: rgba(119, 216, 174, 0.08);
}

.module-top,
.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-module .module-code {
  width: auto;
  height: auto;
  border: 0;
  display: inline;
  color: var(--mint);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.pill,
.dependency-chip {
  width: fit-content;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  color: rgba(255, 250, 242, 0.57);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill.live {
  color: var(--mint);
  border-color: rgba(119, 216, 174, 0.26);
}

.pill.required {
  color: #f5bb96;
}

.hero-module h2 {
  margin: 28px 0 7px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.hero-module p {
  margin: 0;
  color: rgba(255, 250, 242, 0.48);
  font-size: 10px;
  line-height: 1.5;
}

.signal-row {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 242, 0.42);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.signal-row strong {
  color: var(--mint);
}

.dependency-line {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: rgba(255, 250, 242, 0.4);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dependency-line::before {
  position: absolute;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.dependency-line span {
  z-index: 1;
  padding: 5px 9px;
  background: var(--night);
}

.hero-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.hero-module.child {
  min-height: 168px;
}

.hero-module.child h2 {
  font-size: 16px;
}

.section {
  scroll-margin-top: 20px;
}

.split-heading h2 span,
.centered-heading h2 span,
.compact-heading h2 span {
  color: var(--roast);
}

.market-paths article {
  min-height: 94px;
  padding: 20px 22px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 16px;
  background: var(--paper-2);
}

.market-paths .path-number {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
}

.market-paths strong {
  font-size: 14px;
}

.market-paths p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.architecture-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-in);
  display: flex;
  flex-direction: column;
  background: #fcf7ef;
}

.architecture-card.wpcs-card {
  color: var(--paper-2);
  background: var(--night);
}

.card-index {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
}

.card-kicker {
  margin-top: 39px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wpcs-card .card-kicker {
  color: rgba(255, 250, 242, 0.48);
}

.architecture-card h3 {
  margin: 12px 0 7px;
  font-size: 31px;
  letter-spacing: -0.045em;
}

.architecture-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.wpcs-card > p {
  color: rgba(255, 250, 242, 0.56);
}

.license {
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.wpcs-card .license {
  border-color: var(--white-line);
}

.license span {
  color: var(--ink-soft);
}

.wpcs-card .license span {
  color: rgba(255, 250, 242, 0.45);
}

.license strong {
  font-family: var(--mono);
  font-size: 9px;
}

.pts-section {
  padding: 112px 0 128px;
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.45fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.product-heading > div:first-child {
  position: relative;
}

.product-number {
  position: absolute;
  top: 1px;
  left: -3px;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
}

.product-heading .eyebrow {
  margin-left: 44px;
}

.product-heading h2 {
  margin: 0;
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.product-heading > p,
.product-heading > div:last-child > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.photo-panel {
  position: relative;
  min-height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(29, 18, 14, 0.75), transparent 48%);
  content: "";
}

.attendance-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-in);
  color: var(--paper-2);
  background: rgba(29, 18, 14, 0.76);
  backdrop-filter: blur(15px);
}

.panel-head,
.verification-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 250, 242, 0.5);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.attendance-main {
  min-height: auto;
  padding: 27px 0 23px;
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  background: none;
}

.attendance-main strong {
  font-family: var(--mono);
  font-size: 48px;
  letter-spacing: -0.06em;
}

.attendance-main span {
  color: rgba(255, 250, 242, 0.58);
  font-size: 10px;
  line-height: 1.55;
  text-align: right;
}

.verification-row {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.verification-row span:first-child {
  color: var(--mint);
}

.pts-dashboard {
  min-height: 600px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--paper-2);
  background: var(--night);
}

.dashboard-bar {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white-line);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 250, 242, 0.46);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.score-row {
  min-height: 285px;
  padding: 40px 10px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 25px;
}

.score-row .score-ring {
  width: 148px;
  height: 148px;
  margin: 0;
}

.score-row .score-ring::before {
  display: none;
}

.score-row .score-ring strong,
.score-row .score-ring span {
  position: absolute;
}

.score-row .score-ring strong {
  margin-top: -12px;
  font-family: var(--mono);
  font-size: 33px;
}

.score-row .score-ring span {
  margin-top: 34px;
  color: rgba(255, 250, 242, 0.5);
  font-size: 9px;
}

.score-copy span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-copy strong {
  display: block;
  max-width: 330px;
  margin-top: 17px;
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.score-copy p {
  max-width: 350px;
  margin: 11px 0 0;
  color: rgba(255, 250, 242, 0.48);
  font-size: 11px;
  line-height: 1.55;
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mode-grid article {
  min-height: 210px;
  padding: 23px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-in);
  background: rgba(255, 255, 255, 0.04);
}

.mode-grid article:first-child {
  border-color: rgba(119, 216, 174, 0.28);
  background: rgba(119, 216, 174, 0.07);
}

.mode-grid span {
  color: rgba(255, 250, 242, 0.43);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
}

.mode-grid strong {
  display: block;
  margin-top: 69px;
  font-size: 17px;
}

.mode-grid p {
  margin: 8px 0 0;
  color: rgba(255, 250, 242, 0.46);
  font-size: 10px;
  line-height: 1.5;
}

.feature-rail > article {
  min-height: 172px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.feature-rail > article:last-child {
  border-right: 0;
}

.feature-rail > article > span {
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 850;
}

.feature-rail > article > strong {
  display: block;
  margin-top: 37px;
  font-size: 16px;
}

.feature-rail > article > p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.wpcs-section {
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: 112px 0 118px;
  border-radius: var(--radius);
  color: var(--paper-2);
  background: var(--night);
  overflow: hidden;
}

.light-heading .eyebrow,
.light-heading .product-number {
  color: var(--mint);
}

.light-heading h2 span {
  color: var(--mint);
}

.light-heading > div:last-child > p {
  margin-top: 20px;
  color: rgba(255, 250, 242, 0.58);
}

.dependency-chip {
  color: #f4bd98;
  border-color: rgba(244, 189, 152, 0.25);
}

.dependency-chip.independent {
  color: var(--mint);
  border-color: rgba(119, 216, 174, 0.25);
}

.workflow-shell {
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.workflow-tab.active {
  color: var(--paper-2);
  border-color: rgba(119, 216, 174, 0.26);
  background: rgba(119, 216, 174, 0.09);
}

.workflow-tab.active span {
  color: var(--mint);
}

.workflow-copy {
  padding: 54px 42px;
  display: flex;
  flex-direction: column;
}

.workflow-copy h3 {
  max-width: 480px;
  margin: 38px 0 20px;
  font-size: 48px;
  letter-spacing: -0.055em;
  line-height: 1;
}

.workflow-copy > p {
  margin: 0;
  color: rgba(255, 250, 242, 0.58);
  font-size: 15px;
  line-height: 1.7;
}

.workflow-copy ul {
  margin: auto 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--white-line);
  list-style: none;
  display: grid;
  gap: 14px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 12px;
}

.workflow-copy li::before {
  margin-right: 10px;
  color: var(--mint);
  content: "→";
}

.ticket-head {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 250, 242, 0.52);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.workflow-ticket > strong {
  display: block;
  margin: 18px 0 6px;
  font-size: 20px;
}

.ticket-progress {
  height: 3px;
  margin-top: 18px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.ticket-progress span {
  display: block;
  height: 100%;
  background: var(--mint);
  transition: width 220ms ease;
}

.mds-section {
  position: relative;
  min-height: 900px;
  margin-top: 120px;
  padding: 115px 0;
  color: var(--paper-2);
  overflow: hidden;
  background: var(--night);
}

.mds-background,
.mds-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mds-background {
  object-fit: cover;
  object-position: center;
}

.mds-shade {
  background: linear-gradient(90deg, rgba(23, 13, 9, 0.97), rgba(23, 13, 9, 0.78) 60%, rgba(23, 13, 9, 0.48));
}

.mds-inner {
  position: relative;
  z-index: 1;
}

.sync-console {
  display: grid;
  grid-template-columns: 1fr 115px 0.86fr;
  align-items: stretch;
}

.catalog-core {
  min-height: 410px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-in);
  background: rgba(29, 18, 14, 0.78);
  backdrop-filter: blur(15px);
}

.catalog-top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white-line);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 250, 242, 0.48);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.catalog-item {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 18px;
}

.product-thumb {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--night);
  background: var(--mint);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 900;
}

.catalog-item strong {
  display: block;
  font-size: 21px;
}

.catalog-item div:nth-child(2) span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 250, 242, 0.48);
  font-size: 10px;
}

.catalog-item .price {
  font-family: var(--mono);
  font-size: 18px;
}

.availability {
  grid-column: 2 / -1;
  width: fit-content;
  padding: 7px 9px;
  border-radius: 100px;
  color: var(--mint);
  background: rgba(119, 216, 174, 0.12);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 850;
}

.catalog-events {
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid var(--white-line);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 250, 242, 0.42);
  font-family: var(--mono);
  font-size: 7px;
}

.catalog-events span::before {
  margin-right: 6px;
  color: var(--mint);
  content: "✓";
}

.sync-console > .sync-bus {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
}

.sync-console > .sync-bus::before {
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.17);
  content: "";
}

.sync-console > .sync-bus span {
  z-index: 1;
  max-width: 68px;
  padding: 10px;
  border: 1px solid rgba(119, 216, 174, 0.28);
  border-radius: 10px;
  background: var(--night);
}

.endpoint-grid {
  display: grid;
  gap: 10px;
}

.endpoint-grid article {
  min-height: 130px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-in);
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 13px;
  background: rgba(29, 18, 14, 0.74);
  backdrop-filter: blur(15px);
}

.endpoint-grid .endpoint-icon {
  width: 45px;
  height: 45px;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
}

.endpoint-grid strong {
  font-size: 13px;
}

.endpoint-grid p {
  margin: 5px 0 0;
  color: rgba(255, 250, 242, 0.45);
  font-size: 9px;
}

.endpoint-grid i {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
}

.centered-heading {
  display: block;
  max-width: 970px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading p {
  max-width: 650px;
  margin: 24px auto 0;
}

.plan-card .plan-top {
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-badge {
  padding: 7px 9px;
  border-radius: 100px;
  color: var(--mint-deep);
  background: rgba(119, 216, 174, 0.14);
}

.plan-card.featured {
  position: relative;
  color: var(--paper-2);
  border-color: var(--night);
  background: var(--night);
  transform: translateY(-14px);
  box-shadow: 0 28px 70px rgba(36, 20, 14, 0.2);
}

.plan-card.featured .plan-top,
.plan-card.featured .plan-profile,
.plan-card.featured .plan-block p,
.plan-card.featured .plan-billing span {
  color: rgba(255, 250, 242, 0.54);
}

.recommended {
  position: absolute;
  top: -13px;
  right: 30px;
  padding: 8px 11px;
  border-radius: 100px;
  color: var(--night);
  background: var(--mint);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-profile {
  min-height: 59px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.plan-block {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.featured .plan-block {
  border-color: var(--white-line);
}

.plan-block strong {
  font-size: 12px;
}

.plan-block p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.plan-billing {
  margin-bottom: 25px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

.featured .plan-billing {
  border-color: var(--white-line);
}

.plan-billing span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-billing strong {
  font-size: 10px;
}

.multi-frame {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 45px;
}

.multi-capabilities {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.multi-capabilities span {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  color: rgba(255, 250, 242, 0.67);
  font-size: 9px;
}

.branch-console {
  align-self: center;
  padding: 20px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-2);
  box-shadow: 0 30px 70px rgba(39, 20, 12, 0.2);
}

.branch-console .branch-tabs {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.branch-console .branch-tab {
  min-height: 58px;
  color: var(--ink-soft);
  border-color: transparent;
}

.branch-console .branch-tab.active {
  color: var(--ink);
  border-color: rgba(47, 141, 105, 0.28);
  background: rgba(119, 216, 174, 0.14);
}

.branch-console .branch-tab strong {
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 10px;
}

.branch-detail {
  padding: 38px 27px 28px;
}

.branch-score {
  text-align: right;
}

.branch-score strong {
  display: block;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 36px;
}

.branch-score span {
  color: var(--ink-soft);
  font-size: 8px;
}

.branch-detail .branch-metrics > div {
  min-height: 122px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.branch-detail .branch-metrics span {
  color: var(--ink-soft);
  font-size: 9px;
}

.branch-detail .branch-metrics strong {
  display: block;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 23px;
}

.branch-detail > p {
  margin: 18px 0 0;
  padding: 20px;
  border-left: 3px solid var(--mint-deep);
  color: var(--ink-soft);
  background: rgba(119, 216, 174, 0.1);
  font-size: 11px;
  line-height: 1.55;
}

.compact-heading {
  margin-bottom: 55px;
}

.trust-grid > article {
  min-height: 305px;
  padding: 34px;
  background: var(--paper-2);
}

.trust-grid > article > span {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
}

.trust-grid > article > strong {
  display: block;
  margin-top: 72px;
  font-size: 20px;
}

.trust-grid > article > p {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.62;
}

.final-cta {
  width: calc(100% - 48px);
  margin: 0 auto 24px;
  border-radius: var(--radius);
  color: var(--paper-2);
  background: var(--night);
}

.final-inner {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-inner h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 86px);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.final-inner p {
  max-width: 560px;
  margin: 26px 0 31px;
  color: rgba(255, 250, 242, 0.58);
  font-size: 15px;
  line-height: 1.6;
}

.footer {
  padding: 58px 0 44px;
}

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

.footer-grid > div:not(.footer-brand) h3 {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin: 11px 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  padding: 42px;
  border-radius: 26px;
  overflow-y: auto;
  background: var(--paper-2);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
}

.modal::before {
  position: absolute;
  inset: 0;
  background: rgba(19, 11, 8, 0.74);
  backdrop-filter: blur(8px);
  content: "";
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.modal-head .eyebrow {
  margin-bottom: 14px;
}

.modal-head h2 {
  margin: 0;
  font-size: 42px;
  letter-spacing: -0.055em;
}

.modal-head .modal-close {
  position: static;
  flex: 0 0 40px;
}

#demo-form {
  margin-top: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fffdf9;
}

.form-error {
  min-height: 20px;
  margin: 12px 0;
  color: #a33b2d;
  font-size: 10px;
}

#demo-form > .button {
  width: 100%;
}

.form-success {
  display: none;
  min-height: 270px;
  padding-top: 64px;
}

.form-success h3 {
  margin: 30px 0 12px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.form-success p {
  color: var(--ink-soft);
  font-size: 12px;
}

.modal-card.is-success #demo-form,
.modal-card.is-success .modal-head > div {
  display: none;
}

.modal-card.is-success .form-success {
  display: block;
}

@media (max-width: 1120px) {
  .nav {
    gap: 18px;
  }

  .hero-platform {
    padding: 14px;
  }

  .hero-module {
    padding: 16px;
  }

  .hero-module h2 {
    margin-top: 20px;
  }

  .multi-copy {
    padding-right: 20px;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav,
  .signin {
    display: none;
  }

  .hero-platform {
    max-width: 640px;
  }

  .product-heading,
  .multi-frame {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-heading > p,
  .product-heading > div:last-child {
    max-width: 620px;
  }

  .workflow-copy {
    min-height: 430px;
    padding: 34px 24px;
  }

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

  .sync-console > .sync-bus {
    min-height: 90px;
  }

  .sync-console > .sync-bus::before {
    width: 1px;
    height: 100%;
  }

  .multi-copy {
    min-height: 520px;
  }

  .branch-console {
    margin-bottom: 42px;
  }
}

@media (max-width: 620px) {
  .wpcs-section,
  .final-cta {
    width: calc(100% - 16px);
  }

  .hero-module-grid,
  .mode-grid,
  .form-grid,
  .multi-capabilities {
    grid-template-columns: 1fr;
  }

  .photo-panel,
  .pts-dashboard {
    min-height: 540px;
  }

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

  .score-row .score-ring {
    margin-inline: auto;
  }

  .workflow-copy h3 {
    font-size: 38px;
  }

  .catalog-item {
    grid-template-columns: 58px 1fr;
  }

  .catalog-item .price {
    display: none;
  }

  .availability {
    grid-column: 2;
  }

  .catalog-events {
    align-items: flex-start;
    flex-direction: column;
  }

  .branch-console .branch-tabs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-card {
    min-height: 460px;
  }
}

@media (max-width: 900px) {
  .audience-heading,
  .audience-foot {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .audience-heading > p {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 480px;
  }
}

/* Ember palette - the same Cuply system in the reference's charcoal, cream and orange */
body[data-theme="ember"] .hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 17, 18, 0.96) 0%, rgba(20, 23, 24, 0.82) 48%, rgba(20, 23, 24, 0.3) 78%, rgba(20, 23, 24, 0.58) 100%),
    linear-gradient(0deg, rgba(18, 21, 22, 0.6), transparent 54%);
}

body[data-theme="ember"] .hero-platform,
body[data-theme="ember"] .workflow-ticket,
body[data-theme="ember"] .attendance-card,
body[data-theme="ember"] .catalog-core,
body[data-theme="ember"] .endpoint-grid article {
  background: rgba(30, 34, 35, 0.82);
}

body[data-theme="ember"] .hero-module.root,
body[data-theme="ember"] .mode-grid article:first-child,
body[data-theme="ember"] .workflow-tab:hover,
body[data-theme="ember"] .workflow-tab.active,
body[data-theme="ember"] .branch-console .branch-tab.active {
  border-color: rgba(239, 90, 51, 0.34);
  background: rgba(239, 90, 51, 0.1);
}

body[data-theme="ember"] .pill.live,
body[data-theme="ember"] .dependency-chip.independent,
body[data-theme="ember"] .sync-console > .sync-bus span,
body[data-theme="ember"] .audience-modules span {
  border-color: rgba(239, 90, 51, 0.34);
}

body[data-theme="ember"] .pill.required,
body[data-theme="ember"] .dependency-chip {
  color: #ffb394;
  border-color: rgba(255, 179, 148, 0.3);
}

body[data-theme="ember"] .availability,
body[data-theme="ember"] .plan-badge,
body[data-theme="ember"] .branch-live,
body[data-theme="ember"] .branch-detail > p {
  background: rgba(239, 90, 51, 0.12);
}

body[data-theme="ember"] .branch-console .branch-tab.active {
  border-color: rgba(217, 69, 33, 0.3);
}

body[data-theme="ember"] .mds-shade {
  background: linear-gradient(90deg, rgba(22, 25, 26, 0.98), rgba(22, 25, 26, 0.8) 60%, rgba(22, 25, 26, 0.5));
}

body[data-theme="ember"] .audience-card-system {
  border-color: rgba(239, 90, 51, 0.28);
  background:
    linear-gradient(145deg, rgba(239, 90, 51, 0.13), transparent 48%),
    var(--night);
}

body[data-theme="ember"] .audience-card-system::before {
  background-image:
    linear-gradient(rgba(239, 90, 51, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 90, 51, 0.22) 1px, transparent 1px);
}

body[data-theme="ember"] .audience-system-mark {
  color: rgba(239, 90, 51, 0.13);
}

body[data-theme="ember"] .multi-section {
  background: var(--night);
  box-shadow: inset 7px 0 0 var(--roast);
}

body[data-theme="ember"] .multi-copy h2 span {
  color: var(--roast);
}

body[data-theme="ember"] .modal::before {
  background: rgba(18, 21, 22, 0.76);
}
