:root {
  --ink: #102119;
  --ink-soft: #1c3026;
  --paper: #f5f4ec;
  --paper-deep: #e9e9df;
  --white: #fffef8;
  --lime: #d8ff45;
  --lime-soft: #eaff97;
  --blue: #4869ff;
  --blue-soft: #dfe5ff;
  --coral: #ff7664;
  --teal: #00a884;
  --blue-panel: #e8ecff;
  --teal-panel: #e8f7ef;
  --coral-panel: #fff0e8;
  --teal-soft: #dcf8ed;
  --coral-soft: #ffe3dc;
  --muted: #617067;
  --line: #ccd2c8;
  --line-dark: rgba(255, 255, 255, 0.17);
  --shadow: 0 28px 80px rgba(16, 33, 25, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1200px;
}

:root[data-palette="turquoise"] {
  --ink: #071b19;
  --ink-soft: #12312d;
  --paper: #f3f5ef;
  --paper-deep: #e3ebe6;
  --lime: #d6ff4f;
  --lime-soft: #eaff99;
  --blue: #008f83;
  --blue-soft: #d7f4ef;
  --coral: #ff806c;
  --teal: #12b99f;
  --blue-panel: #d9f5f0;
  --teal-panel: #e1f6e9;
  --coral-panel: #fff0ea;
  --teal-soft: #d7f4e5;
  --coral-soft: #ffe2da;
  --muted: #5b7069;
  --line: #c6d4ce;
  --shadow: 0 28px 80px rgba(7, 27, 25, 0.15);
}

:root[data-palette="editorial"] {
  --ink: #0d0e0d;
  --ink-soft: #1d1f1e;
  --paper: #f4f2eb;
  --paper-deep: #e5e3dc;
  --lime: #d9dbd6;
  --lime-soft: #f3f2ec;
  --blue: #252826;
  --blue-soft: #dfe0dc;
  --coral: #777c78;
  --teal: #4d5751;
  --blue-panel: #e2e2de;
  --teal-panel: #ecece7;
  --coral-panel: #d7d8d4;
  --teal-soft: #dedfdb;
  --coral-soft: #c9cbc7;
  --muted: #646864;
  --line: #c8cac6;
  --shadow: 0 28px 80px rgba(13, 14, 13, 0.14);
}

:root[data-palette="aurora"] {
  --ink: #0d1a2b;
  --ink-soft: #172b40;
  --paper: #f4f3ef;
  --paper-deep: #e5e7e7;
  --lime: #bfff6a;
  --lime-soft: #dcffa4;
  --blue: #665cf6;
  --blue-soft: #e1dfff;
  --coral: #ff7fa7;
  --teal: #0ab9aa;
  --blue-panel: #e7e4ff;
  --teal-panel: #def6f1;
  --coral-panel: #ffe7ef;
  --teal-soft: #d8f3ee;
  --coral-soft: #ffe0ea;
  --muted: #63717c;
  --line: #cbd1d4;
  --shadow: 0 28px 80px rgba(13, 26, 43, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(16, 33, 25, 0.1);
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  box-shadow: 0 8px 30px rgba(16, 33, 25, 0.05);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  box-shadow: 0 7px 18px rgba(5, 8, 7, 0.16);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav > a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 11px 18px;
  transition: transform 180ms ease, background-color 180ms ease;
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(16, 33, 25, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 96px;
}

.hero-grid-pattern,
.final-cta-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image: radial-gradient(rgba(16, 33, 25, 0.18) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -220px;
  width: 740px;
  height: 740px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.48;
  filter: blur(2px);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 6%;
  left: -190px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--blue-soft);
  filter: blur(4px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(500px, 0.94fr);
  align-items: center;
  gap: clamp(48px, 6vw, 94px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--blue) 13%, transparent);
}

.eyebrow-dark > span { background: var(--teal); box-shadow: 0 0 0 5px color-mix(in srgb, var(--teal) 12%, transparent); }
.eyebrow-light { color: rgba(255, 255, 255, 0.72); }
.eyebrow-light > span { background: var(--lime); box-shadow: 0 0 0 5px color-mix(in srgb, var(--lime) 13%, transparent); }

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(54px, 5.45vw, 82px);
  font-weight: 700;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: var(--blue);
  font-style: normal;
  font-weight: 500;
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 21px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(16, 33, 25, 0.17);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--blue) 24%, transparent);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.button-lime:hover,
.button-lime:focus-visible {
  background: var(--lime-soft);
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
  font-size: 15px;
}

