:root {
  --coal: #101312;
  --coal-2: #151917;
  --coal-3: #1d231f;
  --paper: #f4f1e8;
  --paper-2: #e9e3d5;
  --text: #f7f4ec;
  --ink: #141713;
  --muted: #a7ada5;
  --muted-dark: #5c635d;
  --line: rgba(247, 244, 236, 0.12);
  --line-dark: rgba(20, 23, 19, 0.12);
  --accent: #36c985;
  --accent-2: #126b46;
  --accent-soft: rgba(54, 201, 133, 0.13);
  --warn: #d8b66a;
  --max: 1180px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 24px 70px rgba(3, 8, 5, 0.34);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-reserved: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--coal);
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding-top: var(--nav-reserved);
  color: var(--text);
  background:
    linear-gradient(180deg, #101312 0%, #131714 46%, #0f1211 100%);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

main,
section,
article,
.shell,
.hero-grid > *,
.page-hero-grid > *,
.section-head > *,
.proof-grid > *,
.case-panel > *,
.example-grid > *,
.feature-jump-grid > *,
.system-map > *,
.feature-row > *,
.reel-grid > *,
.demo-panel > *,
.hyperframe-shell > *,
.faq-grid > *,
.two-col > *,
.page-grid > *,
.price-grid > *,
.process-grid > *,
.metric-grid > *,
.trade-grid > *,
.footer-grid > * {
  min-width: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.9) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247,244,236,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,244,236,0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black 0%, black 34%, transparent 82%);
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(54, 201, 133, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #07130d;
  background: var(--accent);
  font-weight: 800;
  transition: transform 260ms var(--ease);
}

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

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 14px 0;
  transition: background 260ms var(--ease), border-color 260ms var(--ease), backdrop-filter 260ms var(--ease);
}

.nav.is-scrolled {
  background: rgba(16, 19, 18, 0.78);
  border-bottom: 1px solid rgba(247, 244, 236, 0.08);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(247,244,236,0.08);
  border-radius: 16px;
  background: rgba(247,244,236,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: #07130d;
  background: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.footer a {
  color: rgba(247,244,236,0.72);
  transition: color 220ms var(--ease);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--text);
}

.nav-links .mobile-menu-cta {
  display: none;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247,244,236,0.12);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(247,244,236,0.04);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(247,244,236,0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(247,244,236,0.035);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 240ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(247,244,236,0.26);
  background: rgba(247,244,236,0.07);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  color: #06130c;
  border-color: rgba(54,201,133,0.72);
  background: var(--accent);
}

.btn-primary:hover {
  color: #06130c;
  background: #5bd99e;
}

.btn-text {
  border-color: transparent;
  background: transparent;
  padding-inline: 8px;
  color: rgba(247,244,236,0.8);
}

.btn-dark {
  color: var(--text);
  border-color: rgba(20,23,19,0.12);
  background: var(--ink);
}

.btn-dark:hover {
  color: var(--text);
  border-color: rgba(20,23,19,0.28);
  background: var(--ink);
}

.section {
  padding: clamp(72px, 10vw, 136px) 0;
  position: relative;
}

.section-tight {
  padding: clamp(52px, 7vw, 86px) 0;
}

.section-pricing {
  padding-top: clamp(44px, 6vw, 72px);
}

#features {
  padding-bottom: clamp(38px, 5vw, 68px);
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-paper {
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, #e8e2d4 100%);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(54,201,133,0.28);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(54,201,133,0.08);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-light .eyebrow,
.section-light .section-label,
.section-paper .eyebrow,
.section-paper .section-label {
  color: var(--accent-2);
  background: rgba(18,107,70,0.08);
  border-color: rgba(18,107,70,0.18);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1800ms var(--ease) infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(54,201,133,0.48); }
  70% { box-shadow: 0 0 0 9px rgba(54,201,133,0); }
  100% { box-shadow: 0 0 0 0 rgba(54,201,133,0); }
}

.hero {
  min-height: calc(100dvh - 92px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 7vw, 86px) 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.88fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.hero-copy-block {
  max-width: 720px;
}

.headline {
  margin: 24px 0 0;
  max-width: 780px;
  font-family: "Syne", sans-serif;
  font-size: clamp(3.2rem, 7.2vw, 6.4rem);
  line-height: 0.94;
  font-weight: 800;
  text-wrap: balance;
  overflow-wrap: normal;
}

.subhead {
  margin: 24px 0 0;
  max-width: 640px;
  color: rgba(247,244,236,0.68);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.66;
  text-wrap: pretty;
}

.section-light .subhead,
.section-paper .subhead,
.section-light .section-copy,
.section-paper .section-copy {
  color: var(--muted-dark);
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

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

.proof-item {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border-top: 1px solid rgba(247,244,236,0.1);
}

.proof-item strong {
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 1.24rem;
  line-height: 1;
}

.proof-item span {
  color: rgba(247,244,236,0.58);
  font-size: 0.9rem;
}

.system-visual {
  position: relative;
  min-height: 560px;
}

.browser-mock,
.phone-mock,
.dashboard-mock,
.review-flow,
.inbox-mock {
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(247,244,236,0.08), rgba(247,244,236,0.028));
  box-shadow: var(--shadow);
}

.browser-mock {
  position: absolute;
  top: 26px;
  right: 32px;
  width: min(450px, 92%);
  min-height: 330px;
  overflow: hidden;
  transform: rotate(-2.5deg);
}

.chat-widget-mock {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  justify-items: end;
  gap: 8px;
  width: min(216px, calc(100% - 32px));
  pointer-events: none;
}

.chat-bubble {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(54,201,133,0.18);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(3,8,5,0.22);
}

.chat-bubble small {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-bubble strong {
  display: block;
  font-size: 0.92rem;
}

.chat-bubble p {
  margin: 5px 0 0;
  color: rgba(20,23,19,0.64);
  font-size: 0.78rem;
  line-height: 1.35;
}

.chat-trigger {
  display: inline-flex;
  min-width: 86px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: #06130c;
  background: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(3,8,5,0.24);
}

.chat-trigger span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #06130c;
}

.browser-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(247,244,236,0.08);
  background: rgba(247,244,236,0.035);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(247,244,236,0.22);
}

.website-preview {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.preview-hero-line {
  width: 74%;
  height: 28px;
  border-radius: 6px;
  background: rgba(247,244,236,0.2);
}

.preview-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(247,244,236,0.1);
}

.preview-line:nth-child(3) { width: 88%; }
.preview-line:nth-child(4) { width: 58%; }

.quote-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(54,201,133,0.16);
  border-radius: var(--radius);
  background: rgba(54,201,133,0.08);
}

