/* Homepage rehaul — source: /Downloads/dist/index.html.
   This file is deliberately scoped so the existing page can be replaced section by section. */
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700&family=Figtree:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* Header background */
.nav-wrap {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border-bottom-color: transparent;
  background: linear-gradient(
    180deg,
    rgba(8, 17, 9, 0.85),
    rgba(8, 17, 9, 0)
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 300ms ease,
    border-color 300ms ease;
}

.nav-wrap.is-scrolled {
  border-bottom-color: rgba(10, 26, 12, 0.12);
  background: rgba(244, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

html[data-mode="apps"] .nav-wrap:not(.is-scrolled) .nav-link {
  color: rgba(244, 248, 244, 0.85);
}

html[data-mode="apps"] .nav-wrap:not(.is-scrolled) .nav-link:hover {
  color: #f4f8f4;
}

html[data-mode="apps"] .nav-wrap:not(.is-scrolled) .nav-logo .show-chain {
  display: block;
}

html[data-mode="apps"] .nav-wrap:not(.is-scrolled) .nav-logo .show-apps {
  display: none;
}

html[data-mode="apps"] .nav-wrap:not(.is-scrolled) .mobile-menu-btn span {
  background: rgba(244, 248, 244, 0.85);
}

.nav-wrap .nav-link {
  font: 500 14px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  letter-spacing: 0;
}

.nav-wrap .nav-dropdown-item,
.nav-wrap .nav-dropdown-flagship-row {
  font: 400 14.5px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  letter-spacing: 0;
}

.nav-wrap .nav-dropdown-flagship-row {
  font-weight: 500;
}

.nav-wrap .nav-actions .btn-primary {
  font: 600 14px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  letter-spacing: 0;
}

.mobile-overlay .mobile-nav-link {
  font: 500 14.5px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  letter-spacing: 0;
}

.mobile-overlay .mobile-sub-link {
  font: 400 14.5px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  letter-spacing: 0;
}

.rehaul-hero {
  --rehaul-display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  --rehaul-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  --rehaul-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --rehaul-lime: #a8ff45;
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  background: #081109;
  color: #f4f8f4;
}

.rehaul-hero-globe {
  position: absolute;
  z-index: 0;
  top: 40px;
  right: -6vw;
  bottom: -40px;
  left: 6vw;
  overflow: hidden;
  pointer-events: none;
}

.rehaul-hero-globe canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.rehaul-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    #081109 0%,
    rgba(8, 17, 9, 0.85) 30%,
    rgba(8, 17, 9, 0.35) 52%,
    transparent 68%
  );
  pointer-events: none;
}

.rehaul-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1500px, 100%);
  min-height: 653px;
  margin: 0 auto;
  padding: 120px 28px 90px 20px;
  align-items: flex-end;
  gap: 48px;
  box-sizing: border-box;
}

.rehaul-hero-content {
  flex: 1 1 540px;
  max-width: 660px;
}

.rehaul-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 16px;
  border: 1px solid rgba(168, 255, 69, 0.25);
  border-radius: 999px;
  background: rgba(14, 36, 18, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rehaul-hero-badge-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--rehaul-lime);
  animation: rehaul-pulse-dot 2.6s infinite;
}

.rehaul-hero-badge-text {
  color: #c9e8af;
  font: 500 11px var(--rehaul-mono);
  letter-spacing: 0.18em;
}

