:root {
  --bg: #0b0b0a;
  --bg-soft: #151511;
  --ink: #f7f5ed;
  --muted: #bab7aa;
  --dim: #858174;
  --line: rgba(247, 245, 237, 0.14);
  --panel: #1d1d17;
  --panel-2: #24241d;
  --lime: #b8ff4d;
  --cyan: #57d5ff;
  --coral: #ff6f59;
  --paper: #f7f5ed;
  --paper-ink: #11110f;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --shell: min(1160px, calc(100% - 32px));
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

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

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: 4px;
  background: transparent;
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--coral));
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  width: var(--shell);
  min-height: var(--nav-h);
  transform: translateX(-50%);
  transition: background-color 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.topbar.is-scrolled {
  top: 10px;
  min-height: 60px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 11, 10, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--paper-ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.desktop-nav,
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.desktop-nav a,
.footer-nav a {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.footer-nav a:hover {
  color: var(--ink);
  background: rgba(247, 245, 237, 0.08);
}

.header-actions,
.hero-actions,
.mobile-menu-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 850;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--lime);
  color: var(--paper-ink);
}

.button-light {
  border-color: rgba(247, 245, 237, 0.34);
  background: rgba(247, 245, 237, 0.12);
  color: var(--ink);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(247, 245, 237, 0.06);
  color: var(--ink);
}

.button-small {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.86rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 245, 237, 0.07);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 82px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: none;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 11, 10, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.mobile-menu a {
  padding: 12px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
}

.mobile-menu nav a {
  border-bottom: 1px solid rgba(247, 245, 237, 0.08);
}

.hero {
  position: relative;
  --spot-x: 62%;
  --spot-y: 38%;
  min-height: 86svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 56px) 0 54px;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(184, 255, 77, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(11, 11, 10, 0.92) 0%, rgba(11, 11, 10, 0.74) 42%, rgba(11, 11, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 11, 10, 0.95) 0%, rgba(11, 11, 10, 0.14) 55%, rgba(11, 11, 10, 0.72) 100%);
}

.hero-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent, rgba(87, 213, 255, 0.18), transparent),
    repeating-linear-gradient(0deg, rgba(247, 245, 237, 0.06) 0, rgba(247, 245, 237, 0.06) 1px, transparent 1px, transparent 6px);
  background-size: 34% 100%, auto;
  animation: hero-scan 7s ease-in-out infinite;
}

@keyframes hero-scan {
  0%,
  100% {
    background-position: -45% 0, 0 0;
  }

  50% {
    background-position: 145% 0, 0 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 36px;
  align-items: end;
}

.hero-main {
  min-width: 0;
}

.eyebrow {
  margin: 0;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.contact-copy h2 {
  max-width: 760px;
  margin: 12px 0 16px;
  font-size: 4.5rem;
  line-height: 0.98;
  font-weight: 900;
}

.hero-copy {
  max-width: 610px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  max-width: 520px;
  margin: 30px 0 0;
}

.hero-stats div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(247, 245, 237, 0.18);
  border-radius: var(--radius);
  background: rgba(11, 11, 10, 0.58);
}

.hero-stats dt {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-console {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(247, 245, 237, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 245, 237, 0.1), rgba(247, 245, 237, 0.03)),
    rgba(11, 11, 10, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.console-topline strong {
  color: var(--lime);
}

.console-ring {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(11, 11, 10, 0.94) 0 52%, transparent 53%),
    conic-gradient(var(--lime) 0 92%, rgba(247, 245, 237, 0.14) 92% 100%);
  animation: console-pulse 3.8s ease-in-out infinite;
}

.console-ring span {
  color: var(--ink);
  font-size: 3rem;
  font-weight: 900;
}

.console-bars {
  display: grid;
  gap: 10px;
}

.console-bars div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.console-bars i {
  display: block;
  height: 10px;
  border-radius: var(--radius);
  background: rgba(247, 245, 237, 0.12);
  overflow: hidden;
}

.console-bars i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  animation: bar-breathe 2.8s ease-in-out infinite;
}

@keyframes console-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(184, 255, 77, 0);
  }

  50% {
    box-shadow: 0 0 42px rgba(184, 255, 77, 0.2);
  }
}

