:root {
  --bg: #ffffff;
  --ink: #101610;
  --ink-soft: #263126;
  --muted: #60675f;
  --muted-2: #7b8378;
  --line: rgba(16, 22, 16, .095);
  --line-soft: rgba(16, 22, 16, .065);
  --line-strong: rgba(16, 22, 16, .14);
  --green: #8ac48b;
  --green-deep: #2f6f3d;
  --green-dark: #102116;
  --container: 1120px;
  --header-width: 1180px;
  --rail-x: clamp(24px, 2.65vw, 50px);
  --section: 108px;
  --font-heading: 'Atkinson Hyperlegible Next', 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(to right,
      transparent 0,
      transparent calc(var(--rail-x) - 1px),
      var(--line-soft) calc(var(--rail-x) - 1px),
      var(--line-soft) var(--rail-x),
      transparent var(--rail-x),
      transparent calc(100% - var(--rail-x)),
      var(--line-soft) calc(100% - var(--rail-x)),
      var(--line-soft) calc(100% - var(--rail-x) + 1px),
      transparent calc(100% - var(--rail-x) + 1px)
    );
}
body.admin-bar .site-header { top: 46px; }
@media (min-width: 783px) { body.admin-bar .site-header { top: 32px; } }

.site-header,
.site-main,
.site-footer { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--green-dark);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100vw - 112px));
  margin-inline: auto;
}
.section { padding: var(--section) 0; background: transparent; }

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 80;
  pointer-events: none;
  transition: transform .34s ease, opacity .34s ease;
}
.site-header.is-hidden { transform: translateY(-112px); opacity: 0; }
.header-shell {
  width: min(var(--header-width), calc(100vw - 112px));
  height: 64px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(16, 22, 16, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 15px 45px rgba(16, 22, 16, .065);
  pointer-events: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand img { max-height: 40px; width: auto; }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 7px;
  background: var(--green-dark);
}
.brand-mark span { border-radius: 50%; border: 2px solid var(--green); }
.brand-copy strong { font-size: 18px; font-weight: 500; letter-spacing: -.025em; }
.primary-nav { justify-self: center; min-width: 0; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.nav-menu a {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav-menu a:hover { color: var(--green-deep); }
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.header-cta,
.btn--primary {
  background: var(--green-dark);
  color: #fff;
  border: 1px solid var(--green-dark);
}
.header-cta:hover,
.btn--primary:hover { transform: translateY(-2px); background: var(--green-deep); border-color: var(--green-deep); }
.btn--light { background: var(--green-dark); color: #fff; border: 1px solid var(--green-dark); }
.btn--light:hover { transform: translateY(-2px); background: var(--green-deep); border-color: var(--green-deep); }

h1, h2, h3 {
  font-family: var(--font-heading);
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: 1;
}
h1 { font-size: clamp(38px, 4.35vw, 56px); max-width: 760px; margin-inline: auto; }
h2 { font-size: clamp(30px, 3vw, 44px); }
h3 { font-size: 18px; line-height: 1.22; letter-spacing: -.035em; }
p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.58; }
small { font-size: 14px; line-height: 1.45; }

.hero {
  position: relative;
  min-height: 550px;
  padding: 154px 0 80px;
  background: transparent;
  overflow: visible;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  top: 108px;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(16,22,16,.08);
  border-radius: 3px;
  background: #fff;
  z-index: 2;
}
.hero::before { left: calc(var(--rail-x) - 6.5px); }
.hero::after { right: calc(var(--rail-x) - 6.5px); }
.hero-gridline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(to right, rgba(16,22,16,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16,22,16,.027) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(90deg, transparent 0, black 16%, black 84%, transparent 100%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; }
.hero p { max-width: 620px; margin: 22px auto 0; font-size: 17px; line-height: 1.56; }
.hero .btn { margin-top: 30px; }
.hero-note { display: block; margin-top: 18px; color: var(--muted-2); font-size: 14px; }

.dashboard-stage { padding: 0 0 88px; margin-top: -62px; }
.dashboard-wrap { perspective: 1800px; }
.dashboard-frame {
  width: min(1120px, calc(100vw - 112px));
  margin-inline: auto;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(16,22,16,.12);
  box-shadow: 0 32px 80px rgba(18, 30, 22, .13);
  background: #fff;
  transform: scale(.94);
  transform-origin: center top;
}
.dashboard-frame img { width: 100%; height: auto; }

.soft-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(16,22,16,.12);
  background: #fff;
  color: var(--ink-soft);
  box-shadow: 0 10px 26px rgba(16,22,16,.055);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.01em;
}
.soft-pill svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--green-deep);
  transform-origin: 50% 50%;
}
.soft-pill svg * { vector-effect: non-scaling-stroke; }
.soft-pill .pill-icon--rocket { animation: tlx-rocket 2.8s cubic-bezier(.45,0,.25,1) infinite; }
.soft-pill .pill-icon--check circle { transform-origin: 50% 50%; animation: tlx-ring 2.6s ease-in-out infinite; }
.soft-pill .pill-icon--chart path:last-child { stroke-dasharray: 24; stroke-dashoffset: 24; animation: tlx-chart-draw 2.8s ease-in-out infinite; }
.soft-pill .pill-icon--workflow rect { animation: tlx-node 2.7s ease-in-out infinite; }
.soft-pill .pill-icon--target circle:nth-child(2) { animation: tlx-target 2.5s ease-in-out infinite; }
.soft-pill .pill-icon--sparkles path:first-child { transform-origin: 50% 50%; animation: tlx-spark 2.6s ease-in-out infinite; }
.soft-pill .pill-icon--help { animation: tlx-pill-float 3s ease-in-out infinite; }
@keyframes tlx-rocket { 0%,100%{ transform: translate(0,0) rotate(0deg); } 45%{ transform: translate(1px,-2px) rotate(-6deg); } 70%{ transform: translate(0,0) rotate(0deg); } }
@keyframes tlx-ring { 0%,100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(.9); opacity: .65; } }
@keyframes tlx-chart-draw { 0%{ stroke-dashoffset: 24; } 45%,70%{ stroke-dashoffset: 0; } 100%{ stroke-dashoffset: -24; } }
@keyframes tlx-node { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-1.5px); } }
@keyframes tlx-target { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.35); } }
@keyframes tlx-spark { 0%,100%{ transform: scale(1) rotate(0deg); } 50%{ transform: scale(.86) rotate(8deg); } }
@keyframes tlx-pill-float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-2px); } }

