:root {
  --mk-bg: #f6f7fb;
  --mk-surface: #ffffff;
  --mk-surface-2: #eef4f3;
  --mk-ink: #151923;
  --mk-muted: #5c6678;
  --mk-soft: #dfe5ee;
  --mk-line: #d9e1ec;
  --mk-cyan: #00bfd8;
  --mk-blue: #2468ff;
  --mk-violet: #6f46e8;
  --mk-green: #1f9f72;
  --mk-amber: #f2a51a;
  --mk-rose: #db4e72;
  --mk-shadow: 0 18px 60px rgba(21, 25, 35, 0.12);
  --mk-shadow-soft: 0 10px 32px rgba(21, 25, 35, 0.08);
  --mk-radius: 8px;
  --mk-wrap: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--mk-bg);
  color: var(--mk-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
a,
span,
strong {
  overflow-wrap: break-word;
}

.wrap {
  width: min(calc(100% - 40px), var(--mk-wrap));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, 0.88);
  border-bottom: 1px solid rgba(217, 225, 236, 0.72);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(21, 25, 35, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

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

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

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--mk-radius);
  color: #323b4c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  background: #ffffff;
  color: var(--mk-blue);
}

.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--mk-radius);
  background: var(--mk-ink);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--mk-shadow-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  background: #ffffff;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--mk-ink);
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 88px 0 64px;
  background:
    linear-gradient(135deg, rgba(238, 249, 247, 0.94), rgba(248, 246, 255, 0.86) 52%, rgba(255, 249, 235, 0.92)),
    #f7f8fb;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 25, 35, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 25, 35, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.3) 78%, transparent 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-mark {
  position: absolute;
  right: 8%;
  top: 120px;
  width: 310px;
  border-radius: 32px;
  opacity: 0.94;
  box-shadow: 0 26px 80px rgba(21, 25, 35, 0.22);
}

.hero-preview {
  position: absolute;
  right: min(7vw, 90px);
  bottom: 54px;
  width: 540px;
  border: 1px solid rgba(21, 25, 35, 0.12);
  border-radius: var(--mk-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--mk-shadow);
  overflow: hidden;
}

.preview-topbar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--mk-line);
  color: #3c4556;
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mk-rose);
}

.preview-topbar span:nth-child(2) {
  background: var(--mk-amber);
}

.preview-topbar span:nth-child(3) {
  background: var(--mk-green);
}

.preview-topbar strong {
  margin-left: 8px;
  font-size: 13px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  padding: 16px;
}

.preview-column {
  min-width: 0;
  min-height: 128px;
  padding: 16px;
  border: 1px solid rgba(217, 225, 236, 0.8);
  border-radius: var(--mk-radius);
  background: #ffffff;
}

.preview-column.wide {
  grid-row: span 2;
  min-height: 268px;
  background:
    linear-gradient(180deg, rgba(0, 191, 216, 0.08), transparent 44%),
    #ffffff;
}

.preview-column.accent {
  background:
    linear-gradient(180deg, rgba(242, 165, 26, 0.14), transparent 52%),
    #fffdf8;
}

.preview-column small {
  display: block;
  margin-bottom: 8px;
  color: var(--mk-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-column b {
  display: block;
  color: var(--mk-ink);
  font-size: 18px;
  line-height: 1.25;
}

.preview-column p {
  margin: 10px 0 0;
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--mk-wrap);
  min-width: 0;
  padding-right: min(48vw, 580px);
}

.hero-content h1 {
  margin: 0;
  color: var(--mk-ink);
  font-size: 82px;
  line-height: 0.95;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #0b817f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #30394a;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 520;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--mk-radius);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn.primary {
  background: var(--mk-ink);
  color: #ffffff;
  box-shadow: var(--mk-shadow-soft);
}

.btn.secondary {
  background: #ffffff;
  color: var(--mk-ink);
  border-color: var(--mk-line);
  box-shadow: 0 8px 20px rgba(21, 25, 35, 0.06);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.48);
  color: #253044;
  border-color: rgba(21, 25, 35, 0.12);
}

.btn.full {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
  margin-top: 28px;
}

.hero-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 13px 7px 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 191, 216, 0.12);
  color: #075d67;
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

.hero-tags span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.hero-tags span:nth-child(2) {
  background: rgba(31, 159, 114, 0.12);
  color: #16704f;
}

.hero-tags span:nth-child(3) {
  background: rgba(242, 165, 26, 0.15);
  color: #835600;
}

.hero-tags span:nth-child(4) {
  background: rgba(111, 70, 232, 0.11);
  color: #5134ad;
}

.section {
  padding: 88px 0;
}