@keyframes bar-breathe {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

.hero-console ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-console li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-console li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--lime);
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--paper-ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: center;
  padding: 28px 0;
}

.intro-grid p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 750;
}

.intro-badges {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.intro-badges span,
.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 850;
}

.marquee-band {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #10100d;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 14px 0;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(247, 245, 237, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(247, 245, 237, 0.04);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.content-section {
  padding: 96px 0 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head h2,
.contact-copy h2 {
  font-size: 3.15rem;
}

.section-head p,
.contact-copy p,
.service-card p,
.standard-list p,
.compare-copy h3 + p,
.estimate-result p,
.contact-list em,
.site-footer p {
  color: var(--muted);
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filter-chip {
  color: var(--muted);
  background: transparent;
}

.filter-chip.is-active {
  color: var(--paper-ink);
  border-color: var(--lime);
  background: var(--lime);
}

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

.service-card {
  min-width: 0;
  min-height: 270px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transform: perspective(900px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0));
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card.is-hidden {
  display: none;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 255, 77, 0.45);
}

.service-card.is-tilting,
.option-card.is-tilting,
.package-card.is-tilting,
.compare-card.is-tilting,
.review-panel.is-tilting,
.estimate-result.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0)) translateY(-2px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.service-card-feature {
  background: var(--paper);
  color: var(--paper-ink);
}

.service-card-feature p {
  color: #545146;
}

.service-card span,
.standard-list span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3,
.standard-list h3,
.compare-copy h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.14;
}

.service-card p {
  margin: 0;
}

.service-card strong {
  font-size: 1rem;
}

.option-lab {
  position: relative;
}

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

.option-card {
  min-width: 0;
  min-height: 390px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 245, 237, 0.06), rgba(247, 245, 237, 0.02)),
    var(--panel);
  transform: perspective(900px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0));
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.option-card:hover {
  border-color: rgba(87, 213, 255, 0.46);
  transform: translateY(-2px);
}

.option-card-feature {
  border-color: rgba(184, 255, 77, 0.52);
  background:
    linear-gradient(180deg, rgba(184, 255, 77, 0.16), rgba(87, 213, 255, 0.06)),
    var(--panel);
}

.option-card span,
.option-flow span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.option-card h3 {
  margin: 10px 0 10px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.option-card p,
.option-flow p {
  margin: 0;
  color: var(--muted);
}

.option-specs {
  display: grid;
  gap: 8px;
}

.option-specs div {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(247, 245, 237, 0.1);
}

.option-specs strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.option-specs em {
  color: var(--muted);
  font-style: normal;
  overflow-wrap: anywhere;
}

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

.option-flow article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #10100d;
}

.option-flow strong {
  font-size: 1.12rem;
}

.packages-section {
  position: relative;
}

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

.package-card {
  display: grid;
  gap: 22px;
  min-height: 380px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 245, 237, 0.06), rgba(247, 245, 237, 0.02)),
    var(--panel);
  transform: perspective(900px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0));
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.package-card-prime {
  border-color: rgba(184, 255, 77, 0.52);
  background:
    linear-gradient(180deg, rgba(184, 255, 77, 0.17), rgba(247, 245, 237, 0.03)),
    var(--panel);
}

.package-card span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 12px 0 10px;
  font-size: 1.7rem;
  line-height: 1.08;
}

.package-card p {
  margin: 0;
  color: var(--muted);
}

.package-card strong {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
}

.package-card ul,
.route-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li,
.route-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.package-card li::before,
.route-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
}

.route-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr) minmax(260px, 0.62fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--paper-ink);
}

.route-builder .eyebrow {
  color: #336500;
}

.route-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.route-copy h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.08;
}

.route-copy p:not(.eyebrow) {
  margin: 0;
  color: #565244;
}

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

.route-option {
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 15, 0.16);
  border-radius: var(--radius);
  background: #fffdf2;
  color: var(--paper-ink);
  font-weight: 900;
  text-align: left;
}

.route-option.is-active {
  border-color: #5d8a00;
  background: #eaffc5;
}

.route-list {
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: var(--radius);
  background: #fffdf2;
}

.route-list li {
  color: #4f4b40;
}

