:root {
  --site-max-width: 1680px;
  --ink: #24313e;
  --muted: #5b6d7e;
  --paper: #f7f7f5;
  --line: #d8d8d6;
  --accent: #b86a3c;
  --sage: #6f8265;
  --mint: #dce8df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(36, 49, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  background: #ececea;
}

body {
  max-width: var(--site-max-width);
  min-height: 100vh;
  margin: 0;
  margin-inline: auto;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 247, 245, 0.9);
  border-bottom: 1px solid rgba(216, 216, 214, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(300px, 31vw, 430px);
  min-width: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  white-space: nowrap;
}

.nav a:not(.nav-cta) {
  position: relative;
  transition: color 180ms ease;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-cta {
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.62fr) minmax(600px, 1.38fr);
  gap: clamp(28px, 3.2vw, 52px);
  align-items: center;
  min-height: auto;
  padding: clamp(44px, 4vw, 62px) clamp(20px, 4vw, 64px) 38px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(220, 232, 223, 0.42), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.hero-copy {
  position: relative;
  max-width: 510px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 3.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.35vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 500px;
  margin-bottom: 14px;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.58;
}

.hero-insights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 500px;
  margin-bottom: 16px;
}

.hero-insights div {
  min-height: 86px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(36, 49, 62, 0.06);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.hero-insights strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.88rem;
}

.hero-insights span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button-primary {
  color: var(--paper);
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(184, 106, 60, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.app-grid article,
.app-grid .app-card,
.contrast-grid article,
.advantage-grid article,
.fit-list div {
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav a:not(.nav-cta):hover {
    color: var(--ink);
  }

  .nav a:not(.nav-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-cta:hover,
  .button-primary:hover,
  .demo-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(36, 49, 62, 0.2);
  }

  .nav-cta:hover {
    background: var(--accent);
  }

  .demo-submit:hover {
    background: #101923;
  }

  .button-secondary:hover {
    color: var(--accent);
    background: var(--white);
    border-color: rgba(184, 106, 60, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(36, 49, 62, 0.08);
  }

  .hero-insights div:hover,
  .app-grid article:hover,
  .app-grid .app-card:hover,
  .contrast-grid article:hover,
  .advantage-grid article:hover {
    border-color: rgba(184, 106, 60, 0.34);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(36, 49, 62, 0.1);
  }

  .fit-list div:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateX(4px);
    box-shadow: 0 14px 32px rgba(3, 10, 29, 0.18);
  }
}

.nav a:focus-visible,
.button:focus-visible,
.photo-card:focus-visible,
.app-card:focus-visible,
.back-link:focus-visible {
  outline: 3px solid rgba(184, 106, 60, 0.3);
  outline-offset: 4px;
}

.nav-cta:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.hero-visual {
  position: relative;
}

.product-shell {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(216, 216, 214, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.product-bar strong,
.product-bar span {
  display: block;
}

.product-bar strong {
  font-size: 1rem;
}

.product-bar span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.status-pill {
  padding: 9px 12px;
  color: var(--sage) !important;
  background: var(--mint);
  border-radius: 999px;
  white-space: nowrap;
}

.product-bar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-bar-actions .status-pill {
  margin-top: 0;
}

.tour-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--white);
  border: 1px solid rgba(184, 106, 60, 0.58);
  border-radius: 6px;
  box-shadow: 0 0 0 3px rgba(184, 106, 60, 0.16), 0 0 18px rgba(184, 106, 60, 0.3);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tour-expand[aria-pressed="false"] {
  animation: tourExpandPulse 2.8s ease-in-out infinite;
}

.tour-expand:hover,
.tour-expand:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(184, 106, 60, 0.24), 0 0 26px rgba(184, 106, 60, 0.48);
  transform: translateY(-1px);
  animation: none;
  outline: none;
}

@keyframes tourExpandPulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(184, 106, 60, 0.16), 0 0 18px rgba(184, 106, 60, 0.3);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(184, 106, 60, 0.22), 0 0 24px rgba(184, 106, 60, 0.44);
  }
}

.tour-expand span {
  margin: 0;
  color: inherit;
  font-size: 1rem;
}

body:has(.product-shell.is-expanded) {
  overflow: hidden;
}