.capability-strip { padding: 44px 0 86px; background: transparent; overflow: hidden; }
.capability-copy { text-align: center; margin-bottom: 26px; }
.capability-copy .soft-pill { margin-bottom: 20px; }
.capability-copy p { color: var(--ink-soft); font-size: 16px; }
.ticker {
  width: min(980px, calc(100vw - 176px));
  margin-inline: auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 26%, black 74%, transparent 100%);
}
.ticker-track { display: flex; width: max-content; gap: 14px; animation: ticker-loop 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  height: 42px;
  min-width: 158px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 15px;
  letter-spacing: -.02em;
}
.ticker-mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  opacity: .8;
  background:
    radial-gradient(circle at 50% 50%, var(--green-deep) 2px, transparent 3px),
    conic-gradient(from 0deg, var(--green) 0 12%, transparent 12% 25%, var(--green) 25% 38%, transparent 38% 50%, var(--green) 50% 62%, transparent 62% 75%, var(--green) 75% 88%, transparent 88%);
  animation: ticker-mark-spin 8s linear infinite;
}
@keyframes ticker-loop { to { transform: translateX(-50%); } }
@keyframes ticker-mark-spin { to { transform: rotate(360deg); } }

.section-head { max-width: 710px; margin-bottom: 52px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head .soft-pill { margin-bottom: 22px; }
.section-head p { margin-top: 16px; font-size: 16px; line-height: 1.58; }

.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 52px; }
.feature-card { padding: 0; min-height: 0; background: transparent; border: 0; box-shadow: none; }
.feature-media { height: 150px; overflow: hidden; border-radius: 22px; background: transparent; border: 0; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 22px; transition: transform .35s ease; }
.feature-card:hover .feature-media img { transform: scale(1.025); }
.feature-card h3 { margin-top: 20px; font-size: 18px; }
.feature-card p { margin-top: 12px; font-size: 14px; line-height: 1.55; max-width: 360px; }