.quote-card span {
  height: 36px;
  border-radius: 6px;
  background: rgba(247,244,236,0.1);
}

.quote-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 6px;
  color: #07130d;
  background: var(--accent);
}

.phone-mock {
  position: absolute;
  left: 32px;
  top: 120px;
  width: 250px;
  min-height: 500px;
  padding: 12px;
  border-radius: 36px;
  transform: rotate(2deg);
}

.phone-screen {
  min-height: 474px;
  overflow: hidden;
  border-radius: 27px;
  border: 1px solid rgba(247,244,236,0.08);
  background:
    linear-gradient(180deg, rgba(54,201,133,0.16), rgba(54,201,133,0) 32%),
    #111512;
}

.phone-status,
.phone-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px 10px;
  color: rgba(247,244,236,0.7);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
}

.phone-title {
  justify-content: flex-start;
  padding-top: 16px;
  color: rgba(247,244,236,0.45);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sms-card {
  margin: 10px 12px;
  padding: 14px;
  border-radius: 13px;
  color: #111512;
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.sms-card small {
  display: block;
  margin-bottom: 8px;
  color: rgba(20,23,19,0.56);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sms-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.phone-checks {
  display: grid;
  gap: 9px;
  margin: 110px 14px 0;
}

.check-row,
.event-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(247,244,236,0.72);
  font-size: 0.84rem;
}

.check-box {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid rgba(247,244,236,0.12);
  background: rgba(247,244,236,0.05);
}

.metric-float {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 220px;
  padding: 18px;
  border: 1px solid rgba(54,201,133,0.22);
  border-radius: var(--radius-lg);
  color: var(--text);
  background: rgba(16,19,18,0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.metric-float span {
  display: block;
  color: rgba(247,244,236,0.48);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-float strong {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-family: "Syne", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.marquee {
  position: relative;
  height: 54px;
  overflow: hidden;
  max-width: 100vw;
  border-block: 1px solid rgba(247,244,236,0.08);
  background: rgba(247,244,236,0.025);
  contain: layout paint;
}

.marquee-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow: clip;
  gap: 30px;
  padding: 17px 0;
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  color: rgba(247,244,236,0.54);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.section-title {
  margin: 16px 0 0;
  max-width: 780px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.35rem, 5.4vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
  text-wrap: balance;
  overflow-wrap: normal;
}

.section-copy {
  margin: 16px 0 0;
  max-width: 640px;
  color: rgba(247,244,236,0.64);
  font-size: 1.05rem;
  line-height: 1.66;
  text-wrap: pretty;
}

.section-reel {
  padding: clamp(76px, 9vw, 126px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(247,244,236,0.08);
  border-bottom: 1px solid rgba(247,244,236,0.08);
  background:
    radial-gradient(circle at 78% 8%, rgba(54,201,133,0.16), transparent 32%),
    linear-gradient(180deg, #111512 0%, #0f1211 100%);
}

.reel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.reel-copy {
  max-width: 620px;
}

.reel-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.reel-points span,
.hf-caption-rail span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius);
  color: rgba(247,244,236,0.68);
  background: rgba(247,244,236,0.045);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hyperframe-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247,244,236,0.12);
  border-radius: 16px;
  background: rgba(247,244,236,0.045);
  box-shadow: 0 28px 86px rgba(3,8,5,0.36);
}

.hf-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(247,244,236,0.09);
  color: rgba(247,244,236,0.64);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hyperframe-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--coal);
  object-fit: cover;
}

.hf-caption-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 16px;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.case-panel,
.system-panel,
.price-card,
.feature-card,
.faq-card,
.form-panel,
.trade-tile,
.process-step,
.metric-card,
.page-card {
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius);
  background: rgba(247,244,236,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

.section-light .case-panel,
.section-light .system-panel,
.section-light .price-card,
.section-light .feature-card,
.section-light .faq-card,
.section-light .form-panel,
.section-light .trade-tile,
.section-light .process-step,
.section-light .metric-card,
.section-light .page-card,
.section-paper .case-panel,
.section-paper .system-panel,
.section-paper .price-card,
.section-paper .feature-card,
.section-paper .faq-card,
.section-paper .form-panel,
.section-paper .trade-tile,
.section-paper .process-step,
.section-paper .metric-card,
.section-paper .page-card {
  border-color: var(--line-dark);
  background: rgba(255,255,255,0.42);
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 22px;
  padding: 18px;
}

.primary-result {
  border-color: rgba(54,201,133,0.28);
  background:
    linear-gradient(135deg, rgba(54,201,133,0.11), rgba(247,244,236,0.045) 42%),
    rgba(247,244,236,0.045);
}

.case-image {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--coal-2);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.case-content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(12px, 2vw, 18px);
}

.case-content h2,
.case-content h3,
.system-panel h3,
.feature-card h3,
.price-card h3,
.process-step h3,
.page-card h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.05;
}

.case-list,
.feature-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-list li,
.feature-list li,
.plain-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(247,244,236,0.68);
  line-height: 1.45;
}

.section-light .case-list li,
.section-light .feature-list li,
.section-light .plain-list li,
.section-paper .case-list li,
.section-paper .feature-list li,
.section-paper .plain-list li {
  color: var(--muted-dark);
}

.mini-tick {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 5px;
  background: var(--accent);
  box-shadow: inset 0 0 0 5px rgba(6,19,12,0.12);
}

.result-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.result-stat-strip span {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius);
  color: rgba(247,244,236,0.64);
  background: rgba(247,244,236,0.045);
  font-size: 0.84rem;
}