.product-shell.is-expanded {
  position: fixed;
  inset: clamp(10px, 2vw, 28px);
  z-index: 1000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  box-shadow: 0 0 0 100vmax rgba(3, 10, 29, 0.82), 0 28px 90px rgba(3, 10, 29, 0.46);
}

.product-shell.is-expanded .product-preview {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.product-shell.is-expanded .tour-slide img {
  object-fit: contain;
  object-position: center;
  transform: none;
  animation: none;
}

.product-preview {
  position: relative;
  height: auto;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #071024;
  cursor: pointer;
}

.product-preview:focus-visible {
  outline: 3px solid rgba(184, 106, 60, 0.48);
  outline-offset: -3px;
}

.preview-stage {
  position: relative;
  height: 100%;
}

.tour-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: productTour 20s infinite;
}

.tour-panel:nth-child(2) {
  animation-delay: 5s;
}

.tour-panel:nth-child(3) {
  animation-delay: 10s;
}

.tour-panel:nth-child(4) {
  animation-delay: 15s;
}

.product-preview.is-paused .tour-panel {
  animation-play-state: paused;
}

@keyframes productTour {
  0%,
  20% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  25%,
  96% {
    opacity: 0;
    transform: translateY(-16px) scale(0.99);
  }

  100% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
}

.tour-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  background: #f4f7fb;
  animation: screenshotTour 48s infinite;
  animation-delay: calc(var(--slide) * 6s);
}

.tour-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transform: scale(1.012);
  transform-origin: left top;
  animation: screenshotDrift 48s ease-in-out infinite;
  animation-delay: calc(var(--slide) * 6s);
}

.tour-slide figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(3, 10, 29, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(3, 10, 29, 0.24);
  backdrop-filter: blur(10px);
}

.tour-slide figcaption span {
  color: #8eb5ff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.tour-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: rgba(255, 255, 255, 0.34);
}

.tour-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: #2b6dea;
  transform: scaleX(0);
  transform-origin: left;
  animation: tourProgress 48s linear infinite;
}

.product-preview.is-paused .tour-slide,
.product-preview.is-paused .tour-slide img,
.product-preview.is-paused .tour-progress i {
  animation-play-state: paused;
}

@keyframes screenshotTour {
  0%,
  10.5% {
    z-index: 1;
    opacity: 1;
  }

  12.5%,
  100% {
    z-index: 0;
    opacity: 0;
  }
}

@keyframes screenshotDrift {
  0%,
  10.5% {
    transform: scale(1.012);
  }

  12.5%,
  100% {
    transform: scale(1.04);
  }
}

@keyframes tourProgress {
  to {
    transform: scaleX(1);
  }
}

.preview-head {
  position: relative;
  padding: 34px 38px 30px;
  border-bottom: 1px solid rgba(216, 216, 214, 0.74);
}

.job-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 0 12px;
  color: #314158;
  font-weight: 900;
  background: #f2f5f8;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
}

.close-button {
  position: absolute;
  top: 30px;
  right: 32px;
  width: 50px;
  height: 50px;
  color: #101828;
  font-size: 2rem;
  line-height: 1;
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: 18px;
}

.preview-head h3 {
  margin-bottom: 10px;
  color: #050b1f;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  letter-spacing: 0;
}

.preview-head p {
  margin-bottom: 0;
  color: #65758f;
  font-size: 1.08rem;
  font-weight: 650;
}

.preview-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  padding: 34px 38px 20px;
}

.field {
  min-width: 0;
}

.field span {
  display: block;
  margin-bottom: 10px;
  color: #65758f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field div {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  color: #101828;
  font-size: 1.08rem;
  background: #fbfcfd;
  border: 1px solid #dbe3ec;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.field-wide {
  grid-column: 1 / -1;
}

.closeout-card {
  margin: 12px 38px 34px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(36, 49, 62, 0.08);
}

.closeout-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.closeout-card strong {
  color: #24313e;
  font-size: 1rem;
}

.closeout-card span {
  color: #65758f;
  font-size: 0.9rem;
  font-weight: 800;
}