.process-layout { display: grid; grid-template-columns: minmax(280px, .62fr) minmax(0, 1.35fr); gap: 76px; align-items: start; }
.process-sticky { position: sticky; top: 118px; }
.process-sticky h2 { margin-top: 24px; max-width: 440px; }
.process-tabs { display: grid; gap: 20px; margin-top: 52px; }
.process-tab { position: relative; padding-left: 24px; color: var(--muted); font-size: 18px; transition: color .22s ease, transform .22s ease; }
.process-tab::before { content: ''; position: absolute; left: 0; top: 50%; width: 2px; height: 0; border-radius: 999px; background: var(--green-deep); transform: translateY(-50%); transition: height .22s ease; }
.process-tab.is-active { color: var(--green-deep); transform: translateX(3px); }
.process-tab.is-active::before { height: 30px; }
.process-panels { display: grid; gap: 86px; }
.process-panel { min-height: auto; display: block; overflow: visible; background: transparent; border: 0; box-shadow: none; }
.panel-copy { padding: 0 0 24px; }
.panel-copy h3 { font-size: clamp(24px, 2.2vw, 30px); letter-spacing: -.045em; }
.panel-copy p { max-width: 560px; margin-top: 10px; font-size: 16px; }
.panel-visual--screen,
.ad-board,
.booking-board { margin: 0; min-height: 300px; border: 0; border-radius: 24px; background: transparent; overflow: hidden; }
.panel-visual--screen img { width: 112%; height: 100%; object-fit: cover; object-position: left top; border-radius: 24px; }
.ad-board,
.booking-board { padding: 0; }
.ad-row { display: grid; grid-template-columns: 1.2fr .8fr .5fr; gap: 16px; align-items: center; min-height: 58px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 15px; }
.ad-row strong { color: var(--ink-soft); font-weight: 500; }
.ad-row em { justify-self: start; font-style: normal; color: var(--green-deep); }
.ad-row--head { min-height: 42px; font-size: 13px; text-transform: uppercase; letter-spacing: .11em; }
.ad-chart { height: 145px; display: flex; align-items: end; gap: 24px; padding: 36px 8px 0; }
.ad-chart span { width: 42px; border-radius: 999px 999px 8px 8px; background: var(--green-deep); }
.booking-head { display: flex; justify-content: space-between; color: var(--muted); margin-bottom: 20px; }
.booking-head strong { color: var(--ink-soft); font-weight: 500; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 9px; }
.calendar-grid span { aspect-ratio: 1; display: grid; place-items: center; border-radius: 12px; color: var(--muted); background: transparent; }
.calendar-grid .is-booked { background: var(--green-deep); color: #fff; }
.booking-slot { margin-top: 24px; padding: 18px 0 0; border-top: 1px solid var(--line); color: var(--ink); }
.booking-slot span { display: block; color: var(--muted); font-size: 14px; }
.booking-slot strong { display: block; margin-top: 4px; font-weight: 500; }

.model-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; max-width: 880px; }
.model-card { min-height: 0; padding: 0; background: transparent; border: 0; box-shadow: none; }
.model-card h3 { font-size: 22px; }
.model-card p { margin-top: 16px; max-width: 410px; font-size: 16px; }
.model-card ul { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.model-card li { position: relative; padding-left: 24px; color: var(--muted); font-size: 14px; line-height: 1.38; }
.model-card li::before { content: ''; position: absolute; left: 0; top: .48em; width: 7px; height: 7px; border-radius: 50%; background: var(--green-deep); }
.model-card .btn { width: auto; margin-top: 32px; }
.btn--model { padding-inline: 28px; }


.qualify-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}
.qualify-copy { position: sticky; top: 128px; }
.qualify-copy h2 { margin-top: 22px; max-width: 460px; }
.qualify-copy p { margin-top: 16px; max-width: 420px; font-size: 16px; }
.qualify-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, auto);
  gap: 0;
  position: relative;
  overflow: hidden;
}
.qualify-tile {
  position: relative;
  min-height: 150px;
  padding: 24px 24px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.qualify-tile:nth-child(4n),
.qualify-tile:last-child { border-right: 0; }
.qualify-tile span {
  display: block;
  margin-bottom: 32px;
  color: var(--green-deep);
  font-size: 13px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 500;
}
.qualify-tile h3 { font-size: 18px; line-height: 1.2; letter-spacing: -.025em; }
.qualify-tile p { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.55; max-width: 270px; }
.qualify-tile--wide { grid-column: span 2; }
.qualify-tile--map {
  grid-row: span 2;
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(47,111,61,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(47,111,61,.08) 1px, transparent 1px);
  background-size: 46px 46px;
}
.qualify-tile--map::before,
.qualify-tile--map::after,
.map-orbit {
  content: '';
  position: absolute;
  border: 1px solid rgba(47,111,61,.16);
  border-radius: 999px;
  inset: 22%;
  animation: tlx-map-pulse 4.2s ease-in-out infinite;
}
.qualify-tile--map::after { inset: 35%; animation-delay: .7s; }
.map-orbit--one { inset: 12%; animation-delay: 1.2s; }
.map-orbit--two { inset: 47%; animation-delay: 1.7s; }
.qualify-tile--map i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 0 8px rgba(47,111,61,.08);
  animation: tlx-map-dot 2.4s ease-in-out infinite;
}
.qualify-tile--map i:nth-of-type(2) { animation-delay: .45s; }
.qualify-tile--map i:nth-of-type(3) { animation-delay: .9s; }
.qualify-tile--image { padding: 0; min-height: 150px; }
.qualify-tile--image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(.04) contrast(1.02); }
.qualify-tile--dark {
  background: var(--green-dark);
  color: #fff;
}
.qualify-tile--dark span,
.qualify-tile--dark p { color: rgba(255,255,255,.74); }
.qualify-tile--dark h3 { color: #fff; }
.tile-progress {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.tile-progress em {
  display: block;
  height: 100%;
  width: 46%;
  border-radius: inherit;
  background: var(--green);
  animation: tlx-progress 3.2s ease-in-out infinite;
}
@keyframes tlx-map-pulse { 0%,100%{ transform: scale(.96); opacity: .35; } 50%{ transform: scale(1.04); opacity: .9; } }
@keyframes tlx-map-dot { 0%,100%{ transform: scale(1); opacity: .72; } 50%{ transform: scale(1.28); opacity: 1; } }
@keyframes tlx-progress { 0%,100%{ transform: translateX(-35%); } 50%{ transform: translateX(112%); } }


.cta-section { padding-top: 64px; }
.cta-shell { display: grid; grid-template-columns: minmax(0, .95fr) minmax(280px, .58fr); gap: 72px; align-items: center; padding: 0; background: transparent; border: 0; box-shadow: none; }
.cta-copy h2 { margin-top: 22px; max-width: 540px; }
.cta-copy p { max-width: 580px; margin-top: 16px; font-size: 16px; }
.cta-copy .btn { margin-top: 30px; }
.cta-preview { height: 220px; border-radius: 24px; overflow: hidden; background: transparent; border: 0; }
.cta-preview img { width: 100%; height: 100%; object-fit: cover; object-position: left top; border-radius: 24px; }
.cta-card { display: none; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 64px; align-items: start; }
.faq-intro h2 { margin-top: 22px; }
.faq-intro p { margin-top: 16px; max-width: 360px; font-size: 14px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; color: var(--ink-soft); text-align: left; cursor: pointer; }
.faq-item button span { font-size: 16px; font-weight: 500; }
.faq-item button em { position: relative; width: 18px; height: 18px; flex: 0 0 18px; }
.faq-item button em::before,
.faq-item button em::after { content: ''; position: absolute; inset: 50% auto auto 0; width: 18px; height: 2px; background: var(--ink); transform: translateY(-50%); transition: transform .22s ease; }
.faq-item button em::after { transform: translateY(-50%) rotate(90deg); }
.faq-item.is-open button em::after { transform: translateY(-50%) rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { overflow: hidden; padding: 0 48px 0 0; font-size: 14px; line-height: 1.58; }
.faq-item.is-open .faq-answer p { padding-bottom: 22px; }

.site-footer { background: transparent; color: var(--ink); padding: 78px 0 32px; }
.footer-grid,
.footer-bottom { width: min(var(--container), calc(100vw - 112px)); margin-inline: auto; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 80px; align-items: start; }
.brand--footer { color: var(--ink); }
.footer-main h2 { max-width: 440px; margin: 28px 0 0; font-size: clamp(28px, 2.8vw, 40px); }
.footer-main p { margin-top: 16px; max-width: 420px; font-size: 14px; }
.footer-col span { display: block; color: var(--muted-2); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.footer-menu { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.footer-col a,
.footer-menu a { display: block; color: var(--ink-soft); margin-bottom: 12px; font-size: 14px; }
.footer-bottom { margin-top: 76px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }

@media (max-width: 1180px) {
  :root { --section: 92px; }
  .container,
  .footer-grid,
  .footer-bottom { width: min(var(--container), calc(100vw - 64px)); }
  .header-shell { width: calc(100vw - 64px); }
  .dashboard-frame { width: calc(100vw - 64px); }
  .ticker { width: calc(100vw - 64px); }
  .why-grid { gap: 34px; }
  .process-layout { grid-template-columns: 1fr; gap: 54px; }
  .process-sticky { position: relative; top: auto; }
  .process-tabs { margin-top: 36px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .process-tab { font-size: 16px; }
}
@media (max-width: 960px) {
  :root { --rail-x: 24px; }
  .header-shell { grid-template-columns: auto auto; justify-content: space-between; height: 62px; width: calc(100vw - 32px); }
  .primary-nav { display: none; }
  .header-cta { min-height: 42px; padding-inline: 18px; font-size: 14px; }
  .hero { min-height: 520px; padding-top: 140px; }
  .dashboard-stage { margin-top: -42px; padding-bottom: 70px; }
  .dashboard-frame { width: calc(100vw - 40px); border-radius: 22px; transform: scale(1); }
  .why-grid,
  .model-grid,
  .cta-shell,
  .faq-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .criteria-path { grid-template-columns: 1fr; gap: 0; margin-top: 42px; }
  .criteria-path::before { left: 8px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .criteria-item,
  .criteria-item:nth-child(even) { padding: 0 0 34px 42px; min-height: 0; }
  .criteria-dot { left: 0; top: 2px; }
  .criteria-item p { max-width: 420px; }
  .cta-preview { height: 190px; }
  .footer-grid { gap: 38px; }
}
@media (max-width: 700px) {
  :root { --section: 68px; --rail-x: 18px; }
  .container,
  .footer-grid,
  .footer-bottom { width: min(var(--container), calc(100vw - 32px)); }
  .hero { min-height: 500px; padding-top: 118px; padding-bottom: 58px; }
  h1 { font-size: clamp(34px, 10vw, 42px); }
  h2 { font-size: clamp(28px, 8vw, 34px); }
  .hero p { font-size: 16px; }
  .hero .btn { width: 100%; max-width: 360px; }
  .hero-note { max-width: 300px; margin-inline: auto; line-height: 1.5; }
  .capability-strip { padding-bottom: 62px; }
  .ticker { width: calc(100vw - 32px); mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%); }
  .ticker-item { min-width: 145px; font-size: 14px; }
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature-media { height: 170px; }
  .process-tabs { grid-template-columns: 1fr; }
  .panel-visual--screen,
  .ad-board,
  .booking-board { min-height: 260px; }
  .ad-row { grid-template-columns: 1fr; gap: 6px; padding: 12px 0; }
  .ad-row--head { display: none; }
  .calendar-grid { gap: 6px; }
  .calendar-grid span { border-radius: 9px; font-size: 13px; }
  .model-grid { gap: 46px; }
  .cta-shell { gap: 38px; }
  .cta-copy .btn { width: 100%; }
  .faq-answer p { padding-right: 0; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Qualifix overrides */
.btn--model { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.btn--model:hover { background: var(--green-deep); border-color: var(--green-deep); }

@media (max-width: 1180px) {
  .ticker { width: calc(100vw - 96px); mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 80%, transparent 100%); }
}
@media (max-width: 960px) {
  .qualify-layout { grid-template-columns: 1fr; gap: 44px; }
  .qualify-copy { position: relative; top: auto; }
  .qualify-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qualify-tile:nth-child(4n) { border-right: 1px solid var(--line); }
  .qualify-tile:nth-child(2n) { border-right: 0; }
}
@media (max-width: 700px) {
  .ticker { width: calc(100vw - 40px); mask-image: linear-gradient(90deg, transparent 0%, black 16%, black 84%, transparent 100%); }
  .qualify-board { grid-template-columns: 1fr; }
  .qualify-tile,
  .qualify-tile:nth-child(4n),
  .qualify-tile:nth-child(2n) { border-right: 0; }
  .qualify-tile--wide { grid-column: auto; }
  .qualify-tile--map { grid-row: auto; min-height: 220px; }
}


/* Patch: restore CTA section to the global-clean version. Do not affect other sections. */
.cta-section { padding-top: 30px !important; }
.cta-shell {
  display: block !important;
  max-width: 720px !important;
  margin-inline: auto !important;
  text-align: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.cta-copy { max-width: 720px !important; margin-inline: auto !important; }
.cta-copy h2 {
  margin-top: 22px !important;
  max-width: 640px !important;
  margin-inline: auto !important;
}
.cta-copy p {
  max-width: 620px !important;
  margin-inline: auto !important;
  margin-top: 16px !important;
  font-size: 16px !important;
}
.cta-copy .btn { margin-top: 32px !important; }
.cta-preview { display: none !important; }
@media (max-width: 720px) {
  .cta-shell { text-align: left !important; }
  .cta-copy h2,
  .cta-copy p { margin-inline: 0 !important; }
}
