:root {
  --steel: #1c2833;
  --steel-90: #2a3744;
  --steel-50: #6b7a8c;
  --steel-20: #c5ccd5;
  --copper: #b86d49;
  --copper-hover: #a35c3d;
  --copper-soft: #f7e2d2;
  --bronze: #8a4d30;
  --bronze-deep: #6e3d26;
  --linen: #fdf2eb;
  --mist: #f5f6f8;
  --paper: #fef9f5;
  --ink: #0e1419;
  --ink-2: #131a22;
  --text: #1c2833;
  --text-mute: #6b7a8c;
  --text-dim: #94a3b8;
  --text-on-dark: #f4ede0;
  --success: #5e8a6b;
  --success-soft: #e8efe9;
  --warning: #c89a45;
  --warning-soft: #f6ecd4;
  --danger: #b54848;
  --danger-soft: #f4dede;
  --info: #5a7b96;
  --info-soft: #e1e8ef;
  --border: #e5e0d6;
  --border-cool: #dde2eb;
  --border-strong: #c5ccd5;
  --divider: rgba(28, 40, 51, 0.08);
  --shadow-sm: 0 2px 6px rgba(28, 40, 51, 0.06);
  --shadow-md: 0 8px 22px rgba(28, 40, 51, 0.09);
  --shadow-lg: 0 20px 56px rgba(28, 40, 51, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --ease-out: cubic-bezier(0.3, 0.75, 0.45, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes lf-hero-copy-in {
  from {
    opacity: 0;
    transform: translate3d(-18px, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lf-panel-in {
  from {
    opacity: 0;
    transform: translate3d(28px, 18px, 0) rotateY(-6deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg);
  }
}

@keyframes lf-phone-in {
  from {
    opacity: 0;
    transform: translate3d(18px, 28px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes lf-row-in {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lf-wire-draw {
  from {
    stroke-dashoffset: 560;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes lf-rule-in {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes lf-pulse-left {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.92;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

@keyframes lf-pulse-right {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.92;
  }
  50% {
    transform: translateX(-4px);
    opacity: 1;
  }
}

@keyframes lf-flow-step {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
}

@keyframes lf-reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11", "tnum";
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 109, 73, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  background: var(--steel);
  color: var(--text-on-dark);
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(229, 224, 214, 0.8);
  background: rgba(253, 242, 235, 0.94);
  backdrop-filter: blur(14px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 16px 24px;
}

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

.brand img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(197, 204, 213, 0.7);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 247, 0.78);
  padding: 4px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--steel-50);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--copper-soft);
  color: var(--bronze-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--steel);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

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

.button--primary {
  background: var(--steel);
  color: var(--text-on-dark);
}

.button--primary:hover {
  background: var(--steel-90);
}

.button--copper {
  background: var(--copper);
  color: var(--ink);
}

.button--copper:hover {
  background: var(--copper-hover);
}

.button--outline {
  border-color: var(--border-strong);
  background: var(--paper);
  color: var(--steel);
}

.button--outline:hover {
  border-color: var(--steel);
}

.button--ghost {
  background: transparent;
  color: var(--steel-50);
}

.button--ghost:hover {
  background: rgba(184, 109, 73, 0.12);
  color: var(--bronze-deep);
}

.band {
  border-bottom: 1px solid var(--divider);
}

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

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

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

.band--steel {
  background: var(--steel);
  color: var(--text-on-dark);
}

.band--ink {
  background: var(--ink);
  color: var(--text-on-dark);
}

.section-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 84px 24px;
}

.section-shell--tight {
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 74px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 84px;
}

.motion-ready .hero > div:first-child {
  animation: lf-hero-copy-in 720ms var(--ease-out) 120ms both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--copper);
  content: "";
}

.band--steel .eyebrow,
.band--ink .eyebrow,
.band--steel .section-kicker,
.band--ink .section-kicker {
  color: var(--copper-soft);
}

.hero h1,
.doc-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--steel);
  font-size: 64px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

.band--steel h1,
.band--ink h1,
.band--steel h2,
.band--ink h2,
.band--steel h3,
.band--ink h3 {
  color: var(--text-on-dark);
}

.hero-lead,
.doc-hero p,
.section-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--steel-50);
  font-size: 18px;
}

.band--steel .section-lead,
.band--ink .section-lead,
.band--steel p,
.band--ink p {
  color: rgba(244, 237, 224, 0.78);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.proof-item {
  border: 1px solid rgba(197, 204, 213, 0.75);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 247, 0.64);
  padding: 16px;
}

.proof-item span {
  display: block;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
}

.proof-item strong {
  display: block;
  margin-top: 4px;
  color: var(--steel);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  perspective: 1400px;
}

.hero-visual::before {
  position: absolute;
  inset: 34px -18px 42px 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 58%, rgba(184, 109, 73, 0.2), transparent 34%),
    radial-gradient(circle at 34% 28%, rgba(138, 77, 48, 0.1), transparent 30%);
  content: "";
}

.hero-visual::after {
  position: absolute;
  right: 18px;
  top: 42px;
  width: 150px;
  height: 150px;
  background: url("assets/logo/symbol-primary.svg") center / contain no-repeat;
  content: "";
  opacity: 0.1;
  transform: rotate(-10deg);
}

.motion-wire {
  position: absolute;
  inset: 86px 8px auto auto;
  z-index: 1;
  width: min(420px, 70%);
  height: 260px;
  pointer-events: none;
}

.motion-wire path {
  fill: none;
  stroke-linecap: round;
}

.motion-wire__base {
  stroke: rgba(184, 109, 73, 0.16);
  stroke-width: 8;
}

.motion-wire__live {
  stroke: var(--copper);
  stroke-width: 4;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
}

.motion-ready .motion-wire__live {
  animation: lf-wire-draw 1400ms var(--ease-in-out) 640ms both;
}

.console {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(197, 204, 213, 0.8);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.motion-ready .console {
  animation: lf-panel-in 820ms var(--ease-out) 280ms both;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--steel);
  color: var(--text-on-dark);
  padding: 16px 18px;
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.console-brand img {
  width: 28px;
  height: 28px;
}

.brand-motion-symbol {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.brand-ring-left,
.brand-ring-right {
  transform-origin: center;
}

.motion-ready .brand-ring-left {
  animation: lf-pulse-left 2400ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.motion-ready .brand-ring-right {
  animation: lf-pulse-right 2400ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.console-time {
  color: rgba(244, 237, 224, 0.76);
  font-size: 13px;
}

.console-body {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 440px;
}

.console-rail {
  display: grid;
  align-content: start;
  gap: 10px;
  border-right: 1px solid var(--border);
  background: var(--linen);
  padding: 18px 12px;
}

.rail-pill {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--steel-50);
  font-size: 12px;
  font-weight: 750;
}

.rail-pill.is-active {
  background: var(--copper-soft);
  color: var(--bronze-deep);
}

.console-main {
  padding: 24px;
}

.console-main h2 {
  margin: 0;
  color: var(--steel);
  font-size: 24px;
  line-height: 1.2;
}

.console-main > p {
  margin: 8px 0 24px;
  color: var(--steel-50);
}

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

.work-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(245, 246, 248, 0.56);
  padding: 14px;
  transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.work-row:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.motion-ready .work-row {
  animation: lf-row-in 460ms var(--ease-out) both;
}

.motion-ready .work-row:nth-child(1) {
  animation-delay: 620ms;
}

.motion-ready .work-row:nth-child(2) {
  animation-delay: 760ms;
}

.motion-ready .work-row:nth-child(3) {
  animation-delay: 900ms;
}

.work-code {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 850;
}

.work-row strong {
  display: block;
  color: var(--steel);
  font-size: 14px;
}

.work-row p {
  margin: 2px 0 0;
  color: var(--steel-50);
  font-size: 13px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: var(--success-soft);
  color: #31543b;
  font-size: 12px;
  font-weight: 800;
}

.status--warn {
  background: var(--warning-soft);
  color: #6c4a08;
}

.status--danger {
  background: var(--danger-soft);
  color: #7d2525;
}

.phone {
  position: absolute;
  right: -10px;
  bottom: 8px;
  z-index: 2;
  width: 212px;
  border: 8px solid var(--steel);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.motion-ready .phone {
  animation: lf-phone-in 700ms var(--ease-out) 980ms both;
}

.phone-screen {
  min-height: 360px;
  border-radius: 20px;
  background: var(--mist);
  padding: 18px 14px;
}

.phone-notch {
  width: 72px;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--steel-20);
}

.phone-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 14px;
  transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out);
}

.phone-card:hover {
  border-color: var(--copper);
  transform: translateX(-2px);
}

.phone-card + .phone-card {
  margin-top: 10px;
}

.phone-label {
  display: block;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.phone-card strong {
  display: block;
  margin-top: 4px;
  color: var(--steel);
}

.phone-card p {
  margin: 6px 0 0;
  color: var(--steel-50);
  font-size: 12px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading h2,
.split h2,
.subheading h2 {
  margin: 0;
  color: var(--steel);
  font-size: 40px;
  font-weight: 820;
  line-height: 1.12;
}

.section-heading p,
.split p,
.subheading p {
  margin: 0;
  color: var(--steel-50);
  font-size: 16px;
}

.band--steel .section-heading h2,
.band--ink .section-heading h2,
.band--steel .split h2,
.band--ink .split h2,
.band--steel .subheading h2,
.band--ink .subheading h2 {
  color: var(--text-on-dark);
}

.band--steel .section-heading p,
.band--ink .section-heading p,
.band--steel .split p,
.band--ink .split p,
.band--steel .subheading p,
.band--ink .subheading p {
  color: rgba(244, 237, 224, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.05fr);
  gap: 56px;
  align-items: start;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

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

.feature-row,
.module-row,
.faq-item,
.doc-card,
.price-card,
.usecase-card,
.status-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 260ms var(--ease-out), border-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.feature-row:hover,
.module-row:hover,
.faq-item:hover,
.doc-card:hover,
.price-card:hover,
.usecase-card:hover,
.status-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--copper-soft);
  color: var(--bronze-deep);
  font-size: 13px;
  font-weight: 850;
}

.motion-ready .number {
  transform-origin: center;
}

.motion-ready .is-visible .number {
  animation: lf-flow-step 900ms var(--ease-in-out) 160ms 1;
}

.feature-row h3,
.module-row h3,
.doc-card h2,
.doc-card h3,
.price-card h2,
.price-card h3,
.usecase-card h2,
.usecase-card h3,
.status-card h2,
.status-card h3 {
  margin: 0;
  color: var(--steel);
  font-size: 19px;
  line-height: 1.25;
}

.feature-row p,
.module-row p,
.doc-card p,
.price-card p,
.usecase-card p,
.status-card p {
  margin: 8px 0 0;
  color: var(--steel-50);
}

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

.module-row {
  min-height: 178px;
  display: flex;
  flex-direction: column;
}

.module-row span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 850;
}

.module-row p {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(244, 237, 224, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(244, 237, 224, 0.12);
}

.motion-ready .metric {
  position: relative;
  overflow: hidden;
}

.motion-ready .metric::after {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.motion-ready .metric-strip.is-visible .metric::after {
  animation: lf-rule-in 950ms var(--ease-in-out) both;
}

.motion-ready .metric-strip.is-visible .metric:nth-child(1)::after {
  animation-delay: 100ms;
}

.motion-ready .metric-strip.is-visible .metric:nth-child(2)::after {
  animation-delay: 220ms;
}

.motion-ready .metric-strip.is-visible .metric:nth-child(3)::after {
  animation-delay: 340ms;
}

.motion-ready .metric-strip.is-visible .metric:nth-child(4)::after {
  animation-delay: 460ms;
}

.metric {
  min-height: 136px;
  padding: 24px;
  background: rgba(14, 20, 25, 0.22);
}

.metric strong {
  display: block;
  color: var(--text-on-dark);
  font-size: 26px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(244, 237, 224, 0.72);
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.motion-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: 42px;
  align-items: center;
}

.motion-video-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.motion-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--border);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--linen);
  color: var(--steel);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

td {
  color: var(--steel-50);
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.is-featured {
  border-color: var(--copper);
  background: var(--linen);
}

.plan-label {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--copper-soft);
  color: var(--bronze-deep);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
}

.price {
  margin: 14px 0 0;
  color: var(--steel);
  font-size: 36px;
  font-weight: 850;
  line-height: 1;
}

.price span {
  color: var(--steel-50);
  font-size: 14px;
  font-weight: 650;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 20px;
  color: var(--steel-50);
}

.clean-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.price-card .button {
  margin-top: auto;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.payment-main {
  display: grid;
  gap: 18px;
}

.payment-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.payment-toolbar h2,
.payment-enterprise h2,
.payment-summary h2 {
  margin: 0;
  color: var(--steel);
  line-height: 1.2;
}

.payment-toolbar h2 {
  font-size: 30px;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(124px, 1fr));
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.billing-toggle button,
.payment-plan-card {
  font: inherit;
}

.billing-toggle button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--steel-50);
  padding: 8px 10px;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle button span {
  display: block;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
}

.billing-toggle button.is-selected {
  background: var(--steel);
  color: var(--text-on-dark);
}

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

.payment-plan-card {
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--steel);
  padding: 20px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.payment-plan-card:hover,
.payment-plan-card.is-selected {
  border-color: var(--copper);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.payment-plan-card.is-selected {
  background: var(--linen);
}

.payment-plan-kicker {
  display: inline-flex;
  border-radius: 999px;
  background: var(--copper-soft);
  color: var(--bronze-deep);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 850;
}

.payment-plan-card h3 {
  margin: 18px 0 0;
  font-size: 20px;
}

.payment-plan-card p {
  margin: 8px 0 0;
  color: var(--steel-50);
  line-height: 1.55;
}

.payment-plan-card strong {
  display: block;
  margin-top: 18px;
  font-size: 30px;
  line-height: 1;
}

.payment-plan-card strong span {
  color: var(--steel-50);
  font-size: 13px;
}

.payment-plan-card small {
  display: block;
  margin-top: 12px;
  color: var(--steel-50);
  font-size: 13px;
  line-height: 1.45;
}

.payment-enterprise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--mist);
  padding: 20px;
}

.payment-enterprise h2 {
  font-size: 20px;
}

.payment-enterprise p {
  margin: 8px 0 0;
  color: var(--steel-50);
}

.payment-summary {
  position: sticky;
  top: 96px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.payment-summary h2 {
  font-size: 28px;
}

.payment-summary > p {
  color: var(--steel-50);
}

.payment-total {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 22px 0 0;
}

.payment-total span:first-child {
  color: var(--steel);
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.payment-savings,
.payment-tax-note,
.payment-legal {
  margin: 10px 0 0;
  color: var(--steel-50);
  font-size: 13px;
  line-height: 1.5;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.summary-list div {
  display: grid;
  grid-template-columns: minmax(90px, 0.7fr) minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--divider);
  padding-top: 10px;
}

.summary-list dt {
  color: var(--steel-50);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  color: var(--steel);
  font-weight: 750;
}

.payment-checkout-button {
  width: 100%;
  justify-content: center;
}

.payment-checkout-button[aria-disabled="true"] {
  border-color: var(--border-strong);
  background: var(--steel-20);
  color: var(--steel-50);
  cursor: not-allowed;
  opacity: 1;
}

.doc-hero {
  max-width: 1220px;
  margin: 0 auto;
  padding: 72px 24px 48px;
}

.doc-layout {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px 88px;
}

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

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

.doc-card ul,
.price-card ul,
.usecase-card ul,
.status-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--steel-50);
}

.doc-section {
  margin-top: 44px;
}

.doc-section h2 {
  margin: 0 0 18px;
  color: var(--steel);
  font-size: 30px;
  line-height: 1.2;
}

.doc-section > p {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--steel-50);
}

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

.faq-item summary {
  cursor: pointer;
  color: var(--steel);
  font-weight: 800;
}

.faq-item p {
  margin: 12px 0 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--steel);
  padding: 10px 12px;
  font: inherit;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note,
.checkout-status {
  margin: 8px 0 0;
  color: var(--steel-50);
  font-size: 13px;
}

.site-footer {
  background: var(--ink);
  color: var(--text-on-dark);
}

.footer-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 56px 24px 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(140px, 1fr));
  gap: 28px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(244, 237, 224, 0.72);
}

.footer-col h2 {
  margin: 0 0 12px;
  color: var(--text-on-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-top: 8px;
  color: rgba(244, 237, 224, 0.72);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text-on-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  border-top: 1px solid rgba(244, 237, 224, 0.12);
  padding-top: 22px;
  color: rgba(244, 237, 224, 0.62);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  width: min(420px, calc(100vw - 36px));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  padding: 18px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--steel-50);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.inline-link {
  color: var(--bronze-deep);
  font-weight: 800;
}

.notice {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--linen);
  padding: 18px;
  color: var(--steel-50);
}

.page-note {
  margin-top: 28px;
  color: var(--steel-50);
  font-size: 14px;
}

.motion-ready [data-reveal] {
  opacity: 1;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out),
    border-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
  will-change: opacity, transform;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.no-page-motion *,
.no-page-motion *::before,
.no-page-motion *::after {
  transition: none !important;
  animation: none !important;
}

.no-page-motion [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

.no-page-motion .button:hover,
.no-page-motion .work-row:hover,
.no-page-motion .phone-card:hover,
.no-page-motion .feature-row:hover,
.no-page-motion .module-row:hover,
.no-page-motion .faq-item:hover,
.no-page-motion .doc-card:hover,
.no-page-motion .payment-plan-card:hover,
.no-page-motion .price-card:hover,
.no-page-motion .usecase-card:hover,
.no-page-motion .status-card:hover {
  transform: none !important;
}

@media (max-width: 1020px) {
  .header-actions .button--ghost,
  .site-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav.is-open {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 6px;
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open a {
    min-height: 48px;
  }

  .hero,
  .split,
  .section-heading,
  .contact-panel,
  .payment-layout,
  .motion-showcase {
    grid-template-columns: 1fr;
  }

  .payment-summary {
    position: static;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .module-map,
  .metric-strip,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doc-grid,
  .payment-plan-grid,
  .price-grid,
  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .header-shell {
    padding: 12px 16px;
  }

  .brand img {
    width: 132px;
  }

  .header-actions .button--copper {
    display: none;
  }

  .hero,
  .section-shell,
  .doc-hero,
  .doc-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .hero-lead,
  .doc-hero p,
  .section-lead {
    font-size: 16px;
  }

  .hero-proof,
  .two-col,
  .three-col,
  .module-map,
  .metric-strip,
  .doc-grid,
  .doc-grid--two,
  .payment-plan-grid,
  .price-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .payment-toolbar,
  .payment-enterprise,
  .summary-list div {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .payment-plan-card {
    min-height: 0;
  }

  .hero-visual {
    min-height: 590px;
  }

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

  .console-rail {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .phone {
    right: 8px;
    bottom: -14px;
    width: 190px;
  }

  .section-heading h2,
  .split h2,
  .subheading h2 {
    font-size: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .motion-wire__live {
    stroke-dashoffset: 0;
  }
}