.result-stat-strip strong {
  display: block;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
}

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

.system-panel {
  min-height: 170px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
}

.system-panel p,
.feature-card p,
.price-card p,
.process-step p,
.metric-card p,
.page-card p {
  margin: 0;
  color: rgba(247,244,236,0.62);
  line-height: 1.55;
}

.section-light .system-panel p,
.section-light .feature-card p,
.section-light .price-card p,
.section-light .process-step p,
.section-light .metric-card p,
.section-light .page-card p,
.section-paper .system-panel p,
.section-paper .feature-card p,
.section-paper .price-card p,
.section-paper .process-step p,
.section-paper .metric-card p,
.section-paper .page-card p {
  color: var(--muted-dark);
}

.example-showcase {
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(247,244,236,0.08);
}

.example-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.52fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 16px;
}

.example-showcase-head h3 {
  margin: 12px 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.example-showcase-head p {
  margin: 0;
  color: rgba(247,244,236,0.64);
  line-height: 1.55;
}

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

.example-card {
  overflow: hidden;
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius);
  background: rgba(247,244,236,0.045);
}

.section-light .example-card,
.section-paper .example-card {
  border-color: var(--line-dark);
  color: var(--ink);
  background: rgba(255,255,255,0.48);
}

.example-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid rgba(247,244,236,0.08);
}

.section-light .example-card img,
.section-paper .example-card img {
  border-color: var(--line-dark);
}

.example-card-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.example-card-body span {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-card-body h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.06rem;
  line-height: 1.14;
}

.example-card-body p {
  margin: 0;
  color: rgba(247,244,236,0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-light .example-card-body p,
.section-paper .example-card-body p {
  color: var(--muted-dark);
}

.system-map {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr;
  gap: 16px;
  align-items: center;
}

.map-column {
  display: grid;
  gap: 14px;
}

.map-node {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius);
  background: rgba(247,244,236,0.045);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.map-node:hover {
  transform: translateY(-4px);
  border-color: rgba(54,201,133,0.34);
  background: rgba(54,201,133,0.07);
}

.section-light .map-node,
.section-paper .map-node {
  border-color: var(--line-dark);
  background: rgba(255,255,255,0.42);
}

.map-node span {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-node h3 {
  margin: 10px 0 8px;
  font-size: 1.18rem;
}

.map-node p {
  margin: 0;
  color: rgba(247,244,236,0.58);
  line-height: 1.45;
}

.section-light .map-node p,
.section-paper .map-node p {
  color: var(--muted-dark);
}

.map-core {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(54,201,133,0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(54,201,133,0.14), rgba(54,201,133,0.04));
}

.map-core strong {
  display: block;
  max-width: 220px;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 2.35rem;
  line-height: 0.94;
  text-align: center;
}

.section-light .map-core strong,
.section-paper .map-core strong {
  color: var(--ink);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 5.4vw, 58px) 0;
  border-top: 1px solid rgba(247,244,236,0.08);
}

#features .feature-row:last-child {
  padding-bottom: clamp(18px, 3vw, 34px);
}

.feature-detail .feature-row {
  padding: 0;
  border-top: 0;
}

.section-light .feature-row,
.section-paper .feature-row {
  border-color: rgba(20,23,19,0.1);
}

.feature-row:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.86fr);
}

.feature-row:nth-child(even) .feature-copy {
  order: 2;
}

.feature-kicker {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-copy h2,
.feature-copy h3 {
  margin: 14px 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 0.98;
}

.feature-copy p {
  margin: 18px 0 0;
  max-width: 590px;
  color: rgba(247,244,236,0.64);
  line-height: 1.65;
}

.section-light .feature-copy p,
.section-paper .feature-copy p {
  color: var(--muted-dark);
}

.feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.feature-detail-list {
  margin-top: 22px;
}

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

.feature-jump-card {
  min-height: 208px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255,255,255,0.52);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.feature-jump-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18,107,70,0.34);
  background: rgba(255,255,255,0.68);
}

.feature-jump-card span {
  width: fit-content;
  padding: 7px 9px;
  border-radius: var(--radius);
  color: var(--accent-2);
  background: rgba(54,201,133,0.12);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 900;
}

.feature-jump-card strong {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.feature-jump-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.feature-visual {
  min-height: 360px;
  position: relative;
}

.dashboard-mock {
  min-height: 360px;
  padding: 16px;
}

.section-light .dashboard-mock,
.section-paper .dashboard-mock,
.section-light .mini-dashboard,
.section-paper .mini-dashboard,
.section-light .review-flow,
.section-paper .review-flow {
  color: var(--ink);
  border-color: var(--line-dark);
  background: rgba(255,255,255,0.42);
  box-shadow: none;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(247,244,236,0.08);
}

.section-light .dash-head,
.section-paper .dash-head {
  border-color: var(--line-dark);
}

.dash-head strong {
  font-family: "Syne", sans-serif;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.dash-card {
  min-height: 104px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(247,244,236,0.055);
}

.section-light .dash-card,
.section-paper .dash-card,
.section-light .event-row,
.section-paper .event-row,
.section-light .review-step,
.section-paper .review-step {
  background: rgba(20,23,19,0.055);
}

.dash-card span {
  color: rgba(247,244,236,0.52);
  font-size: 0.8rem;
}

.section-light .dash-card span,
.section-paper .dash-card span,
.section-light .event-row span,
.section-paper .event-row span {
  color: rgba(20,23,19,0.58);
}

.dash-card strong {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 1.6rem;
}

.event-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.event-row {
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: rgba(247,244,236,0.045);
}

.section-light .event-row,
.section-paper .event-row {
  color: var(--ink);
}

.review-flow {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
}

.review-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(247,244,236,0.055);
}

.review-step strong {
  display: block;
  margin-bottom: 4px;
}

.review-step p {
  margin: 0;
  color: rgba(247,244,236,0.58);
  line-height: 1.45;
}

.section-light .review-step p,
.section-paper .review-step p {
  color: var(--muted-dark);
}

.step-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #06130c;
  background: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.feature-card.large {
  grid-row: span 2;
}

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

.price-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  min-height: 600px;
  padding: 24px;
}