.text-link {
  color: var(--ink);
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-product {
  position: relative;
}

/* Premium tilt-shift hero, used by the main video hero and concept page. */
.tiltshift-variant .hero-grid,
.hero-video-variant .hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.04fr);
  gap: clamp(36px, 4.4vw, 70px);
}

.hero-product-tiltshift {
  min-width: 0;
  margin: 0;
  isolation: isolate;
}

.tiltshift-frame {
  position: relative;
  width: 124%;
  margin: -4% -17% -2% -7%;
}

.tiltshift-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 14%;
  right: 6%;
  width: 66%;
  height: 70%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--blue) 22%, transparent);
  filter: blur(36px);
}

.tiltshift-frame img,
.tiltshift-frame video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.025);
  -webkit-mask-image: radial-gradient(ellipse 76% 72% at 50% 50%, #000 57%, rgba(0, 0, 0, 0.96) 73%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 72% at 50% 50%, #000 57%, rgba(0, 0, 0, 0.96) 73%, transparent 100%);
}

.tiltshift-frame video {
  background: transparent;
}

.tiltshift-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(16, 33, 25, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 7%;
  right: 9%;
  width: 42%;
  aspect-ratio: 1;
}

.orbit-two {
  bottom: 9%;
  left: 9%;
  width: 24%;
  aspect-ratio: 1;
}

.tiltshift-model-label {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: 9%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(16, 33, 25, 0.11);
  border-radius: 999px;
  background: rgba(255, 254, 248, 0.78);
  box-shadow: 0 10px 30px rgba(16, 33, 25, 0.08);
  padding: 8px 11px;
  color: rgba(16, 33, 25, 0.7);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.tiltshift-model-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--lime) 20%, transparent);
}

.hero-motion-toggle {
  position: absolute;
  z-index: 5;
  right: 9%;
  bottom: 15%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 84%, transparent);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--ink) 10%, transparent);
  color: var(--ink);
  cursor: pointer;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, background-color 160ms ease;
}

.hero-motion-toggle:hover,
.hero-motion-toggle:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
  outline: none;
}

.tiltshift-flow {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: -7%;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.tiltshift-flow span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(16, 33, 25, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 248, 0.72);
  padding: 5px 7px;
}

.tiltshift-flow span i {
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 6px;
  font-style: normal;
}

.tiltshift-flow b {
  color: var(--teal);
  font-size: 9px;
  font-weight: 500;
}

.tiltshift-variant .system-card .system-visual {
  border: 1px solid rgba(16, 33, 25, 0.08);
  background-color: #f1eee7;
  background-image: url("/assets/hero-tiltshift-humans-v3-960.webp");
  background-repeat: no-repeat;
  box-shadow: inset 0 0 50px rgba(255, 254, 248, 0.48);
}

.tiltshift-variant .system-visual > * {
  display: none;
}

.tiltshift-variant .system-visual::before {
  content: "Spatial system detail";
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  border: 1px solid rgba(16, 33, 25, 0.1);
  border-radius: 999px;
  background: rgba(255, 254, 248, 0.82);
  padding: 5px 7px;
  color: rgba(16, 33, 25, 0.58);
  font-family: "DM Mono", monospace;
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.tiltshift-variant .system-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 45%, rgba(16, 33, 25, 0.04));
}

.tiltshift-variant .system-card-signal .system-visual {
  background-position: 3% 30%;
  background-size: 215% auto;
}

.tiltshift-variant .system-card-signal .system-visual::before {
  content: "Market change → Prioritized signal";
}

.tiltshift-variant .system-card-source .system-visual {
  background-position: 100% 72%;
  background-size: 225% auto;
}

.tiltshift-variant .system-card-source .system-visual::before {
  content: "Job order → Ranked shortlist";
}