.playbook-section {
  padding-top: 74px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 251, 0.98)),
    #ffffff;
  border-top: 1px solid var(--mk-line);
  border-bottom: 1px solid var(--mk-line);
}

.playbook-sheet {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--mk-line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 252, 0.98)),
    #ffffff;
  box-shadow: var(--mk-shadow-soft);
}

.playbook-intro {
  padding: 24px;
  border: 1px dashed rgba(11, 129, 127, 0.24);
  border-radius: var(--mk-radius);
  background: rgba(255, 255, 255, 0.92);
}

.playbook-intro span,
.value-tag,
.playbook-output strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.playbook-intro span {
  background: rgba(0, 191, 216, 0.12);
  color: #0a6b79;
}

.playbook-intro strong {
  display: block;
  margin-top: 14px;
  color: var(--mk-ink);
  font-size: 31px;
  line-height: 1.1;
}

.playbook-intro p {
  margin: 12px 0 0;
  color: var(--mk-muted);
}

.playbook-flow,
.playbook-outputs,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.playbook-flow {
  align-items: stretch;
}

.playbook-step,
.playbook-output,
.value-card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  background: #ffffff;
  box-shadow: var(--mk-shadow-soft);
}

.playbook-step {
  min-height: 100%;
}

.playbook-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 16px;
  height: 16px;
  border-top: 2px solid rgba(36, 104, 255, 0.36);
  border-right: 2px solid rgba(36, 104, 255, 0.36);
  background: #f8fafc;
  transform: translateY(-50%) rotate(45deg);
}

.playbook-step span,
.proof-item span,
.step span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--mk-radius);
  background: #edf7f5;
  color: #087b78;
  font-weight: 900;
}

.playbook-step h3,
.playbook-output h3,
.value-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.playbook-step p,
.playbook-output p,
.value-card p,
.playbook-note p {
  margin: 0;
  color: var(--mk-muted);
}

.playbook-output {
  background: linear-gradient(180deg, rgba(238, 243, 255, 0.72), rgba(255, 255, 255, 0.98));
}

.playbook-output strong {
  background: #eef3ff;
  color: var(--mk-blue);
}

.playbook-note {
  grid-column: 2;
  grid-row: 1 / span 3;
  padding: 24px;
  border-radius: var(--mk-radius);
  background:
    radial-gradient(circle at top right, rgba(0, 191, 216, 0.18), transparent 30%),
    #151923;
  box-shadow: var(--mk-shadow);
}

.playbook-note h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.14;
}

.playbook-note p {
  color: #d7deea;
}

.value-proof {
  background: #ffffff;
}

.value-card {
  background:
    linear-gradient(180deg, rgba(238, 249, 247, 0.7), rgba(255, 255, 255, 0.98) 40%),
    #ffffff;
}

.value-tag {
  background: #eef9f3;
  color: var(--mk-green);
}

.product-screens {
  padding: 74px 0 88px;
  background: #ffffff;
  border-bottom: 1px solid var(--mk-line);
}

.examples-section {
  background: #f7faf9;
  border-top: 1px solid var(--mk-line);
  border-bottom: 1px solid var(--mk-line);
}

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

.screen-gallery.app-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.screen-card {
  appearance: none;
  display: block;
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  background: #ffffff;
  color: inherit;
  text-align: left;
  overflow: hidden;
  box-shadow: var(--mk-shadow-soft);
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.screen-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 104, 255, 0.32);
  box-shadow: var(--mk-shadow);
}

.screen-card:focus-visible {
  outline: 3px solid rgba(36, 104, 255, 0.26);
  outline-offset: 4px;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--mk-line);
  background: #f1f4f8;
}

.screen-card-title,
.screen-card-description {
  display: block;
  padding: 0 16px;
}

.screen-card-title {
  margin-top: 16px;
  color: var(--mk-ink);
  font-size: 16px;
  font-weight: 900;
}

.screen-card-description {
  margin: 8px 0 18px;
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.5;
}

.band {
  background: #ffffff;
  border-top: 1px solid var(--mk-line);
  border-bottom: 1px solid var(--mk-line);
}

.trust-strip {
  padding: 26px 0;
  background: var(--mk-ink);
  color: #ffffff;
}

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

.strip-grid div {
  padding: 8px 0;
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  font-size: 16px;
}