.closeout-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.tour-dashboard,
.tour-reports,
.tour-compliance {
  padding: 34px 38px;
  background:
    linear-gradient(120deg, rgba(220, 232, 223, 0.62), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.app-screen-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.screen-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-screen-head h3 {
  max-width: 620px;
  margin-bottom: 0;
  color: #050b1f;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.screen-pill {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: #59724d;
  font-size: 0.84rem;
  font-weight: 900;
  background: #dce8df;
  border-radius: 999px;
}

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

.metric-grid div,
.compliance-grid div,
.pipeline-card,
.route-card,
.report-table div,
.timeline div {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(36, 49, 62, 0.06);
}

.metric-grid div,
.compliance-grid div {
  min-height: 122px;
  padding: 18px;
}

.metric-grid span,
.compliance-grid span,
.route-card span {
  display: block;
  margin-bottom: 12px;
  color: #65758f;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.metric-grid strong,
.compliance-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #101828;
  font-size: 2rem;
  line-height: 1;
}

.metric-grid small,
.compliance-grid small {
  color: #65758f;
  font-weight: 750;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.pipeline-card,
.route-card {
  min-height: 220px;
  padding: 20px;
}

.bar-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #314158;
  font-size: 0.88rem;
  font-weight: 850;
}

.bar-row i {
  display: block;
  width: var(--w);
  height: 12px;
  background: linear-gradient(90deg, var(--accent), #d8a16f);
  border-radius: 999px;
}

.route-line {
  position: relative;
  height: 138px;
  margin-top: 12px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(91, 109, 126, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(91, 109, 126, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 28px;
  top: 72px;
  height: 4px;
  background: var(--sage);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.route-line i {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(36, 49, 62, 0.18);
}

.route-line i:nth-child(1) {
  left: 18px;
  top: 80px;
}

.route-line i:nth-child(2) {
  left: 34%;
  top: 64px;
}

.route-line i:nth-child(3) {
  left: 62%;
  top: 52px;
}

.route-line i:nth-child(4) {
  right: 22px;
  top: 46px;
}

.report-chart {
  display: flex;
  align-items: end;
  gap: 18px;
  height: 240px;
  margin-bottom: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: 16px;
}

.report-chart i {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--ink), var(--muted));
  border-radius: 10px 10px 4px 4px;
}

.report-table {
  display: grid;
  gap: 10px;
}

.report-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 0 18px;
}

.report-table span,
.timeline span {
  color: #65758f;
  font-weight: 800;
}

.report-table strong,
.timeline strong {
  color: #101828;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 18px;
}

.timeline i {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 999px;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.08rem;
}

.app-grid,
.fit-list {
  display: grid;
  gap: 16px;
}

.app-grid article,
.app-grid .app-card,
.fit-list div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, var(--paper) 58%, var(--paper) 100%);
}

.field-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: stretch;
}

.field-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: clamp(28px, 4vw, 46px);
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.field-story-copy h2 {
  color: var(--paper);
}

.field-story-copy p:not(.eyebrow) {
  color: rgba(247, 247, 245, 0.74);
  font-size: 1.04rem;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, 1fr);
  gap: 16px;
}

.photo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  overflow: hidden;
  padding: 20px;
  color: #ffffff;
  isolation: isolate;
  background: var(--photo) var(--photo-position, center) / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(36, 49, 62, 0.16);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 13, 22, 0.04), rgba(8, 13, 22, 0.78)),
    linear-gradient(90deg, rgba(36, 49, 62, 0.48), transparent 60%);
}

.photo-card span {
  margin-bottom: 8px;
  color: #f5c29b;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-card strong {
  max-width: 360px;
  font-size: clamp(1.2rem, 2vw, 1.78rem);
  line-height: 1.08;
}

.photo-card small {
  display: flex;
  align-items: center;
  gap: 8px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 800;
  opacity: 0;
  transition: max-height 200ms ease, margin-top 200ms ease, opacity 200ms ease;
}

.photo-card small span {
  margin: 0;
  color: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.photo-card[href] {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .photo-card[href]:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 54px rgba(36, 49, 62, 0.22);
  }

  .photo-card[href]:hover small {
    max-height: 24px;
    margin-top: 14px;
    opacity: 1;
  }
}

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

.contrast-grid article {
  min-height: 220px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(36, 49, 62, 0.07);
}

.contrast-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.contrast-grid h3 {
  font-size: 1.35rem;
}

.contrast-grid p {
  margin-bottom: 0;
}

.app-section {
  background: #ffffff;
}

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

.app-grid article,
.app-grid .app-card {
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
}

.app-grid .app-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.app-grid .app-card p {
  margin-bottom: 20px;
}