.tiltshift-variant .system-card-workflow .system-visual {
  background-position: 57% 54%;
  background-size: 195% auto;
}

.tiltshift-variant .system-card-workflow .system-visual::before {
  content: "Trigger → Review → Approved action";
}

.workflow-io {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(16, 33, 25, 0.09);
  border-radius: 12px;
  background: #f0f1eb;
  margin-top: 20px;
  padding: 10px;
}

.workflow-io span {
  min-width: 0;
}

.workflow-io small,
.workflow-io strong {
  display: block;
}

.workflow-io small {
  margin-bottom: 3px;
  color: var(--teal);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.workflow-io strong {
  color: #445148;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.workflow-io > i {
  color: var(--teal);
  font-size: 11px;
  font-style: normal;
}

.workflow-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.product-shadow {
  position: absolute;
  z-index: 1;
  right: -18px;
  bottom: -18px;
  width: 68%;
  height: 84%;
  border-radius: 28px;
  background: var(--blue);
  opacity: 0.95;
}

.window-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line-dark);
  padding: 0 20px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--lime) 10%, transparent), 0 0 16px color-mix(in srgb, var(--lime) 70%, transparent);
}

.window-label {
  color: rgba(255, 255, 255, 0.42);
}

.workflow-stage {
  padding: 22px 22px 14px;
}

.stage-label,
.mono-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.stage-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.stage-label span {
  color: var(--lime);
}

.signal-list {
  display: grid;
  gap: 9px;
}

.signal-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
}

.signal-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--blue);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}

.signal-card-lime .signal-icon { background: var(--lime); color: var(--ink); }
.signal-card-coral .signal-icon { background: var(--coral); color: var(--ink); }

.signal-card p {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.43);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-time {
  color: rgba(255, 255, 255, 0.34);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.workflow-connector {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.workflow-connector::before,
.workflow-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 7px;
  background: rgba(255, 255, 255, 0.22);
}

.workflow-connector::before { top: 0; }
.workflow-connector::after { bottom: 0; }

.workflow-connector span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
  animation: connector-pulse 1.8s infinite ease-in-out;
}

.workflow-connector span:nth-child(2) { animation-delay: 0.2s; }
.workflow-connector span:nth-child(3) { animation-delay: 0.4s; }

@keyframes connector-pulse {
  0%, 100% { opacity: 0.25; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1); }
}

.workflow-result {
  margin: 0 22px 22px;
  border-radius: 15px;
  background: var(--white);
  color: var(--ink);
  padding: 18px;
}

.result-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.workflow-result .mono-label {
  color: var(--teal);
}

.result-topline h2 {
  margin: 5px 0 0;
  font-size: 18px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.result-count {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 15px;
  font-weight: 500;
}

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

.result-actions span {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 7px;
  background: #eef0e8;
  padding: 7px;
  color: #536158;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.25;
}

.check {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
}

.approval-row {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #e4e7df;
  margin-top: 13px;
  padding-top: 13px;
}

.approval-avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.approval-row strong,
.approval-row small {
  display: block;
  line-height: 1.35;
}

.approval-row strong { font-size: 9px; }
.approval-row small { color: #7a847d; font-size: 8px; }

.approval-badge {
  border-radius: 99px;
  background: color-mix(in srgb, var(--teal) 10%, transparent);
  color: color-mix(in srgb, var(--teal) 72%, var(--ink));
  padding: 4px 8px;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.client-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(16, 33, 25, 0.1);
  border-bottom: 1px solid rgba(16, 33, 25, 0.1);
  background: rgba(255, 254, 248, 0.55);
}

.client-strip-inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 2fr);
  align-items: center;
  gap: 42px;
}

.client-strip p {
  margin: 0;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.55;
  text-transform: uppercase;
}

.client-strip ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-strip li {
  color: #536158;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.section {
  padding: 128px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 66px;
}