.rehaul-hero-title {
  margin: 0;
  color: #f4f8f4;
  font: 700 clamp(40px, 5vw, 68px) / 1.05 var(--rehaul-display);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.rehaul-hero-title span {
  color: var(--rehaul-lime);
}

.rehaul-hero-copy {
  max-width: 540px;
  margin: 22px 0 30px;
  color: #a9bfae;
  font: 400 18px/1.65 var(--rehaul-body);
  text-wrap: pretty;
}

.rehaul-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.rehaul-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #0a1a0c;
  font: 600 16px var(--rehaul-body);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.rehaul-btn:hover {
  color: inherit;
}

.rehaul-btn:active {
  transform: scale(0.98);
}

.rehaul-btn:focus-visible {
  outline: 2px solid var(--rehaul-lime);
  outline-offset: 3px;
}

.rehaul-btn-primary {
  background: var(--rehaul-lime);
}

.rehaul-btn-primary:hover {
  background: #8fe62a;
  color: #0a1a0c;
}

.rehaul-btn-secondary {
  border-color: rgba(244, 248, 244, 0.16);
  color: #f4f8f4;
  background: transparent;
}

.rehaul-btn-secondary:hover {
  color: #f4f8f4;
  background: rgba(244, 248, 244, 0.06);
}

.rehaul-hero-audience {
  color: #5c7562;
  font: 400 11px var(--rehaul-mono);
  letter-spacing: 0.2em;
}

.rehaul-hero-result {
  display: flex;
  width: min(330px, 100%);
  max-width: 330px;
  margin-top: 40px;
  margin-right: -24px;
  margin-left: auto;
  padding: 22px 24px;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(168, 255, 69, 0.18);
  border-radius: 6px;
  background: rgba(14, 36, 18, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rehaul-hero-result-label {
  color: #7a9a80;
  font: 500 10px var(--rehaul-mono);
  letter-spacing: 0.2em;
}

.rehaul-result-item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.rehaul-result-item svg {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  fill: none;
  stroke: var(--rehaul-lime);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rehaul-result-title {
  margin-bottom: 2px;
  color: #f4f8f4;
  font: 600 13.5px var(--rehaul-body);
}

.rehaul-result-item p {
  margin: 0;
  color: #89a490;
  font: 400 12.5px/1.5 var(--rehaul-body);
  text-wrap: pretty;
}

.rehaul-hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.rehaul-hero-scroll span {
  color: #5c7562;
  font: 400 10px var(--rehaul-mono);
  letter-spacing: 0.24em;
}

.rehaul-hero-scroll i {
  display: block;
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, var(--rehaul-lime), transparent);
  animation: rehaul-nudge 2.6s infinite;
}

@keyframes rehaul-pulse-dot {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

@keyframes rehaul-nudge {
  0%,
  100% {
    opacity: 0.8;
    transform: translateY(0);
  }
  50% {
    opacity: 0.25;
    transform: translateY(7px);
  }
}

.rehaul-clients {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-clients-inner {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 28px;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.rehaul-clients-title {
  margin: 0;
  color: #4a6650;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.rehaul-client-logos {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(22px, 3.4vw, 44px);
}

.rehaul-client-logo {
  display: block;
  width: auto;
  max-width: 150px;
  height: 24px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.78;
  transition:
    filter 250ms ease,
    opacity 250ms ease;
}

.rehaul-client-logo-hawkins {
  height: 38px;
}

.rehaul-client-logo-juno {
  height: 30px;
}

.rehaul-client-logo-realproton {
  height: 28px;
}

.rehaul-client-logo:hover {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}

.rehaul-platform {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-platform-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
}

.rehaul-platform-eyebrow {
  margin-bottom: 18px;
  color: #2e7d0e;
  font: 500 12px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rehaul-platform-title {
  margin: 0 0 18px;
  color: #2e7d0e;
  font: 600 clamp(30px, calc(20.8px + 2.8vw), 52px) / 1.08
    "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

.rehaul-platform-intro {
  margin: 0 0 40px;
  color: #4a6650;
  font: 400 clamp(18px, calc(16px + 0.5vw), 21px) / 1.6 "Figtree",
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-platform-feature,
.rehaul-platform-figure {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.rehaul-platform-feature {
  gap: 16px;
  margin-bottom: 20px;
}

.rehaul-platform-figure {
  gap: 14px;
}

.rehaul-product-window {
  overflow: hidden;
  border: 1px solid rgba(10, 26, 12, 0.12);
  border-radius: 6px;
  background: #fff;
}

.rehaul-product-window-feature {
  box-shadow: 0 24px 60px rgba(10, 26, 12, 0.1);
}

.rehaul-product-bar {
  display: flex;
  padding: 11px 16px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: rgba(10, 26, 12, 0.04);
}

.rehaul-product-bar-small {
  padding: 10px 14px;
}

.rehaul-window-dot {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.rehaul-product-bar-small .rehaul-window-dot {
  width: 9px;
  height: 9px;
}

.rehaul-window-dot-red {
  background: #e06c5a;
}

.rehaul-window-dot-yellow {
  background: #e8b84b;
}

.rehaul-window-dot-green {
  background: #2e7d0e;
}

.rehaul-product-url {
  margin-left: 12px;
  color: #4a6650;
  font: 400 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

.rehaul-product-bar-small .rehaul-product-url {
  margin-left: 10px;
  font-size: 10px;
}

.rehaul-product-window img {
  display: block;
  width: 100%;
  height: auto;
}

.rehaul-platform-caption {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  color: #4a6650;
  font: 400 14px/1.55 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-platform-caption-feature {
  max-width: 820px;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.rehaul-platform-caption-label {
  flex-shrink: 0;
  color: #2e7d0e;
  font: 500 10px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.14em;
}

.rehaul-platform-caption strong {
  color: #0a1a0c;
  font-weight: 600;
}

.rehaul-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 52px;
}

.rehaul-position {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-position-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
}

.rehaul-position-lead,
.rehaul-position-copy {
  color: #0a1a0c;
  font: 400 clamp(18px, calc(16px + 0.5vw), 21px) / 1.6 "Figtree",
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-position-lead {
  margin: 0 0 16px;
}

.rehaul-position-lead strong {
  font-weight: 600;
}

.rehaul-position-copy {
  margin: 0 0 44px;
  color: #4a6650;
}

.rehaul-release-flow {
  display: flex;
  margin-bottom: 22px;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}

.rehaul-release-step {
  flex: 1 1 130px;
  padding: 16px 18px;
  border: 1px solid rgba(10, 26, 12, 0.12);
  border-radius: 3px;
  background: #fff;
}

.rehaul-release-label {
  color: #4a6650;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.14em;
}

.rehaul-release-copy {
  margin-top: 6px;
  color: #4a6650;
  font: 400 13px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.rehaul-release-arrow {
  align-self: center;
  padding: 0 10px;
  color: #4a6650;
  font: 400 14px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

.rehaul-release-arrow-accent {
  color: #2e7d0e;
}

.rehaul-release-step-featured {
  flex: 2 1 300px;
  border-color: #2e7d0e;
  background: #e1f1d9;
}

.rehaul-release-featured-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.rehaul-release-featured-title > span:first-child {
  color: #256a0b;
  font: 600 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.14em;
}

.rehaul-release-badge {
  display: inline-flex;
  padding: 4px 10px;
  align-items: center;
  border-radius: 999px;
  background: #efffdd;
  color: #1e3a24;
  font: 500 11px/1.4 "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rehaul-release-featured-copy {
  color: #0a1a0c;
  line-height: 1.5;
}

.rehaul-how {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-how-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
}

.rehaul-how-intro {
  margin: 0 0 48px;
  color: #4a6650;
  font: 400 clamp(18px, calc(16px + 0.5vw), 21px) / 1.6 "Figtree",
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
  gap: 48px;
}

.rehaul-how-stages,
.rehaul-how-demo {
  display: flex;
  flex-direction: column;
}

.rehaul-how-stage {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(10, 26, 12, 0.12);
}

.rehaul-how-stage-last {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
}

.rehaul-how-number {
  padding-top: 3px;
  color: #4a6650;
  font: 600 13px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

.rehaul-how-stage-heading {
  display: flex;
  margin-bottom: 6px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rehaul-how-stage h3 {
  margin: 0;
  color: #0a1a0c;
  font: 600 18px/1.2 "Bricolage Grotesque", -apple-system,
    BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.015em;
}

.rehaul-how-stage p {
  margin: 0;
  color: #4a6650;
  font: 400 14.5px/1.6 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-how-badge {
  display: inline-flex;
  padding: 4px 10px;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font: 500 11px/1.4 "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rehaul-how-badge-forest {
  background: #e1f1d9;
  color: #256a0b;
}

.rehaul-how-badge-lime {
  background: #efffdd;
  color: #1e3a24;
}

.rehaul-how-demo {
  gap: 20px;
}

.rehaul-terminal {
  overflow: hidden;
  border-radius: 6px;
  background: #0a1a0c;
}

.rehaul-terminal-header {
  display: flex;
  padding: 10px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(244, 248, 244, 0.12);
  color: rgba(244, 248, 244, 0.5);
  font: 400 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

.rehaul-terminal-live {
  color: #a8ff45;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.rehaul-terminal-body {
  overflow-x: auto;
  padding: 18px 16px;
  color: rgba(244, 248, 244, 0.78);
  font: 400 12.5px/1.9 "JetBrains Mono", ui-monospace, "SF Mono",
    monospace;
}

.rehaul-terminal-body > div:first-child,
.rehaul-terminal-body > div:last-child {
  color: #f4f8f4;
}

.rehaul-terminal-prompt {
  color: #a8ff45;
}

.rehaul-terminal-tag {
  color: #7a9a80;
}

.rehaul-terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #a8ff45;
  vertical-align: -2px;
  animation: rehaul-pulse-dot 1.2s infinite;
}

.rehaul-scope-note {
  padding: 22px 24px;
  border: 1px solid rgba(10, 26, 12, 0.12);
  border-radius: 6px;
}

.rehaul-scope-note > div {
  margin-bottom: 8px;
  color: #2e7d0e;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.14em;
}

.rehaul-scope-note p {
  margin: 0;
  color: #4a6650;
  font: 400 14px/1.6 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-compare {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-compare-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
}

.rehaul-compare .rehaul-platform-title {
  margin-bottom: 48px;
}

.rehaul-compare-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.rehaul-compare-grid {
  display: grid;
  min-width: 720px;
  grid-template-columns: minmax(200px, 1.3fr) repeat(3, minmax(150px, 1fr));
}

.rehaul-compare-head,
.rehaul-compare-label,
.rehaul-compare-cell {
  padding: 14px 16px;
}

.rehaul-compare-head {
  color: #4a6650;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.12em;
}

.rehaul-compare-featured-head {
  border: 1px solid rgba(10, 26, 12, 0.12);
  border-top: 3px solid #a8ff45;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: #fff;
  color: #0a1a0c;
  font-weight: 600;
}

.rehaul-compare-label,
.rehaul-compare-cell {
  border-top: 1px solid rgba(10, 26, 12, 0.12);
}

.rehaul-compare-label {
  color: #0a1a0c;
  font: 500 14px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.rehaul-compare-cell {
  display: flex;
  align-items: center;
}

.rehaul-compare-featured {
  border-right: 1px solid rgba(10, 26, 12, 0.12);
  border-left: 1px solid rgba(10, 26, 12, 0.12);
  background: #fff;
}

.rehaul-compare-check,
.rehaul-compare-cross {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #2e7d0e;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rehaul-compare-cross {
  width: 15px;
  height: 15px;
  stroke: #4a6650;
}

.rehaul-compare-value {
  color: #4a6650;
  font: 400 12px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

.rehaul-compare-featured-value {
  color: #256a0b;
  font-weight: 500;
}

.rehaul-compare-featured-last {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  border-radius: 0 0 3px 3px;
}

.rehaul-who {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-who-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
}

.rehaul-who-intro {
  margin: 0 0 44px;
  color: #4a6650;
  font: 400 clamp(18px, calc(16px + 0.5vw), 21px) / 1.6 "Figtree",
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.rehaul-who-card {
  display: flex;
  padding: 30px;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(10, 26, 12, 0.12);
  border-radius: 6px;
}

.rehaul-who-icon {
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
  fill: none;
  stroke: #2e7d0e;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rehaul-who-label {
  color: #4a6650;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.14em;
}

.rehaul-who-card h3 {
  margin: 0;
  color: #0a1a0c;
  font: 600 20px/1.2 "Bricolage Grotesque", -apple-system,
    BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.rehaul-who-card p {
  margin: 0;
  color: #4a6650;
  font: 400 15px/1.65 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-who-meta {
  margin-top: auto;
  padding-top: 8px;
  color: #4a6650;
  font: 400 12px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.06em;
}

.rehaul-team {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-team-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
}

.rehaul-team-intro {
  margin: 0 0 48px;
  color: #4a6650;
  font: 400 clamp(18px, calc(16px + 0.5vw), 21px) / 1.6 "Figtree",
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.rehaul-team-stat {
  padding-top: 18px;
  border-top: 1px solid rgba(10, 26, 12, 0.12);
}

.rehaul-team-stat-value {
  color: #0a1a0c;
  font: 700 clamp(30px, 3vw, 40px) "Bricolage Grotesque", -apple-system,
    BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.rehaul-team-stat-label {
  margin-top: 6px;
  color: #4a6650;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.14em;
}

.rehaul-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.rehaul-team-card {
  padding: 26px;
  border: 1px solid rgba(10, 26, 12, 0.12);
  border-radius: 6px;
}

.rehaul-team-person {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  gap: 12px;
}

.rehaul-team-person img {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.rehaul-team-person h3 {
  margin: 0;
  color: #0a1a0c;
  font: 600 16px "Bricolage Grotesque", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
}

.rehaul-team-person h3 + div {
  color: #4a6650;
  font: 400 12px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.rehaul-team-card > p {
  margin: 0;
  color: #4a6650;
  font: 400 14px/1.6 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-team-credentials {
  margin-top: 12px;
  color: #4a6650;
  font: 400 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.04em;
}

.rehaul-team-credentials a {
  color: inherit;
}

.rehaul-team-credentials a:hover {
  color: #2e7d0e;
}

.rehaul-controls {
  border-bottom: 1px solid rgba(244, 248, 244, 0.12);
  background: #1e3a24;
}

.rehaul-controls-inner,
.rehaul-services-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
}

.rehaul-controls-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.5fr);
  align-items: start;
  gap: 56px;
}

.rehaul-controls-intro {
  position: sticky;
  top: 96px;
}

.rehaul-controls-eyebrow {
  margin-bottom: 18px;
  color: #a8ff45;
  font: 500 12px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rehaul-controls-intro h2 {
  margin: 0 0 18px;
  color: #f4f8f4;
  font: 600 clamp(30px, calc(20.8px + 2.8vw), 52px) / 1.08
    "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

.rehaul-controls-intro > p {
  margin: 0 0 28px;
  color: #a9bfae;
  font: 400 clamp(18px, calc(16px + 0.5vw), 21px) / 1.6 "Figtree",
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-controls-tags {
  display: flex;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.rehaul-controls-tags span {
  padding: 6px 13px;
  border: 1px solid rgba(168, 255, 69, 0.24);
  border-radius: 999px;
  color: #c9e8af;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.08em;
}

.rehaul-controls-intro > a {
  color: #a8ff45;
  font: 500 14px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.rehaul-controls-intro > a:hover {
  color: #f4f8f4;
}

.rehaul-controls-list {
  border-bottom: 1px solid rgba(244, 248, 244, 0.12);
}

.rehaul-control {
  border-top: 1px solid rgba(244, 248, 244, 0.12);
}

.rehaul-control summary {
  display: grid;
  width: 100%;
  padding: 20px 4px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 16px;
  list-style: none;
  text-align: left;
  cursor: pointer;
}

.rehaul-control summary::-webkit-details-marker {
  display: none;
}

.rehaul-control-number {
  color: #5c7562;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

.rehaul-control-heading {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.rehaul-control-heading strong {
  color: #f4f8f4;
  font: 600 16px "Bricolage Grotesque", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.rehaul-control-heading > span {
  color: #89a490;
  font: 400 13.5px/1.5 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-control-toggle {
  color: #a8ff45;
  font: 400 18px/1 "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  transition: transform 220ms ease;
}

.rehaul-control[open] .rehaul-control-toggle {
  transform: rotate(45deg);
}

.rehaul-control > p {
  max-width: 720px;
  margin: 0 0 20px;
  padding-left: 31px;
  color: #a9bfae;
  font: 400 14px/1.65 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-ai-features {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-ai-features-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) 28px;
}

.rehaul-ai-features-card {
  display: flex;
  padding: clamp(32px, 5vw, 56px);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  border-radius: 10px;
  background: #1e3a24;
  color: #f4f8f4;
}

.rehaul-ai-features-copy {
  max-width: 560px;
  flex: 1 1 420px;
}

.rehaul-ai-features-label {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  gap: 10px;
}

.rehaul-ai-features-label span:first-child {
  padding: 4px 10px;
  border-radius: 999px;
  background: #efffdd;
  color: #1e3a24;
  font: 500 11px/1.4 "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rehaul-ai-features-label span:last-child {
  color: rgba(244, 248, 244, 0.5);
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.16em;
}

.rehaul-ai-features h2 {
  margin: 0 0 12px;
  color: #f4f8f4;
  font: 600 clamp(24px, 2.6vw, 32px) / 1.15 "Bricolage Grotesque",
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.rehaul-ai-features-copy > p {
  margin: 0;
  color: rgba(244, 248, 244, 0.7);
  font: 400 15px/1.65 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-ai-feature-tags {
  display: flex;
  max-width: 420px;
  flex-wrap: wrap;
  gap: 10px;
}

.rehaul-ai-feature-tags span {
  padding: 8px 14px;
  border: 1px solid rgba(244, 248, 244, 0.16);
  border-radius: 999px;
  color: #c9e8af;
  font: 400 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.1em;
}

.rehaul-services {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-services .rehaul-platform-title a {
  color: inherit;
}

.rehaul-services-intro {
  max-width: 680px;
  margin: 0 0 40px;
  color: #4a6650;
  font: 400 clamp(18px, calc(16px + 0.5vw), 21px) / 1.6 "Figtree",
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 36px;
}

.rehaul-service-list {
  display: flex;
  flex-direction: column;
}

.rehaul-service-list button {
  display: flex;
  width: 100%;
  padding: 18px 14px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-top: 1px solid rgba(10, 26, 12, 0.12);
  border-left: 2px solid transparent;
  background: none;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.rehaul-service-list button:last-child {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
}

.rehaul-service-list button:hover {
  background: rgba(10, 26, 12, 0.04);
}

.rehaul-service-list button[aria-pressed="true"] {
  border-left-color: #2e7d0e;
  background: #e1f1d9;
}

.rehaul-service-list button > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.rehaul-service-list strong {
  color: #0a1a0c;
  font: 600 16px "Bricolage Grotesque", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.015em;
}

.rehaul-service-list small {
  color: #4a6650;
  font: 400 13px/1.45 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-service-list i {
  flex-shrink: 0;
  color: #2e7d0e;
  font: 400 15px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-style: normal;
}

.rehaul-service-detail {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid rgba(10, 26, 12, 0.12);
  border-radius: 6px;
  background: #fff;
}

.rehaul-service-detail-head {
  display: flex;
  padding: 14px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: rgba(10, 26, 12, 0.04);
  color: #4a6650;
  font: 500 10px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.16em;
}

.rehaul-service-detail-head span:last-child {
  color: #256a0b;
  font-size: 11px;
  letter-spacing: normal;
}

.rehaul-service-detail-body {
  display: flex;
  padding: 24px 22px;
  flex-direction: column;
  gap: 20px;
}

.rehaul-service-detail-body h3 {
  margin: 0;
  color: #0a1a0c;
  font: 600 20px/1.2 "Bricolage Grotesque", -apple-system,
    BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.rehaul-service-detail-label {
  margin-bottom: 10px;
  color: #4a6650;
  font: 500 10px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.14em;
}

.rehaul-service-tests {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rehaul-service-tests span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #4a6650;
  font: 400 14px/1.5 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
}

.rehaul-service-tests span::before {
  flex-shrink: 0;
  color: #2e7d0e;
  content: "›";
}

.rehaul-service-standards {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.rehaul-service-standards span {
  padding: 5px 10px;
  border: 1px solid rgba(10, 26, 12, 0.12);
  border-radius: 3px;
  color: #0a1a0c;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

.rehaul-service-deliverable {
  padding-top: 16px;
  border-top: 1px solid rgba(10, 26, 12, 0.12);
}

.rehaul-service-deliverable .rehaul-service-detail-label {
  margin-bottom: 8px;
}

.rehaul-service-deliverable p {
  margin: 0;
  color: #4a6650;
  font: 400 14px/1.55 "Figtree", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-service-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.rehaul-service-actions a:first-child {
  padding: 8px 16px;
  border-radius: 999px;
  background: #2e7d0e;
  color: #f4f8f4;
  font: 600 13px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.rehaul-service-actions a:first-child:hover {
  background: #256a0b;
}

.rehaul-service-actions a:last-child {
  color: #2e7d0e;
  font: 500 13px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.rehaul-compliance-strip {
  border-bottom: 1px solid rgba(10, 26, 12, 0.12);
  background: #f4f8f4;
}

.rehaul-compliance-inner {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.rehaul-compliance-inner > p {
  margin: 0;
  color: #4a6650;
  font: 500 11px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rehaul-compliance-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.rehaul-compliance-logos img {
  display: block;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.rehaul-compliance-logos img:nth-child(3) {
  height: 42px;
}

.rehaul-compliance-logos img:nth-child(4),
.rehaul-compliance-logos img:nth-child(5) {
  height: 34px;
}

/* Get started */
.rehaul-get-started {
  --rehaul-display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont,
    "Segoe UI", system-ui, sans-serif;
  --rehaul-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  --rehaul-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  background: #1e3a24;
  color: #f4f8f4;
}

.rehaul-get-started-inner {
  display: flex;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
  box-sizing: border-box;
}

.rehaul-get-started-copy {
  flex: 1 1 380px;
  max-width: 480px;
}

.rehaul-get-started .rehaul-section-kicker {
  margin-bottom: 20px;
  color: #728376;
  font: 500 12px var(--rehaul-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rehaul-get-started-copy h2 {
  margin: 0 0 18px;
  color: #f4f8f4;
  font: 600 clamp(30px, 3.4vw, 44px) / 1.1 var(--rehaul-display);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.rehaul-get-started-copy > p:first-of-type {
  margin: 0 0 28px;
  color: #9aac9d;
  font: 400 17px/1.6 var(--rehaul-body);
  text-wrap: pretty;
}

.rehaul-get-started-benefits {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 12px;
  color: #c5d0c7;
  font: 400 14.5px/1.5 var(--rehaul-body);
  list-style: none;
}

.rehaul-get-started-benefits li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.rehaul-get-started-benefits svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transform: translateY(2px);
  fill: none;
  stroke: #a8ff45;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rehaul-get-started-link,
.rehaul-get-started-login {
  font: 400 13px/1.5 var(--rehaul-body);
}

.rehaul-get-started-link {
  margin: 24px 0 0;
  color: #9aac9d;
}

.rehaul-get-started-login {
  margin: 10px 0 0;
  color: #728376;
}

.rehaul-get-started-link a,
.rehaul-get-started-login a {
  color: #a8ff45;
  font-weight: 500;
}

.rehaul-lead-form {
  display: flex;
  flex: 1 1 420px;
  max-width: 520px;
  padding: 32px;
  flex-direction: column;
  gap: 16px;
  border-radius: 12px;
  background: #f8faf7;
  box-sizing: border-box;
}

.rehaul-form-status {
  display: none;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #607065;
  font: 400 14px/1.5 var(--rehaul-body);
}

.rehaul-form-status:not(:empty) {
  display: block;
}

.rehaul-form-status[data-state="error"] {
  border-color: rgba(192, 0, 10, 0.24);
  background: rgba(192, 0, 10, 0.08);
  color: #a40009;
}

.rehaul-lead-form.is-success {
  min-height: 300px;
  justify-content: center;
}

.rehaul-lead-form.is-success > :not(.rehaul-form-status) {
  display: none;
}

.rehaul-lead-form.is-success .rehaul-form-status {
  padding: 24px 0;
  color: #607065;
  text-align: center;
}

.rehaul-form-status strong {
  display: block;
  margin-bottom: 10px;
  color: #176b35;
  font: 600 22px var(--rehaul-display);
  letter-spacing: -0.02em;
}

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

.rehaul-lead-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.rehaul-lead-form label > span {
  color: #607065;
  font: 500 11px var(--rehaul-mono);
  letter-spacing: 0.12em;
}

.rehaul-lead-form label b {
  color: #176b35;
  font-weight: inherit;
}

.rehaul-lead-form input,
.rehaul-lead-form select,
.rehaul-lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d7ddd7;
  border-radius: 7px;
  outline: none;
  background: #f8faf7;
  color: #142018;
  font: 400 15px var(--rehaul-body);
  box-sizing: border-box;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.rehaul-lead-form textarea {
  line-height: 1.5;
  resize: vertical;
}

.rehaul-lead-form input:focus,
.rehaul-lead-form select:focus,
.rehaul-lead-form textarea:focus {
  border-color: #176b35;
  box-shadow: 0 0 0 3px rgba(23, 107, 53, 0.1);
}

.rehaul-form-submit,
.rehaul-form-demo {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font: 600 15px var(--rehaul-body);
  box-sizing: border-box;
  cursor: pointer;
}

.rehaul-form-submit {
  border: 1px solid #a8ff45;
  background: #a8ff45;
  color: #0a1a0c;
}

.rehaul-form-submit:hover {
  background: #91e92f;
}

.rehaul-form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.rehaul-lead-form small {
  color: #607065;
  font: 400 12px/1.5 var(--rehaul-body);
  text-align: center;
}

.rehaul-form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #607065;
  font: 400 11px var(--rehaul-mono);
  letter-spacing: 0.1em;
}

.rehaul-form-divider::before,
.rehaul-form-divider::after {
  height: 1px;
  flex: 1;
  background: #d7ddd7;
  content: "";
}

.rehaul-form-demo {
  border: 1px solid #bfc8c0;
  color: #142018;
  background: transparent;
}

.rehaul-form-demo:hover {
  border-color: #176b35;
  color: #176b35;
}

.rehaul-footer-description {
  max-width: 240px;
  margin: 0 0 18px;
  color: rgba(244, 248, 244, 0.6);
  font: 400 13px/1.6 "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  text-wrap: pretty;
}

.rehaul-footer-reviews {
  display: flex;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(244, 248, 244, 0.12);
}

.rehaul-footer-rating,
.rehaul-footer-review-actions,
.rehaul-footer-stars {
  display: flex;
  align-items: center;
}

.rehaul-footer-rating {
  flex-wrap: wrap;
  gap: 14px;
}

.rehaul-footer-stars {
  gap: 3px;
}

.rehaul-footer-stars svg {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: #00b67a;
}

.rehaul-footer-stars .is-partial {
  opacity: 0.45;
}

.rehaul-footer-score {
  color: rgba(244, 248, 244, 0.9);
  font: 500 13px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.rehaul-footer-score strong {
  font-weight: 700;
}

.rehaul-footer-review-count {
  color: rgba(244, 248, 244, 0.5);
  font: 400 12px "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  letter-spacing: 0.06em;
}

.rehaul-footer-review-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.rehaul-footer-review-actions a {
  color: #a8ff45;
  font: 500 12.5px "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.rehaul-footer-review-actions a:hover {
  color: #f4f8f4;
}

.rehaul-footer-review-actions .rehaul-footer-rate {
  padding: 8px 16px;
  border-radius: 999px;
  background: #a8ff45;
  color: #0a1a0c;
  white-space: nowrap;
}

.rehaul-footer-review-actions .rehaul-footer-rate:hover {
  background: #8fe62a;
  color: #0a1a0c;
}

.footer .footer-bottom {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.rehaul-footer-company {
  color: rgba(244, 248, 244, 0.5);
  font: 400 12px/1.5 "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
}

.rehaul-footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 900px) {
  .rehaul-hero-globe {
    inset: 0;
    z-index: 0;
    opacity: 0.7;
  }

  .rehaul-hero-globe::after {
    position: absolute;
    inset: auto 0 0;
    height: 70%;
    background: linear-gradient(
      180deg,
      rgba(8, 17, 9, 0) 0%,
      rgba(8, 17, 9, 0.55) 50%,
      rgba(8, 17, 9, 0.95) 100%
    );
    content: "";
    pointer-events: none;
  }

  .rehaul-hero-inner {
    min-height: auto;
    padding: 88px 28px 100px;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
  }

  .rehaul-hero-content {
    flex-basis: 100%;
  }

  .rehaul-hero-result {
    width: 100%;
    max-width: 540px;
    margin: 32px 0 0;
  }

  .rehaul-controls-grid,
  .rehaul-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rehaul-get-started-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .rehaul-get-started-copy,
  .rehaul-lead-form {
    width: 100%;
    max-width: none;
  }

  .rehaul-controls-intro,
  .rehaul-service-detail {
    position: static;
  }
}

@media (max-width: 520px) {
  .rehaul-hero-inner {
    padding: 72px 20px 92px;
  }

  .rehaul-hero-title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .rehaul-hero-copy {
    font-size: 16px;
  }

  .rehaul-hero-actions,
  .rehaul-btn {
    width: 100%;
  }

  .rehaul-hero-scroll {
    display: none;
  }

  .rehaul-platform-inner,
  .rehaul-position-inner,
  .rehaul-how-inner,
  .rehaul-compare-inner,
  .rehaul-who-inner,
  .rehaul-team-inner,
  .rehaul-controls-inner,
  .rehaul-ai-features-inner,
  .rehaul-services-inner,
  .rehaul-compliance-inner,
  .rehaul-get-started-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .rehaul-lead-form {
    padding: 24px;
  }

  .rehaul-form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .rehaul-platform-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rehaul-product-url {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rehaul-release-flow {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .rehaul-release-arrow {
    padding: 0;
    transform: rotate(90deg);
    justify-self: center;
  }

  .rehaul-how-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rehaul-who-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .rehaul-who-card {
    padding: 24px;
  }

  .rehaul-team-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rehaul-hero-badge-dot,
  .rehaul-hero-scroll i {
    animation: none;
  }

  .rehaul-client-logo {
    transition: none;
  }
}