.app-grid .app-card > span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.app-grid .app-card > span span {
  font-size: 1rem;
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: var(--ink);
}

.fit-section h2,
.fit-section h3 {
  color: var(--paper);
}

.fit-section p {
  color: rgba(247, 247, 245, 0.74);
}

.fit-list {
  gap: 12px;
}

.fit-list div {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.cta-section {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(112deg, #a95e34 0%, var(--accent) 48%, #ca8056 100%);
  border-bottom: 1px solid rgba(36, 49, 62, 0.18);
}

.cta-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(52%, 820px);
  background: var(--cta-photo) center 40% / cover no-repeat;
  opacity: 0.7;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 34%, #000 70%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 34%, #000 70%);
}

.cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--accent) 0%, rgba(184, 106, 60, 0.34) 38%, rgba(36, 49, 62, 0.08) 100%),
    linear-gradient(180deg, transparent 50%, rgba(36, 49, 62, 0.26));
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(62%, 820px);
  min-height: 470px;
  padding: clamp(48px, 5vw, 76px) clamp(28px, 5vw, 76px);
}

.cta-section h2 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2rem, 3.25vw, 3.5rem);
}

.cta-section .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.demo-form {
  max-width: 700px;
}

.demo-form-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
}

.demo-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(36, 49, 62, 0.16);
  font: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.demo-form input::placeholder {
  color: #7c8a98;
}

.demo-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(36, 49, 62, 0.16), 0 14px 34px rgba(36, 49, 62, 0.16);
}

.demo-submit {
  min-height: 54px;
  padding-inline: 24px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(36, 49, 62, 0.22);
}

.demo-promise {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
}

.demo-status {
  min-height: 1.35em;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hvac-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1.28fr);
  min-height: 560px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.hvac-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 4.5vw, 64px) clamp(28px, 4vw, 64px);
  background: linear-gradient(135deg, rgba(220, 232, 223, 0.58), transparent 54%), var(--paper);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: clamp(24px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hvac-hero h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.25vw, 3.75rem);
  line-height: 1;
}

.hvac-lede {
  max-width: 580px;
  margin-bottom: 20px;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
}

.micro-proof {
  margin: 14px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
}

.hvac-hero-photo {
  position: relative;
  min-height: 560px;
  background: linear-gradient(180deg, rgba(8, 13, 22, 0.02), rgba(8, 13, 22, 0.34)), url("assets/hvac-technician.jpg") center / cover no-repeat;
}

.hvac-workflow-card {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(20px, 4vw, 56px);
  left: clamp(20px, 4vw, 56px);
  max-width: 620px;
  padding: 22px 24px;
  color: var(--white);
  background: rgba(36, 49, 62, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hvac-workflow-card span {
  display: block;
  margin-bottom: 9px;
  color: #f5c29b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hvac-workflow-card strong {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.4;
}

.hvac-advantage {
  background: #ffffff;
}

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

.advantage-grid article {
  min-height: 280px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.advantage-grid article > span {
  display: inline-block;
  margin-bottom: 62px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
}

.advantage-grid h3 {
  font-size: 1.28rem;
}

.advantage-grid p {
  margin-bottom: 0;
}

.hvac-tour-section {
  background: var(--ink);
}

.tour-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: 42px;
}

.tour-intro h2 {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--paper);
}

.tour-intro > p {
  margin-bottom: 5px;
  color: rgba(247, 247, 245, 0.72);
}

.hvac-tour-wrap {
  max-width: 1380px;
  margin-inline: auto;
}

.hvac-tour-wrap .product-preview {
  height: auto;
  aspect-ratio: 2 / 1;
}

.hvac-demo {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 7vw, 104px);
  color: var(--white);
  background: radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.18), transparent 28%), var(--accent);
}

.hvac-demo h2 {
  color: var(--white);
}

.hvac-demo-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.hvac-demo-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hvac-demo-copy li {
  display: flex;
  gap: 10px;
  font-weight: 700;
}

.hvac-demo-copy li::before {
  content: "✓";
  color: var(--ink);
}