.section-heading h2,
.model-copy h2,
.ownership-intro h2,
.recruiter-statement h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.section-heading > p,
.model-copy > p,
.ownership-intro > p,
.recruiter-copy,
.final-cta-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.system-card {
  position: relative;
  display: flex;
  min-height: 630px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 248, 0.72);
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.system-card:hover {
  transform: translateY(-7px);
  border-color: rgba(16, 33, 25, 0.25);
  box-shadow: 0 24px 60px rgba(16, 33, 25, 0.1);
}

.system-number {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.system-visual {
  position: relative;
  height: 198px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--blue-panel);
  margin-bottom: 28px;
}

.system-card-source .system-visual { background: var(--teal-panel); }
.system-card-workflow .system-visual { background: var(--coral-panel); }

.radar {
  position: relative;
  width: 148px;
  height: 148px;
  overflow: hidden;
  border-radius: 50%;
  background: color-mix(in srgb, var(--blue) 9%, transparent);
}

.radar::before,
.radar::after,
.radar-ring {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid color-mix(in srgb, var(--blue) 28%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar::before { width: 1px; height: 100%; border: 0; border-left: 1px solid color-mix(in srgb, var(--blue) 25%, transparent); border-radius: 0; }
.radar::after { width: 100%; height: 1px; border: 0; border-top: 1px solid color-mix(in srgb, var(--blue) 25%, transparent); border-radius: 0; }
.radar-ring-one { width: 48px; height: 48px; }
.radar-ring-two { width: 94px; height: 94px; }
.radar-ring-three { width: 140px; height: 140px; }

.radar-sweep {
  position: absolute;
  inset: 50% 50% 0 0;
  transform-origin: 100% 0;
  background: linear-gradient(42deg, transparent 40%, color-mix(in srgb, var(--blue) 45%, transparent));
  animation: radar-spin 4.5s linear infinite;
}

@keyframes radar-spin {
  to { transform: rotate(360deg); }
}

.radar-point {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 20%, transparent);
}

.radar-point.p1 { top: 35px; left: 88px; }
.radar-point.p2 { top: 91px; left: 38px; }
.radar-point.p3 { top: 108px; left: 100px; }

.profile-stack {
  position: relative;
  width: 190px;
  height: 142px;
}

.mini-profile {
  position: absolute;
  width: 128px;
  height: 94px;
  border: 1px solid rgba(16, 33, 25, 0.12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(16, 33, 25, 0.08);
  padding: 15px;
}

.mini-profile span {
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--teal);
  margin-bottom: 11px;
}

.mini-profile i {
  display: block;
  width: 72%;
  height: 5px;
  border-radius: 9px;
  background: #dbe4df;
  margin-top: 6px;
}

.mini-profile i:nth-of-type(2) { width: 48%; }
.profile-back { top: 0; right: 0; transform: rotate(7deg); opacity: 0.62; }
.profile-mid { top: 22px; left: 0; transform: rotate(-7deg); opacity: 0.78; }
.profile-front { right: 20px; bottom: 0; }

.profile-front b {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.workflow-visual {
  display: block;
  padding: 56px 24px;
}

.flow-node {
  position: absolute;
  z-index: 2;
  min-width: 64px;
  border: 1px solid rgba(16, 33, 25, 0.13);
  border-radius: 99px;
  background: var(--white);
  padding: 9px 12px;
  text-align: center;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.node-one { top: 35px; left: 27px; }
.node-two { top: 84px; left: 50%; transform: translateX(-50%); background: var(--coral); }
.node-three { right: 27px; bottom: 32px; background: var(--lime); }

.flow-line {
  position: absolute;
  z-index: 1;
  width: 93px;
  height: 1px;
  transform-origin: left center;
  background: rgba(16, 33, 25, 0.35);
}

.flow-line::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.line-one { top: 70px; left: 84px; transform: rotate(18deg); }
.line-two { top: 119px; left: 54%; transform: rotate(23deg); }

.card-kicker {
  margin: 0 0 7px;
  color: var(--teal);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.system-card h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.system-card > p:not(.card-kicker) {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.system-card > ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  color: #3c4c42;
  font-size: 12px;
  font-weight: 700;
}

.system-card > li { margin: 0; }

.system-card > ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.system-card > ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
}

.system-card-source > ul li::before { background: var(--teal); }
.system-card-workflow > ul li::before { background: var(--coral); }

.system-card > a {
  margin-top: auto;
  color: var(--ink);
  text-underline-offset: 5px;
  font-size: 12px;
  font-weight: 800;
}

.system-card > a:hover,
.system-card > a:focus-visible {
  color: var(--blue);
}

.product-tour {
  position: relative;
  overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--blue) 13%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--blue) 13%, transparent);
  background: var(--blue-panel);
}