.strip-grid span {
  margin-top: 4px;
  color: #cfd7e4;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.section-copy h2,
.section-head h2,
.service-copy h2,
.final-box h2,
.distribution-card h2 {
  margin: 0;
  color: var(--mk-ink);
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-copy p,
.section-head p,
.service-copy p,
.final-box p,
.distribution-card p {
  color: var(--mk-muted);
  font-size: 17px;
}

.section-copy p:last-child,
.service-copy p:last-child {
  margin-bottom: 0;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.narrow {
  max-width: 720px;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-item,
.step,
.feature-card,
.price-card,
.scope-box,
.capability-panel,
.faq-list details,
.distribution-notes article {
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  background: #ffffff;
  box-shadow: var(--mk-shadow-soft);
}

.proof-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px 16px;
  padding: 22px;
}

.proof-item h3,
.step h3,
.feature-card h3,
.scope-box h3,
.distribution-notes h3,
.price-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.proof-item p {
  grid-column: 2;
  margin: 0;
  color: var(--mk-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 24px;
}

.step h3 {
  margin-top: 18px;
}

.step p,
.feature-card p,
.distribution-notes p,
.price-card p,
.scope-box li {
  color: var(--mk-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 242px;
  padding: 22px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--mk-radius);
  background: #f1f4ff;
  color: var(--mk-blue);
  font-size: 13px;
  font-weight: 950;
}

.feature-card:nth-child(3n) .feature-icon {
  background: #fff6dc;
  color: #9c6800;
}

.feature-card:nth-child(3n + 2) .feature-icon {
  background: #eef9f3;
  color: var(--mk-green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--mk-blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.capability-panel {
  overflow: hidden;
}

.capability-line {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid var(--mk-line);
}

.capability-line:last-child {
  border-bottom: 0;
}

.capability-line strong {
  color: var(--mk-ink);
}

.capability-line span {
  color: var(--mk-muted);
}

.distribution-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
}

.distribution-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--mk-radius);
  background:
    linear-gradient(135deg, rgba(0, 191, 216, 0.12), rgba(255, 255, 255, 0.7) 42%, rgba(242, 165, 26, 0.14)),
    #ffffff;
  border: 1px solid rgba(21, 25, 35, 0.12);
  box-shadow: var(--mk-shadow-soft);
}

.distribution-card img {
  width: 142px;
}

.distribution-notes {
  display: grid;
  gap: 16px;
}

.distribution-notes article {
  padding: 22px;
}

.distribution-notes p {
  margin-bottom: 0;
}

.service-section {
  background: #eff6f2;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.service-price {
  width: fit-content;
  margin: 26px 0 18px;
  padding: 14px 18px;
  border-radius: var(--mk-radius);
  background: #ffffff;
  border: 1px solid rgba(31, 159, 114, 0.22);
  box-shadow: var(--mk-shadow-soft);
}

.service-price strong {
  color: var(--mk-green);
  font-size: 28px;
}

.scope-box {
  padding: 28px;
}

.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--mk-line);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mk-green);
}

.clean-list li:last-child {
  border-bottom: 0;
}

.pricing-section {
  background: #fffaf0;
}

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

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

.price-card.featured {
  border-color: rgba(36, 104, 255, 0.42);
  box-shadow: 0 24px 70px rgba(36, 104, 255, 0.18);
}

.popular-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: var(--mk-radius);
  background: var(--mk-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.plan-head p {
  margin: 0;
  color: var(--mk-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-head h3 {
  margin-top: 8px;
  font-size: 38px;
}

.plan-head span {
  display: block;
  margin-top: 8px;
  min-height: 52px;
  color: var(--mk-muted);
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.price-list div {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--mk-line);
}

.price-list span {
  color: var(--mk-muted);
  font-weight: 800;
}

.price-list strong {
  color: var(--mk-ink);
  font-size: 21px;
}

.plan-note {
  min-height: 130px;
  margin-top: 0;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
}

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

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--mk-ink);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--mk-blue);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] {
  border-color: rgba(36, 104, 255, 0.28);
  box-shadow: 0 20px 44px rgba(36, 104, 255, 0.08);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  border-top: 1px solid var(--mk-line);
  color: var(--mk-muted);
}

.final-cta {
  padding-top: 40px;
}

.final-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: var(--mk-radius);
  background: var(--mk-ink);
  color: #ffffff;
  box-shadow: var(--mk-shadow);
}

.final-box h2,
.final-box p {
  color: #ffffff;
}

.final-box p {
  max-width: 680px;
  color: #dbe2ee;
}

.final-box .eyebrow {
  color: #72e2dd;
}

.final-box .btn.secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer {
  padding: 38px 0;
  background: #10141c;
  color: #dbe2ee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 34px;
}

.footer-inner img {
  width: 168px;
}

.footer-inner p {
  max-width: 520px;
  margin: 16px 0 0;
  color: #aab5c5;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-inner a {
  color: #dbe2ee;
  text-decoration: none;
  font-weight: 800;
}