.standards {
  margin-top: 96px;
  padding: 80px 0;
  background: #10100d;
}

.standards-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.standards .section-head {
  position: sticky;
  top: 96px;
}

.standards-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.standards-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.standard-list {
  grid-column: 2;
  display: grid;
  gap: 12px;
}

.standard-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.standard-list h3 {
  margin-top: 12px;
}

.standard-list p {
  margin-bottom: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 12px;
}

.compare-card,
.proof-stack article,
.estimate-form,
.estimate-result,
.review-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.compare-card {
  padding: 18px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0));
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.compare-copy {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 14px;
}

.compare-copy h3 {
  max-width: 440px;
}

.compare-stage {
  position: relative;
  height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #171713;
}

.compare-side {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 24px;
}

.compare-side span {
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-side strong {
  max-width: 360px;
  font-size: 1.7rem;
  line-height: 1.12;
}

.compare-before {
  background:
    linear-gradient(135deg, rgba(255, 111, 89, 0.34), rgba(255, 111, 89, 0) 55%),
    repeating-linear-gradient(45deg, rgba(247, 245, 237, 0.08) 0, rgba(247, 245, 237, 0.08) 2px, transparent 2px, transparent 14px),
    #242018;
}

.compare-after {
  width: 58%;
  overflow: hidden;
  border-right: 2px solid var(--lime);
  background:
    linear-gradient(135deg, rgba(87, 213, 255, 0.32), rgba(184, 255, 77, 0.16)),
    linear-gradient(180deg, #111713, #12120f);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--lime);
  pointer-events: none;
}

.compare-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 2px solid var(--bg);
  border-radius: var(--radius);
  background: var(--lime);
  transform: translate(-50%, -50%) rotate(45deg);
}

.compare-range {
  width: 100%;
  margin-top: 14px;
  accent-color: var(--lime);
}

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

.proof-stack img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-stack article {
  padding: 20px;
  box-shadow: none;
}

.metric-number {
  display: block;
  color: var(--lime);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.proof-stack p {
  margin: 12px 0 0;
  color: var(--muted);
}

.estimator-section {
  margin-top: 96px;
  padding: 80px 0;
  background: var(--paper);
  color: var(--paper-ink);
}

.estimator-section .eyebrow {
  color: #336500;
}

.estimator-section .section-head p {
  color: #565244;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 12px;
}

.estimate-form,
.estimate-result {
  background: #fffdf2;
  color: var(--paper-ink);
  border-color: rgba(17, 17, 15, 0.14);
}

.estimate-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  box-shadow: none;
}

.estimate-result {
  padding: 22px;
  box-shadow: none;
  transform: perspective(900px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0));
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field span,
.field legend {
  color: inherit;
  font-size: 0.9rem;
  font-weight: 850;
}

fieldset.field {
  margin: 0;
  padding: 0;
  border: 0;
}

select,
input,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--paper-ink);
  outline: none;
}

textarea {
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  border-color: #5d8a00;
  box-shadow: 0 0 0 3px rgba(184, 255, 77, 0.35);
}

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

.addon-list label {
  position: relative;
}

.addon-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.addon-list span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: #4f4b40;
}

.addon-list input:focus-visible + span,
.addon-list input:checked + span {
  border-color: #5d8a00;
  background: #eaffc5;
  color: var(--paper-ink);
}

.estimate-price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 10px 0 8px;
}

.estimate-price span {
  color: #6d6756;
}

#estimate-total {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 900;
}

.estimate-lines {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.estimate-lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius);
  background: rgba(17, 17, 15, 0.06);
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 24px;
  align-items: start;
}

.review-panel {
  padding: 26px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0));
  transition: transform 160ms ease, box-shadow 160ms ease;
}

blockquote {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.22;
  font-weight: 800;
  transition: opacity 160ms ease;
}

cite {
  color: var(--muted);
  font-style: normal;
  transition: opacity 160ms ease;
}