.hvac-demo-form {
  max-width: none;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.hvac-demo-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-lede,
  .hero-insights {
    max-width: 620px;
  }

  .hvac-hero {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .fit-section,
  .hvac-hero,
  .hvac-demo {
    grid-template-columns: 1fr;
  }

  .hvac-hero-copy {
    min-height: 500px;
  }

  .hvac-hero-photo {
    min-height: 460px;
  }

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

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

  .product-preview {
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .tour-dashboard,
  .tour-reports,
  .tour-compliance {
    padding: 28px 26px;
  }

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

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .route-card {
    display: none;
  }

  .report-chart {
    height: 190px;
  }

  .app-grid,
  .contrast-grid {
    grid-template-columns: 1fr 1fr;
  }

  .field-story {
    grid-template-columns: 1fr;
  }

  .field-story-copy {
    min-height: auto;
  }

  .cta-section {
    min-height: 500px;
  }

  .cta-photo {
    width: 58%;
  }

  .cta-content {
    width: min(72%, 720px);
    min-height: 500px;
    padding: 48px clamp(24px, 6vw, 56px);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    width: min(300px, 76vw);
  }

  .nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .hero {
    padding-top: 48px;
  }

  .hvac-hero-copy {
    min-height: auto;
    padding: 42px 20px 46px;
  }

  .back-link {
    margin-bottom: 28px;
  }

  .hvac-hero-photo {
    min-height: 380px;
  }

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

  .advantage-grid article {
    min-height: auto;
  }

  .advantage-grid article > span {
    margin-bottom: 34px;
  }

  .hvac-tour-wrap .product-preview {
    aspect-ratio: 1.4 / 1;
  }

  .hvac-demo {
    padding: 58px 20px;
  }

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

  .hero-insights div {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .button {
    width: 100%;
  }

  .product-bar {
    display: flex;
    min-height: 56px;
    padding: 9px 10px;
  }

  .product-bar > div:first-child > span,
  .product-bar-actions .status-pill {
    display: none;
  }

  .product-bar strong {
    font-size: 0.86rem;
  }

  .tour-expand {
    min-height: 36px;
    padding-inline: 10px;
  }

  .product-preview {
    height: auto;
    aspect-ratio: 1.4 / 1;
  }

  .tour-slide img {
    object-position: 12% top;
  }

  .tour-slide figcaption {
    left: 12px;
    bottom: 11px;
    padding: 8px 11px;
    font-size: 0.76rem;
  }

  .preview-head {
    padding: 26px 22px 24px;
  }

  .close-button {
    top: 24px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .preview-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 22px 18px;
  }

  .field div {
    min-height: 50px;
    font-size: 1rem;
  }

  .closeout-card {
    margin: 8px 22px 24px;
  }

  .tour-dashboard,
  .tour-reports,
  .tour-compliance {
    padding: 24px 22px;
  }

  .app-screen-head {
    display: block;
    margin-bottom: 18px;
  }

  .app-screen-head h3 {
    font-size: 1.55rem;
  }

  .screen-pill {
    display: inline-flex;
    margin-top: 14px;
  }

  .metric-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .metric-grid div,
  .compliance-grid div {
    min-height: 82px;
    padding: 14px;
  }

  .metric-grid strong,
  .compliance-grid strong {
    font-size: 1.48rem;
  }

  .pipeline-card,
  .route-card {
    min-height: 150px;
    padding: 16px;
  }

  .report-chart {
    height: 170px;
  }

  .tour-job .closeout-card {
    display: none;
  }

  .app-grid,
  .contrast-grid {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .app-grid article,
  .app-grid .app-card {
    min-height: auto;
  }

  .cta-section {
    min-height: 550px;
  }

  .cta-photo {
    width: 100%;
    opacity: 0.28;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 20%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 20%, #000 100%);
  }

  .cta-content {
    width: 100%;
    min-height: 550px;
    padding: 42px 20px 34px;
  }

  .cta-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .nav a,
  .nav a::after,
  .button,
  .tour-expand,
  .hero-insights div,
  .app-grid article,
  .app-grid .app-card,
  .contrast-grid article,
  .advantage-grid article,
  .fit-list div {
    transition: none;
  }

  .demo-form input {
    transition: none;
  }

  .tour-expand {
    animation: none;
  }

  .tour-panel {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .tour-panel:first-child {
    opacity: 1;
  }

  .tour-slide,
  .tour-slide img,
  .tour-progress i {
    animation: none;
  }

  .tour-slide {
    display: none;
  }

  .tour-slide:first-child {
    display: block;
    z-index: 1;
    opacity: 1;
  }

  .tour-progress {
    display: none;
  }
}