.product-tour::before,
.product-tour::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.product-tour::before {
  top: -340px;
  right: -220px;
  width: 660px;
  height: 660px;
  background: color-mix(in srgb, var(--lime) 68%, transparent);
}

.product-tour::after {
  bottom: 8%;
  left: -280px;
  width: 520px;
  height: 520px;
  background: color-mix(in srgb, var(--blue) 13%, transparent);
  filter: blur(3px);
}

.product-tour .container {
  position: relative;
  z-index: 1;
}

.tour-heading > p {
  color: color-mix(in srgb, var(--ink) 69%, transparent);
}

.tour-stage {
  overflow: hidden;
  border: 1px solid rgba(16, 33, 25, 0.24);
  border-radius: 26px;
  background: #09140f;
  box-shadow: 0 30px 90px rgba(16, 33, 25, 0.2);
}

.tour-stage-bar {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.tour-stage-bar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.tour-stage-bar i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(216, 255, 69, 0.12);
}

.tour-stage-bar strong {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
}

.tour-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #07100c;
  object-fit: contain;
}

.tour-video:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: -3px;
}

.tour-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.tour-proof {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 25, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 248, 0.84);
  box-shadow: 0 20px 52px rgba(16, 33, 25, 0.09);
}

.tour-proof-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(16, 33, 25, 0.12);
  background: var(--paper-deep);
}

.tour-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.tour-proof:hover .tour-proof-image img {
  transform: scale(1.018);
}

.tour-proof figcaption {
  padding: 25px 27px 29px;
}

.tour-proof figcaption > span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tour-proof figcaption > strong {
  display: block;
  font-size: clamp(20px, 2.2vw, 27px);
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.tour-proof figcaption > p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.operating-model {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 100px;
}

.model-copy {
  position: sticky;
  top: 132px;
}

.model-copy h2 {
  max-width: 520px;
}

.model-copy > p {
  max-width: 530px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.62);
}

.model-copy .button {
  margin-top: 34px;
}

.model-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: model;
}

.model-steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--line-dark);
  padding: 31px 0 36px;
}

.model-steps li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.step-label {
  margin: 0 0 6px;
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.model-steps h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.model-steps div > p:last-child {
  max-width: 470px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.7;
}

.step-status {
  border: 1px solid color-mix(in srgb, var(--lime) 30%, transparent);
  border-radius: 99px;
  color: color-mix(in srgb, var(--lime) 78%, transparent);
  padding: 5px 8px;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ownership {
  background: var(--blue-soft);
}

.ownership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1fr);
  align-items: center;
  gap: 100px;
}

.ownership-intro > p {
  max-width: 570px;
  margin-top: 28px;
}

.ownership-seal {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(16, 33, 25, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  margin-top: 34px;
  padding: 13px 16px;
}

.seal-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 15px;
  font-weight: 800;
}

.ownership-seal strong,
.ownership-seal small {
  display: block;
  line-height: 1.4;
}

.ownership-seal strong { font-size: 12px; }
.ownership-seal small { color: var(--muted); font-size: 9px; }

.ownership-table {
  overflow: hidden;
  border: 1px solid rgba(16, 33, 25, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 24px 70px color-mix(in srgb, var(--blue) 12%, transparent);
}

.ownership-row {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #e2e5df;
  padding: 23px 25px;
}

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

.ownership-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.ownership-row strong {
  display: block;
  font-size: 13px;
}

.ownership-row p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.engagement {
  background: var(--white);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: var(--line);
}

.timeline article {
  position: relative;
  z-index: 2;
  border-right: 1px solid var(--line);
  padding: 0 28px 0 0;
  margin-right: 28px;
}

.timeline article:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}

.timeline-marker {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
}