.review-dots {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.review-dot {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.review-dot.is-active {
  border-color: var(--lime);
  background: var(--lime);
}

.contact-section {
  margin-top: 96px;
  padding: 80px 0;
  background: #10100d;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 430px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-list span {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-list em {
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.contact-form select,
.contact-form input,
.contact-form textarea {
  border-color: var(--line);
  background: #0b0b0a;
  color: var(--ink);
}

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

.contact-actions {
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-actions p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  padding: 32px 0 92px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr) minmax(180px, 0.8fr);
  gap: 14px;
  align-items: center;
}

.footer-grid strong {
  display: block;
  margin-bottom: 4px;
}

.footer-grid p {
  margin: 0;
}

.footer-end {
  text-align: right;
}

.footer-end a {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted);
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 80;
  display: none;
  gap: 6px;
  transform: translateX(-50%);
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 11, 10, 0.92);
  box-shadow: var(--shadow);
}

.mobile-dock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 850;
}

.mobile-dock .dock-primary {
  background: var(--lime);
  color: var(--paper-ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0)) translateY(-2px);
}

.service-card[data-reveal].is-visible:hover,
.option-card[data-reveal].is-visible:hover,
.package-card[data-reveal].is-visible:hover,
.compare-card[data-reveal].is-visible:hover,
.review-panel[data-reveal].is-visible:hover,
.estimate-result[data-reveal].is-visible:hover {
  transform: translateY(-2px);
}

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

@media (max-width: 1040px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

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

  .menu-button {
    display: block;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .section-head h2,
  .contact-copy h2 {
    font-size: 2.55rem;
  }

  .intro-grid,
  .hero-content,
  .standards-grid,
  .proof-grid,
  .estimate-layout,
  .reviews-section,
  .contact-layout,
  .option-grid,
  .option-flow,
  .package-grid,
  .route-builder,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-badges {
    justify-content: flex-start;
  }

  .standards .section-head {
    position: static;
  }

  .standard-list {
    grid-column: auto;
  }

  .hero-console {
    max-width: 560px;
  }

  .footer-end {
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 24px, 1160px);
  }

  .topbar.is-scrolled {
    top: 8px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: calc(var(--nav-h) + 42px);
    padding-bottom: 42px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(11, 11, 10, 0.72), rgba(11, 11, 10, 0.86)),
      linear-gradient(90deg, rgba(11, 11, 10, 0.92), rgba(11, 11, 10, 0.34));
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .section-head h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .mobile-menu-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .option-grid,
  .option-flow,
  .package-grid,
  .route-options,
  .form-grid,
  .addon-list {
    grid-template-columns: 1fr;
  }

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

  .hero-console {
    padding: 14px;
  }

  .console-ring {
    width: 126px;
    height: 126px;
  }

  .console-ring span {
    font-size: 2.35rem;
  }

  .console-bars div {
    grid-template-columns: 82px 1fr;
  }

  .option-card,
  .package-card {
    min-height: auto;
  }

  .content-section {
    padding-top: 72px;
  }

  .standards,
  .estimator-section,
  .contact-section {
    margin-top: 72px;
    padding: 64px 0;
  }

  .compare-copy {
    align-items: start;
    flex-direction: column;
  }

  .compare-stage {
    height: 330px;
  }

  .compare-side strong {
    font-size: 1.25rem;
  }

  blockquote {
    font-size: 1.45rem;
  }

  .mobile-dock {
    display: flex;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.9rem;
  }

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

  .hero h1 {
    font-size: 2.35rem;
  }

  .section-head h2,
  .contact-copy h2 {
    font-size: 1.9rem;
  }

  .mobile-dock a {
    min-width: 72px;
  }
}

/* ── Homepage catalog loading skeleton ─────────────────────────────── */
.catalog-loading,
.catalog-loading-3 {
  display: contents;
}

.catalog-loading span,
.catalog-loading-3 span {
  display: block;
  border: 1px solid rgba(247, 245, 237, 0.06);
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(247, 245, 237, 0.03) 0%,
    rgba(247, 245, 237, 0.07) 50%,
    rgba(247, 245, 237, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: catalog-shimmer 1.6s ease-in-out infinite;
  min-height: 160px;
}

.catalog-loading-3 span {
  min-height: 240px;
}

@keyframes catalog-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 36px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(247, 245, 237, 0.12);
  border-radius: 10px;
  font-size: 0.92rem;
}