.price-card.recommended {
  border-color: rgba(54,201,133,0.42);
  background: linear-gradient(180deg, rgba(54,201,133,0.14), rgba(247,244,236,0.045));
}

.section-light .price-card.recommended,
.section-paper .price-card.recommended {
  background: linear-gradient(180deg, rgba(54,201,133,0.18), rgba(255,255,255,0.46));
}

.price-label {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.35rem, 4.3vw, 4.4rem);
  line-height: 0.9;
  font-weight: 800;
}

.price small {
  display: block;
  margin-top: 8px;
  color: rgba(247,244,236,0.56);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.section-light .price small,
.section-paper .price small {
  color: var(--muted-dark);
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.4);
}

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

.comparison th {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
}

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

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

.process-step {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.process-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  color: #06130c;
  background: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-weight: 900;
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline-strip div {
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid rgba(247,244,236,0.1);
}

.timeline-strip div:last-child {
  border-right: 0;
}

.timeline-strip strong {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
}

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

.simple-step {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(255,255,255,0.52);
}

.simple-step span {
  width: fit-content;
  padding: 7px 9px;
  border-radius: 9px;
  color: #0d6d46;
  background: rgba(54,201,133,0.12);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
}

.simple-step h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.simple-step p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.55;
}

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

.trade-tile {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}

.trade-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(54,201,133,0.34);
}

.trade-tile strong {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
}

.trade-tile span {
  color: rgba(247,244,236,0.58);
  font-size: 0.9rem;
}

.section-light .trade-tile span,
.section-paper .trade-tile span {
  color: var(--muted-dark);
}

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

.niche-group {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.5);
}

.niche-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.12;
}

.niche-group p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.55;
}

.demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.section-runner .demo-panel {
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1.05fr);
  gap: 22px;
}

.form-panel {
  padding: 22px;
}

.quote-trigger-card {
  align-self: start;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

label {
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(247,244,236,0.12);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(247,244,236,0.045);
  outline: none;
  transition: border-color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
}

textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.section-light input,
.section-light select,
.section-light textarea,
.section-paper input,
.section-paper select,
.section-paper textarea {
  color: var(--ink);
  border-color: rgba(20,23,19,0.16);
  background: rgba(255,255,255,0.55);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(54,201,133,0.56);
  background: rgba(54,201,133,0.07);
  box-shadow: 0 0 0 4px rgba(54,201,133,0.1);
}

option {
  color: var(--ink);
}

.form-message,
.demo-status {
  min-height: 22px;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
}

.mini-dashboard {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius);
  background: rgba(247,244,236,0.045);
}

.mini-dashboard.is-fired .event-row:nth-child(1),
.mini-dashboard.is-fired .event-row:nth-child(2),
.mini-dashboard.is-fired .event-row:nth-child(3) {
  animation: eventIn 600ms var(--ease) forwards;
}

.mini-dashboard .event-row {
  opacity: 0.42;
}

.quote-flow-board {
  min-height: 100%;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius-lg);
  color: var(--text);
  background: rgba(247,244,236,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

.section-light .quote-flow-board,
.section-paper .quote-flow-board {
  color: var(--ink);
  border-color: var(--line-dark);
  background: rgba(255,255,255,0.48);
  box-shadow: none;
}

.flow-topline,
.flow-result,
.flow-step,
.message-preview,
.follow-up-strip {
  min-width: 0;
}

.flow-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.flow-topline strong {
  min-width: 0;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.flow-live {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(54,201,133,0.28);
  border-radius: var(--radius);
  color: var(--accent-2);
  background: rgba(54,201,133,0.11);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: end;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(20,23,19,0.055);
}

.flow-result span,
.flow-lead-card span,
.message-preview small {
  color: rgba(20,23,19,0.58);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-result strong {
  color: var(--accent-2);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.9;
  text-align: right;
}

.flow-result p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.45;
}

.flow-lead-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(20,23,19,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.42);
}

.flow-lead-card strong {
  font-size: 1.2rem;
}

.flow-lead-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.flow-timeline {
  display: grid;
  gap: 9px;
}

.flow-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(20,23,19,0.1);
  border-radius: var(--radius);
  background: rgba(20,23,19,0.04);
  opacity: 0.58;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease);
}

.flow-step.is-active,
.flow-step.is-complete {
  opacity: 1;
}

.flow-step.is-active {
  border-color: rgba(18,107,70,0.38);
  background: rgba(54,201,133,0.12);
  transform: translateY(-2px);
}

.flow-marker {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  color: var(--muted-dark);
  background: rgba(20,23,19,0.08);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-step.is-active .flow-marker,
.flow-step.is-complete .flow-marker {
  color: #06130c;
  background: var(--accent);
}

.flow-step strong {
  display: block;
  margin-bottom: 4px;
}

.flow-step p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.42;
}

.flow-step small {
  justify-self: end;
  min-width: 66px;
  padding: 6px 8px;
  border-radius: var(--radius);
  color: var(--muted-dark);
  background: rgba(20,23,19,0.06);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.flow-step.is-active small,
.flow-step.is-complete small {
  color: var(--accent-2);
  background: rgba(54,201,133,0.12);
}

.message-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.message-preview {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 148px;
  padding: 14px;
  border: 1px solid rgba(20,23,19,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.46);
  opacity: 0.46;
  transform: translateY(8px);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease), border-color 260ms var(--ease);
}

.message-preview.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(18,107,70,0.28);
}

.message-preview strong {
  font-size: 1rem;
}

.message-preview p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.follow-up-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  opacity: 0.46;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.follow-up-strip.is-active {
  opacity: 1;
}

.follow-up-strip span {
  display: grid;
  min-height: 38px;
  place-items: center;
  padding: 8px;
  border-radius: var(--radius);
  color: var(--accent-2);
  background: rgba(54,201,133,0.12);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

@keyframes eventIn {
  from { opacity: 0.42; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: 28px;
}

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

.faq-card {
  padding: 0;
  overflow: hidden;
}

.faq-card summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
  list-style: none;
}

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

.faq-card p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(247,244,236,0.62);
  line-height: 1.58;
}