.footer-inner a:hover {
  color: #72e2dd;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: var(--mk-radius);
  background: #ffffff;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.42);
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 210px);
  object-fit: contain;
  background: #10141c;
}

.lightbox-copy {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--mk-line);
}

.lightbox-count {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef3f8;
  color: #4d5a6d;
  font-size: 12px;
  font-weight: 900;
}

.lightbox-copy h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.lightbox-copy p {
  margin: 8px 0 0;
  color: var(--mk-muted);
}

.lightbox-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--mk-radius);
  background: rgba(16, 20, 28, 0.72);
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--mk-radius);
  background: rgba(16, 20, 28, 0.72);
  color: #ffffff;
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-nav:disabled {
  opacity: 0.42;
  cursor: default;
}

.lightbox-open {
  overflow: hidden;
}

.terms-page {
  background: #ffffff;
}

.terms-hero {
  padding: 82px 0 48px;
  background:
    linear-gradient(135deg, rgba(238, 249, 247, 0.96), rgba(255, 250, 239, 0.96)),
    #f7f8fb;
  border-bottom: 1px solid var(--mk-line);
}

.terms-hero-inner h1 {
  max-width: 820px;
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.terms-hero-inner p {
  max-width: 820px;
  color: var(--mk-muted);
  font-size: 19px;
}

.terms-hero-inner span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--mk-radius);
  background: #ffffff;
  border: 1px solid var(--mk-line);
  color: #3a4558;
  font-weight: 800;
}

.terms-section {
  padding-top: 54px;
}

.terms-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.terms-toc {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  background: #f8fafc;
}

.terms-toc strong {
  margin-bottom: 6px;
}

.terms-toc a {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: var(--mk-radius);
  color: var(--mk-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.terms-toc a:hover {
  background: #ffffff;
  color: var(--mk-blue);
}

.terms-content {
  max-width: 850px;
}

.terms-content section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--mk-line);
  scroll-margin-top: 92px;
}

.terms-content section:last-child {
  border-bottom: 0;
}

.terms-content h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0;
}

.terms-content p {
  color: #465164;
  font-size: 17px;
}

.terms-content a {
  color: var(--mk-blue);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero-preview {
    width: 450px;
    opacity: 0.72;
  }

  .playbook-sheet {
    grid-template-columns: 1fr;
  }

  .playbook-note {
    grid-column: 1;
    grid-row: auto;
  }

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

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

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

  .plan-note {
    min-height: 0;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--mk-line);
    border-radius: var(--mk-radius);
    background: #ffffff;
    box-shadow: var(--mk-shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 46px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 42px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-content {
    padding-right: 0;
  }

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

  .hero-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 40px), 560px);
    max-width: calc(100vw - 28px);
    margin: 34px auto 0;
    opacity: 1;
  }

  .hero-media {
    position: relative;
    order: 2;
  }

  .hero {
    display: block;
  }

  .hero-mark {
    display: none;
  }

  .strip-grid,
  .playbook-flow,
  .playbook-outputs,
  .value-grid,
  .screen-gallery,
  .screen-gallery.app-gallery,
  .split,
  .split.reverse,
  .distribution-layout,
  .service-grid,
  .faq-layout,
  .final-box,
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .section-copy h2,
  .section-head h2,
  .service-copy h2,
  .final-box h2,
  .distribution-card h2 {
    font-size: 34px;
  }

  .final-actions {
    margin-top: 0;
  }

  .footer-inner {
    display: grid;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }

  .terms-toc {
    position: static;
  }

  .lightbox {
    padding: 18px;
  }
}

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

  .brand img {
    width: 150px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-tags span {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .feature-grid,
  .screen-gallery,
  .screen-gallery.app-gallery,
  .steps,
  .playbook-flow,
  .playbook-outputs,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .preview-grid,
  .distribution-card,
  .proof-item,
  .capability-line,
  .playbook-sheet {
    grid-template-columns: 1fr;
  }

  .playbook-intro,
  .playbook-note,
  .playbook-step,
  .playbook-output,
  .value-card {
    padding: 20px;
  }

  .playbook-intro strong {
    font-size: 26px;
  }

  .playbook-step:not(:last-child)::after {
    display: none;
  }

  .preview-column.wide {
    min-height: 180px;
  }

  .proof-item p {
    grid-column: 1;
  }

  .distribution-card,
  .final-box {
    padding: 24px;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox-panel {
    max-height: calc(100vh - 20px);
  }

  .lightbox-panel img {
    max-height: calc(100vh - 220px);
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .terms-hero-inner h1 {
    font-size: 40px;
  }

  .terms-hero-inner p,
  .terms-content p {
    font-size: 16px;
  }
}