.timeline article:nth-child(1) .timeline-marker { background: var(--lime); }
.timeline article:nth-child(2) .timeline-marker { background: var(--blue-soft); }
.timeline article:nth-child(3) .timeline-marker { background: var(--teal-soft); }
.timeline article:nth-child(4) .timeline-marker { background: var(--coral-soft); }

.timeline-meta {
  margin: 23px 0 8px;
  color: var(--teal);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.timeline article > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.recruiter-built {
  padding: 112px 0;
  background: var(--lime);
}

.recruiter-built-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(400px, 1fr);
  align-items: start;
  gap: 100px;
}

.recruiter-statement .mono-label {
  color: rgba(16, 33, 25, 0.62);
  margin-bottom: 18px;
}

.recruiter-copy {
  color: rgba(16, 33, 25, 0.73);
}

.recruiter-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.78;
}

.recruiter-copy p + p {
  margin-top: 24px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  padding: 128px 0;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.final-cta::before { width: 560px; height: 560px; top: -340px; left: -150px; }
.final-cta::after { width: 720px; height: 720px; right: -330px; bottom: -540px; }

.final-cta-pattern {
  opacity: 0.25;
  background-image: radial-gradient(rgba(255, 255, 255, 0.38) 0.7px, transparent 0.7px);
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(46px, 5.4vw, 72px);
}

.final-cta-inner > p {
  max-width: 650px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .button {
  margin-top: 34px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 70px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.9fr;
  align-items: start;
  gap: 60px;
}

.brand-footer .brand-mark {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 22px rgba(0, 0, 0, 0.24);
}

.footer-top > p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.footer-top nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
}

.footer-top nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.footer-top nav a:hover,
.footer-top nav a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  margin-top: 60px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 110ms; }
.reveal-delay-short { transition-delay: 80ms; }
.reveal-delay-long { transition-delay: 160ms; }

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.9fr);
    gap: 44px;
  }

  .hero h1 { font-size: clamp(51px, 5.6vw, 70px); }
  .tiltshift-variant .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.98fr);
    gap: 34px;
  }
  .client-strip-inner { grid-template-columns: 1fr; gap: 18px; padding-block: 28px; }
  .client-strip ul { flex-wrap: wrap; justify-content: flex-start; }
  .section-heading { gap: 54px; }
  .model-grid, .ownership-grid, .recruiter-built-grid { gap: 62px; }
  .system-card { min-height: 652px; padding: 22px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--container)); }

  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: 103;
  }

  .nav-toggle { display: flex; position: relative; z-index: 103; }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 102;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    background: var(--paper);
    padding: 104px 24px 34px;
    overflow-y: auto;
    transition: transform 240ms ease;
  }

  .primary-nav.is-open { transform: translateX(0); }

  .primary-nav > a {
    border-bottom: 1px solid rgba(16, 33, 25, 0.12);
    padding: 16px 4px;
    font-size: 24px;
    letter-spacing: -0.04em;
  }

  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .primary-nav .nav-cta { margin-top: 14px; padding: 17px 22px; text-align: center; font-size: 15px; }

  .hero { padding-top: 130px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .tiltshift-variant .hero-grid,
  .hero-video-variant .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy { max-width: 760px; }
  .hero h1 { max-width: 770px; font-size: clamp(56px, 10vw, 78px); }
  .hero-lede { max-width: 720px; }
  .hero-product { max-width: 620px; }
  .hero-product-tiltshift { max-width: 720px; }
  .tiltshift-frame { width: 116%; margin: -4% -10% -2% -6%; }

  .section { padding: 96px 0; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 48px;
  }

  .section-heading > p { max-width: 650px; }

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

  .system-card {
    min-height: 0;
  }

  .system-visual { height: 250px; }

  .tour-proof-grid { grid-template-columns: 1fr; }

  .model-grid,
  .ownership-grid,
  .recruiter-built-grid {
    grid-template-columns: 1fr;
  }

  .model-copy { position: static; }
  .model-copy > p { max-width: 680px; }

  .ownership-grid { gap: 48px; }
  .ownership-intro { max-width: 680px; }
  .ownership-table { max-width: 680px; width: 100%; }

  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 0; }
  .timeline::before { display: none; }
  .timeline article:nth-child(2) { border-right: 0; margin-right: 0; padding-right: 0; }

  .recruiter-built-grid { gap: 38px; }
  .recruiter-copy { max-width: 720px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > p { grid-row: 2; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { min-height: 72px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 26px; height: 26px; }

  .hero {
    padding: 112px 0 72px;
  }

  .hero::before {
    top: -150px;
    right: -220px;
    width: 520px;
    height: 520px;
  }

  .hero h1 {
    font-size: clamp(45px, 13.5vw, 62px);
    line-height: 0.99;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
    margin-top: 31px;
  }

  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-points { display: grid; gap: 9px; }
  .hero-grid { gap: 48px; }

  .tiltshift-variant .hero-grid,
  .hero-video-variant .hero-grid { gap: 38px; }
  .tiltshift-frame { width: 116%; margin: -5% -9% -2% -7%; }
  .tiltshift-model-label { top: 9%; right: 8%; padding: 6px 8px; font-size: 6px; }
  .hero-motion-toggle { right: 8%; bottom: 14%; width: 30px; height: 30px; }
  .tiltshift-flow { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin-top: -6%; padding-inline: 8px; }
  .tiltshift-flow span { justify-content: flex-start; padding: 5px 7px; }
  .tiltshift-flow b { display: none; }

  .product-shadow { right: -8px; bottom: -9px; }
  .window-bar { padding-inline: 14px; }
  .window-label { display: none; }
  .workflow-stage { padding: 16px 14px 10px; }
  .signal-card { grid-template-columns: 34px minmax(0, 1fr); gap: 9px; padding: 10px; }
  .signal-icon { width: 32px; height: 32px; }
  .signal-time { display: none; }
  .signal-card strong { font-size: 9px; }
  .workflow-result { margin: 0 14px 14px; padding: 14px; }
  .result-topline h2 { font-size: 15px; }
  .result-actions { grid-template-columns: 1fr; }
  .result-actions span { font-size: 8px; }

  .client-strip-inner { padding-block: 25px; }
  .client-strip ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px 20px; }

  .section { padding: 78px 0; }
  .section-heading h2,
  .model-copy h2,
  .ownership-intro h2,
  .recruiter-statement h2,
  .final-cta h2 {
    font-size: clamp(38px, 11.2vw, 50px);
  }

  .section-heading { margin-bottom: 36px; }
  .section-heading > p,
  .model-copy > p,
  .ownership-intro > p,
  .recruiter-copy p,
  .final-cta-inner > p { font-size: 15px; }

  .system-card { padding: 18px; }
  .system-number { top: 20px; right: 20px; }
  .system-visual { height: 206px; }

  .tour-stage { border-radius: 16px; }
  .tour-stage-bar {
    min-height: 44px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    font-size: 7px;
  }
  .tour-proof-grid { gap: 14px; margin-top: 14px; }
  .tour-proof figcaption { padding: 20px; }
  .tour-proof figcaption > strong { font-size: 22px; }
  .tour-proof figcaption > p { font-size: 13px; }

  .model-steps li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
    padding-block: 25px;
  }

  .step-status { display: none; }
  .step-number { width: 32px; height: 32px; }
  .model-steps h3 { font-size: 19px; }
  .model-copy .button { width: 100%; }

  .ownership-grid { gap: 40px; }
  .ownership-seal { align-items: flex-start; }
  .ownership-row { grid-template-columns: 39px minmax(0, 1fr); gap: 13px; padding: 18px; }
  .ownership-icon { width: 35px; height: 35px; }

  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline article,
  .timeline article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 0 0 28px;
  }
  .timeline article + article { padding-top: 28px; }
  .timeline article:last-child { border-bottom: 0; }
  .timeline-meta { margin-top: 15px; }

  .recruiter-built { padding: 78px 0; }
  .final-cta { padding: 88px 0; }
  .final-cta .button { width: 100%; }

  .site-footer { padding-top: 54px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-top > p { grid-row: auto; }
  .footer-top nav { max-width: 360px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

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