.section-light .faq-card p,
.section-paper .faq-card p {
  color: var(--muted-dark);
}

.page-hero {
  padding: clamp(64px, 9vw, 118px) 0 clamp(50px, 7vw, 82px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.page-title {
  margin: 18px 0 0;
  max-width: 860px;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 6.6vw, 6.2rem);
  line-height: 0.95;
  text-wrap: balance;
  overflow-wrap: normal;
}

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

.metric-card {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
}

.metric-card strong {
  color: var(--accent);
  font-family: "Syne", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

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

.page-card {
  min-height: 230px;
  padding: 24px;
}

.legal-copy {
  max-width: 820px;
  color: var(--muted-dark);
  line-height: 1.72;
}

.legal-copy h2 {
  margin-top: 34px;
  color: var(--ink);
  font-family: "Syne", sans-serif;
}

.footer {
  padding: 42px 0 30px;
  color: rgba(247,244,236,0.62);
  background: var(--coal);
  border-top: 1px solid rgba(247,244,236,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(247,244,236,0.08);
  color: rgba(247,244,236,0.4);
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }

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

@media (max-width: 1040px) {
  .hero-grid,
  .proof-grid,
  .system-map,
  .reel-grid,
  .feature-row,
  .feature-row:nth-child(even),
  .demo-panel,
  .faq-grid,
  .page-hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-copy {
    order: 0;
  }

  .system-map {
    gap: 14px;
  }

  .map-core {
    min-height: 220px;
  }

  .price-grid,
  .process-grid,
  .metric-grid,
  .simple-flow {
    grid-template-columns: 1fr;
  }

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

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

  .case-panel {
    grid-template-columns: 1fr;
  }

  .example-showcase-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

  .section-runner .demo-panel {
    grid-template-columns: 1fr;
  }
}

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

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

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 10px;
    border: 1px solid rgba(247,244,236,0.1);
    border-radius: 14px;
    background: rgba(16,19,18,0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    width: 100%;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .headline {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .hero-actions,
  .split-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-proof,
  .dash-grid,
  .feature-grid,
  .page-grid,
  .footer-grid,
  .timeline-strip {
    grid-template-columns: 1fr;
  }

  .system-visual {
    min-height: 470px;
  }

  .browser-mock {
    top: 0;
    right: 0;
    width: 100%;
    min-height: 270px;
    transform: rotate(-1deg);
  }

  .chat-widget-mock {
    right: 12px;
    bottom: 12px;
    width: min(190px, calc(100% - 24px));
  }

  .chat-bubble {
    padding: 10px;
  }

  .chat-bubble p {
    display: none;
  }

  .phone-mock {
    left: 14px;
    top: 96px;
    width: 218px;
    min-height: 430px;
  }

  .phone-screen {
    min-height: 405px;
  }

  .phone-checks {
    margin-top: 54px;
  }

  .metric-float {
    right: 0;
    bottom: 18px;
    width: 172px;
    padding: 14px;
  }

  .metric-float strong {
    font-size: 1.85rem;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-title,
  .page-title {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .case-image {
    min-height: 260px;
  }

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

  .feature-jump-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
    font-size: 0.76rem;
  }

  .nav {
    padding-top: 8px;
  }

  .nav-inner {
    padding-left: 12px;
    border-radius: 12px;
  }

  .eyebrow,
  .section-label {
    font-size: 0.6rem;
    line-height: 1.2;
  }

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

  .simple-step {
    min-height: auto;
  }

  .niche-directory {
    grid-template-columns: 1fr;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .marquee {
    height: 50px;
  }

  .marquee-track {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 100%;
    gap: 0;
    padding: 0;
    animation: none;
    transform: none;
  }

  .marquee-track span {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-right: 1px solid rgba(247,244,236,0.08);
    font-size: 0.55rem;
    text-align: center;
    white-space: normal;
  }

  .marquee-track span:nth-child(n+5) {
    display: none;
  }

  .hf-toolbar {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 0.58rem;
  }

  .hf-caption-rail {
    padding: 10px 12px 12px;
  }

  .hf-caption-rail span,
  .reel-points span {
    min-height: 32px;
    font-size: 0.58rem;
  }
}

/* Readability pass: cleaner type, calmer nav, and one-product pricing. */
.brand,
.headline,
.section-title,
.page-title,
.case-content h3,
.system-panel h3,
.feature-card h3,
.price-card h3,
.single-price-card h3,
.offer-card h3,
.process-step h3,
.page-card h3,
.map-core strong,
.feature-copy h3,
.dash-head strong,
.comparison th,
.price,
.metric-card strong,
.trade-tile strong,
.legal-copy h2 {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
}

.brand {
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.nav-inner {
  display: flex;
  min-height: 62px;
  gap: 14px;
  padding: 8px 10px 8px 16px;
}

.nav-links {
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 2px;
}

.nav-links a {
  flex: 0 0 auto;
  padding: 9px 9px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.nav-actions {
  flex: 0 0 auto;
}

.nav .btn {
  min-height: 42px;
  padding: 10px 14px;
}

.headline {
  max-width: 720px;
  font-size: clamp(3.1rem, 5.9vw, 5.7rem);
  line-height: 1;
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.1vw, 4.25rem);
  line-height: 1.04;
}

.page-title {
  max-width: 780px;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  line-height: 1.02;
}

.feature-copy h3 {
  font-size: clamp(1.9rem, 3.15vw, 3.15rem);
  line-height: 1.06;
}

.case-content h3,
.system-panel h3,
.feature-card h3,
.price-card h3,
.single-price-card h3,
.offer-card h3,
.process-step h3,
.page-card h3 {
  line-height: 1.08;
}

.single-offer {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.single-price-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(54,201,133,0.34);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(54,201,133,0.16), rgba(247,244,236,0.045));
  box-shadow: 0 24px 70px rgba(3,8,5,0.26), inset 0 1px 0 rgba(255,255,255,0.04);
}

.section-light .single-price-card,
.section-paper .single-price-card {
  color: var(--ink);
  border-color: rgba(18,107,70,0.22);
  background: linear-gradient(180deg, rgba(54,201,133,0.18), rgba(255,255,255,0.58));
  box-shadow: none;
}

.single-price-card h3 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(1.85rem, 2.55vw, 2.85rem);
  line-height: 1.02;
}

.single-price-card .price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: clamp(3.05rem, 4.65vw, 5.2rem);
  line-height: 0.9;
}

.single-price-card .price small {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  padding: 7px 10px;
  border: 1px solid rgba(247,244,236,0.14);
  border-radius: 999px;
  color: rgba(247,244,236,0.9);
  background: rgba(247,244,236,0.09);
  font-size: clamp(1.08rem, 1.18vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.single-price-card .feature-list {
  gap: 8px;
}

.single-price-card .feature-list li {
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.34;
}

.setup-note {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius);
  color: rgba(247,244,236,0.72);
  background: rgba(247,244,236,0.045);
  font-weight: 800;
}

.section-light .setup-note,
.section-paper .setup-note {
  color: var(--muted-dark);
  border-color: rgba(20,23,19,0.12);
  background: rgba(255,255,255,0.45);
}

.offer-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius-lg);
  background: rgba(247,244,236,0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

.section-light .offer-card,
.section-paper .offer-card {
  color: var(--ink);
  border-color: var(--line-dark);
  background: rgba(255,255,255,0.46);
}

.offer-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

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

.offer-mini {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(247,244,236,0.055);
}

.section-light .offer-mini,
.section-paper .offer-mini {
  background: rgba(20,23,19,0.055);
}

.offer-mini span {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-mini strong {
  font-size: 1.04rem;
}

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

.addon-pill {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(247,244,236,0.1);
  border-radius: var(--radius);
  color: rgba(247,244,236,0.72);
  background: rgba(247,244,236,0.035);
}

.section-light .addon-pill,
.section-paper .addon-pill {
  color: var(--muted-dark);
  border-color: var(--line-dark);
  background: rgba(255,255,255,0.44);
}

.addon-pill strong {
  color: var(--text);
}

.section-light .addon-pill strong,
.section-paper .addon-pill strong {
  color: var(--ink);
}

@media (max-width: 1180px) {
  .nav-actions .btn-text {
    display: none;
  }
}

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

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 10px;
    border: 1px solid rgba(247,244,236,0.1);
    border-radius: 14px;
    background: rgba(16,19,18,0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    width: 100%;
    padding: 11px 12px;
  }

  .nav-links .mobile-menu-cta {
    display: inline-flex;
    width: calc(100vw - 48px);
    min-width: 100%;
    max-width: 100%;
    margin-top: 6px;
    justify-self: stretch;
    justify-content: center;
    color: #07130d;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 1040px) {
  .single-offer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .headline {
    font-size: clamp(2.45rem, 10.4vw, 4rem);
    line-height: 1.03;
  }

  .section-title,
  .page-title {
    font-size: clamp(2.05rem, 9vw, 3.35rem);
    line-height: 1.06;
  }

  .btn {
    min-height: 48px;
    padding-inline: 14px;
    white-space: normal;
  }

  .single-price-card .price {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .offer-includes-grid,
  .addon-strip {
    grid-template-columns: 1fr;
  }

  .section-runner .demo-panel {
    gap: 14px;
  }

  .quote-flow-board {
    padding: 14px;
  }

  .flow-topline {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .flow-result strong {
    text-align: left;
  }

  .flow-step {
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
  }

  .flow-step small {
    grid-column: 2;
    justify-self: start;
  }

  .message-stack {
    grid-template-columns: 1fr;
  }

  .message-preview {
    min-height: auto;
  }

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

/* Compact mobile/tablet nav fix. Keep this last so it overrides earlier nav rules. */
.nav {
  padding: clamp(8px, 1vw, 12px) 0;
}

.nav-inner {
  min-height: 54px;
  padding: 6px 8px 6px 10px;
  border-radius: 14px;
}

.brand {
  gap: 8px;
  font-size: 0.98rem;
  min-width: 0;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  font-size: 0.74rem;
}

.menu-toggle {
  position: relative;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  color: var(--text);
  font-size: 0;
  line-height: 0;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: box-shadow 140ms var(--ease), opacity 140ms var(--ease), transform 140ms var(--ease);
}

.menu-toggle::before {
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.menu-toggle::after {
  opacity: 0;
}

.menu-toggle.is-open::before {
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-open::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 980px) {
  @keyframes mobileMenuPanelIn {
    from {
      transform: translate3d(0, -4px, 0);
    }

    to {
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes mobileMenuPanelOut {
    from {
      transform: translate3d(0, 0, 0);
    }

    to {
      transform: translate3d(0, -3px, 0);
    }
  }

  @keyframes mobileMenuItemIn {
    from {
      opacity: 0;
      transform: translate3d(0, 5px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  html.mobile-menu-open,
  body.mobile-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.mobile-menu-open {
    touch-action: none;
  }

  body.mobile-menu-open .nav {
    background: #101312;
    border-bottom: 1px solid rgba(247,244,236,0.1);
    backdrop-filter: none;
    transition: none;
  }

  body.mobile-menu-open .nav-inner {
    background: #151917;
    border-color: rgba(247,244,236,0.12);
    transition: none;
  }

  .nav {
    padding: 8px 0;
    z-index: 80;
  }

  .shell.nav-inner {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav-inner {
    position: relative;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 9px;
    border-radius: 16px;
  }

  .brand {
    max-width: calc(100vw - 104px);
    overflow: hidden;
    font-size: 0.98rem;
    text-overflow: ellipsis;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-grid !important;
    place-items: center;
    border-radius: 12px;
    background: rgba(247,244,236,0.055);
  }

  .nav-links {
    position: fixed;
    top: calc(var(--mobile-menu-top, var(--nav-reserved)) - 2px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 79;
    gap: 8px;
    padding: 18px 18px max(18px, env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid rgba(247,244,236,0.1);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(247,244,236,0.055), rgba(247,244,236,0.025)),
      #101312;
    background-color: #101312;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    animation: mobileMenuPanelIn 145ms var(--ease) both;
  }

  .nav-links.is-closing {
    display: flex;
    flex-direction: column;
    pointer-events: none;
    animation: mobileMenuPanelOut 110ms ease-in both;
  }

  .nav-links a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid rgba(247,244,236,0.08);
    border-radius: 12px;
    color: rgba(247,244,236,0.92);
    background: rgba(247,244,236,0.045);
    font-size: 1.06rem;
    line-height: 1.1;
    text-align: left;
  }

  .nav-links.is-open a {
    animation: mobileMenuItemIn 145ms var(--ease) both;
  }

  .nav-links.is-open a:nth-child(2) {
    animation-delay: 10ms;
  }

  .nav-links.is-open a:nth-child(3) {
    animation-delay: 20ms;
  }

  .nav-links.is-open a:nth-child(4) {
    animation-delay: 30ms;
  }

  .nav-links.is-open a:nth-child(5) {
    animation-delay: 40ms;
  }

  .nav-links.is-open a:nth-child(6) {
    animation-delay: 50ms;
  }

  .nav-links.is-open a::after {
    content: "->";
    color: rgba(54,201,133,0.9);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.86rem;
    letter-spacing: 0;
  }

  .nav-links a:nth-last-child(2) {
    grid-column: auto;
  }

  .nav-links .mobile-menu-cta {
    min-height: 58px;
    margin-top: auto;
    border-color: rgba(54,201,133,0.75);
    background: var(--accent);
    color: #07130d;
    justify-content: center;
    text-align: center;
  }

  .nav-links.is-open .mobile-menu-cta::after {
    content: none;
  }

  .nav-links[hidden] {
    display: none !important;
  }

  @media (prefers-reduced-motion: reduce) {
    .nav-links.is-open,
    .nav-links.is-closing,
    .nav-links.is-open a {
      animation-duration: 1ms;
      animation-delay: 0ms;
    }
  }
}

@media (max-width: 520px) {
  .shell.nav-inner {
    width: min(calc(100% - 20px), var(--max));
  }

  .nav-inner {
    min-height: 54px;
    padding: 7px 8px;
    border-radius: 13px;
  }

  .brand {
    max-width: calc(100vw - 92px);
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .menu-toggle {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }
}

/* Hero mockup containment and capability rail polish. */
.system-visual {
  isolation: isolate;
}

.marquee-track {
  width: max-content;
  max-width: none;
  overflow: visible;
}

.marquee-track span {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .system-visual {
    width: min(100%, 780px);
    min-height: 610px;
    margin-inline: auto;
  }

  .browser-mock {
    right: clamp(8px, 4vw, 28px);
    width: min(620px, 92%);
  }

  .phone-mock {
    left: clamp(18px, 6vw, 58px);
    top: 116px;
  }

  .metric-float {
    right: clamp(4px, 4vw, 34px);
  }
}

@media (max-width: 820px) {
  .system-visual {
    min-height: 560px;
    margin-top: 4px;
  }

  .browser-mock {
    min-height: 284px;
  }

  .phone-mock {
    left: clamp(8px, 3vw, 18px);
    top: 92px;
    width: min(212px, 58vw);
    min-height: 420px;
    padding: 10px;
    border-radius: 31px;
  }

  .phone-screen {
    min-height: 396px;
    border-radius: 24px;
  }

  .phone-checks {
    margin-top: 42px;
  }

  .metric-float {
    bottom: 24px;
  }
}

@media (max-width: 520px) {
  .system-visual {
    min-height: 520px;
  }

  .browser-mock {
    min-height: 256px;
  }

  .chat-widget-mock {
    right: 8px;
    bottom: 10px;
    width: min(164px, 48vw);
  }

  .chat-bubble strong {
    font-size: 0.8rem;
  }

  .phone-mock {
    left: 4px;
    top: 82px;
    width: min(194px, 54vw);
    min-height: 388px;
    border-radius: 28px;
  }

  .phone-screen {
    min-height: 366px;
    border-radius: 22px;
  }

  .phone-status,
  .phone-title {
    padding-inline: 13px;
    font-size: 0.6rem;
  }

  .sms-card {
    margin-inline: 9px;
    padding: 12px;
  }

  .sms-card small {
    font-size: 0.56rem;
  }

  .sms-card strong {
    font-size: 0.94rem;
  }

  .sms-card div {
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .phone-checks {
    gap: 8px;
    margin: 34px 12px 0;
  }

  .check-row {
    gap: 8px;
    font-size: 0.72rem;
  }

  .check-box {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

  .metric-float {
    right: 0;
    bottom: 18px;
    width: min(150px, 42vw);
    padding: 12px;
  }

  .metric-float span {
    font-size: 0.54rem;
  }

  .metric-float strong {
    font-size: 1.55rem;
  }

  .marquee-track {
    width: 100%;
    max-width: 100%;
  }

  .marquee-track span {
    flex: initial;
  }
}

/* Keep the runnable system close to the first viewport on larger screens. */
@media (min-width: 821px) {
  .hero {
    min-height: calc(100dvh - var(--nav-reserved) - 44px);
    align-items: center;
    padding: clamp(28px, 3.6vw, 46px) 0 28px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.86fr);
    gap: clamp(28px, 3.8vw, 56px);
  }

  .headline {
    max-width: 840px;
    margin-top: 20px;
    font-size: clamp(3rem, 4.85vw, 5.05rem);
    line-height: 0.98;
  }

  .subhead {
    margin-top: 20px;
    max-width: 610px;
    line-height: 1.55;
  }

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

  .hero-proof {
    margin-top: 32px;
  }

  .proof-item {
    min-height: 70px;
  }

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

@media (min-width: 1041px) {
  #results .proof-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
    gap: 20px;
  }

  #results .case-panel {
    grid-template-columns: minmax(250px, 0.82fr) minmax(0, 0.98fr);
    gap: 18px;
    padding: 16px;
  }

  #results .case-image {
    min-height: 0;
    height: clamp(340px, 22vw, 420px);
  }

  #results .case-content {
    gap: 13px;
    padding: 10px 12px;
  }

  #results .case-list {
    gap: 8px;
  }

  #results .result-stat-strip span {
    min-height: 52px;
  }

  #results .proof-stack {
    gap: 16px;
  }

  #results .system-panel {
    min-height: 0;
    gap: 8px;
    padding: 18px;
  }

  #results .system-panel h3 {
    font-size: clamp(1.34rem, 1.55vw, 1.66rem);
    line-height: 1.1;
  }

  #results .system-panel p {
    font-size: 0.92rem;
    line-height: 1.4;
  }
}

@media (max-width: 980px) {
  :root {
    --nav-reserved: 84px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    align-items: start;
    padding: 30px 0 28px;
  }

  .hero-grid {
    gap: 24px;
  }

  .headline {
    max-width: 100%;
    margin-top: 20px;
    font-size: clamp(2.35rem, 10.4vw, 3.35rem);
    line-height: 1.04;
    text-wrap: balance;
  }

  .subhead {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(1rem, 4.35vw, 1.08rem);
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero .system-visual {
    display: none;
  }

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

  .proof-item {
    min-height: 68px;
    padding: 10px 6px;
  }

  .proof-item strong {
    font-size: 1rem;
  }

  .proof-item span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .marquee {
    height: 44px;
  }

  .marquee-track {
    padding: 12px 0;
  }
}

#niches .trade-tile {
  min-height: 132px;
}

/* Raster logo lockup. The approved logo art is a PNG, so the nav uses the image directly. */
.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(122px, 9.5vw, 142px);
  height: auto;
}

.footer .brand-logo {
  width: min(166px, 100%);
}

@media (max-width: 980px) {
  :root {
    --nav-reserved: 84px;
  }

  .brand {
    max-width: calc(100vw - 96px);
  }

  .brand-logo {
    width: 136px;
  }
}

@media (max-width: 520px) {
  :root {
    --nav-reserved: 82px;
  }

  .brand-logo {
    width: 128px;
  }
}

/* Navigation rebuild: deterministic desktop links and instant mobile drawer states. */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 140ms var(--ease), border-color 140ms var(--ease);
}

.nav.is-scrolled {
  background: rgba(16, 19, 18, 0.88);
  border-bottom-color: rgba(247,244,236,0.09);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 64px;
  align-items: center;
  gap: 16px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(247,244,236,0.09);
  border-radius: 16px;
  background: rgba(247,244,236,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.brand {
  min-width: 0;
}

.brand-logo {
  width: clamp(124px, 9vw, 142px);
}

.nav-links {
  position: static;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a {
  min-height: auto;
  width: auto;
  flex: 0 0 auto;
  align-items: center;
  padding: 9px 10px;
  border: 0;
  border-radius: var(--radius);
  color: rgba(247,244,236,0.74);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  animation: none;
  transition: color 140ms var(--ease), background 140ms var(--ease);
}

.nav-links a::after {
  content: none;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(247,244,236,0.055);
}

.nav-links .mobile-menu-cta {
  display: none;
}

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

.menu-toggle {
  display: none;
  position: relative;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(247,244,236,0.13);
  border-radius: 12px;
  color: var(--text);
  background: rgba(247,244,236,0.055);
  font-size: 0;
  line-height: 0;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: box-shadow 120ms var(--ease), opacity 120ms var(--ease), transform 120ms var(--ease);
}

.menu-toggle::before {
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.menu-toggle::after {
  opacity: 0;
}

.menu-toggle.is-open::before {
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-open::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1180px) {
  .nav-actions .btn-text {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --nav-reserved: 84px;
  }

  html.mobile-menu-open,
  body.mobile-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.mobile-menu-open {
    touch-action: none;
  }

  .nav {
    padding: 8px 0;
    background: transparent;
    transition: none;
  }

  .nav.is-scrolled {
    background: rgba(16, 19, 18, 0.88);
  }

  .nav.is-menu-open,
  .nav.is-menu-open.is-scrolled {
    background: #101312;
    border-bottom-color: rgba(247,244,236,0.1);
    backdrop-filter: none;
  }

  .shell.nav-inner {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 54px;
    gap: 10px;
    padding: 7px 9px;
    border-radius: 16px;
  }

  .nav.is-menu-open .nav-inner {
    background: #151917;
    border-color: rgba(247,244,236,0.12);
  }

  .brand {
    max-width: calc(100vw - 104px);
    overflow: hidden;
  }

  .brand-logo {
    width: 136px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-grid !important;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--mobile-menu-top, var(--nav-reserved)) - 2px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 18px 18px max(18px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(247,244,236,0.1);
    background: #101312;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    overflow-y: auto;
    overscroll-behavior: contain;
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .nav-links.is-open {
    display: flex;
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-links.is-closing {
    display: none;
  }

  .nav-links[hidden] {
    display: none !important;
  }

  .nav-links a {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 1px solid rgba(247,244,236,0.08);
    border-radius: 12px;
    color: rgba(247,244,236,0.92);
    background: rgba(247,244,236,0.045);
    font-size: 1.06rem;
    line-height: 1.1;
    text-align: left;
    animation: none;
    transition: background 120ms var(--ease), border-color 120ms var(--ease), color 120ms var(--ease);
  }

  .nav-links a:hover {
    background: rgba(247,244,236,0.07);
  }

  .nav-links.is-open a::after {
    content: "->";
    color: rgba(54,201,133,0.9);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.86rem;
    letter-spacing: 0;
  }

  .nav-links .mobile-menu-cta {
    display: flex;
    min-height: 58px;
    margin-top: auto;
    border-color: rgba(54,201,133,0.76);
    background: var(--accent);
    color: #07130d;
    justify-content: center;
    text-align: center;
  }

  .nav-links.is-open .mobile-menu-cta::after {
    content: none;
  }
}

@media (max-width: 520px) {
  :root {
    --nav-reserved: 82px;
  }

  .shell.nav-inner {
    width: min(calc(100% - 20px), var(--max));
  }

  .brand-logo {
    width: 128px;
  }

  .menu-toggle {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }
}
