:root {
  --bg: #f7f5f0;
  --ink: #1a1d1f;
  --muted: #6c6f73;
  --line: rgba(26, 29, 31, 0.12);
  --surface: #ffffff;
  --accent: #2f6f6a;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(26, 29, 31, 0.09);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body.hub {
  --bg: #08090b;
  --ink: #f7f2e7;
  --muted: rgba(247, 242, 231, 0.68);
  --line: rgba(255, 255, 255, 0.14);
  --surface: rgba(255, 255, 255, 0.92);
  --accent: #d9d9d9;
  position: relative;
  overflow-x: hidden;
  background: #030304;
}

.live-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #030304;
  opacity: 1;
}

.cursor-spotlight {
  display: none;
}

.scroll-progress {
  display: none;
}

body::selection {
  background: var(--ink);
  color: var(--surface);
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.content-protected,
.content-protected *:not(input):not(textarea):not(select) {
  -webkit-user-select: none;
  user-select: none;
}

.content-protected input,
.content-protected textarea,
.content-protected select {
  -webkit-user-select: text;
  user-select: text;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.hub .site-header {
  background: rgba(11, 13, 19, 0.68);
  color: var(--ink);
}

.hub .brand-mark {
  border-color: var(--ink);
  border-right-color: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border: 8px solid var(--ink);
  border-right-color: var(--accent);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--muted);
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--ink);
}

main {
  min-height: calc(100vh - 150px);
}

.hub-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 72px;
  text-align: center;
  perspective: 900px;
}

.hero-intro {
  display: grid;
  justify-items: center;
  min-width: 0;
  transform:
    translate3d(
      calc(var(--parallax-x, 0px) * var(--depth, 0)),
      calc(var(--parallax-y, 0px) * var(--depth, 0)),
      0
    )
    rotateX(calc(var(--parallax-y, 0px) * -0.018deg))
    rotateY(calc(var(--parallax-x, 0px) * 0.018deg));
  transition: transform 380ms ease-out;
  will-change: transform;
}

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

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: 5.8rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.glow-title {
  position: relative;
  display: inline-block;
  padding: 18px 24px 22px;
  margin-left: -24px;
  isolation: isolate;
  transform:
    translate(var(--bubble-x, 0px), var(--bubble-y, 0px))
    scaleX(var(--bubble-scale-x, 1))
    scaleY(var(--bubble-scale-y, 1));
  transform-origin: center;
  transition:
    transform 420ms cubic-bezier(0.18, 1.6, 0.28, 1),
    text-shadow 220ms ease;
  text-shadow:
    0 0 18px rgba(214, 160, 45, 0.28),
    0 0 46px rgba(214, 160, 45, 0.16);
  cursor: default;
  will-change: transform;
}

.glow-title::before {
  position: absolute;
  inset: -5px;
  z-index: -2;
  content: "";
  border-radius: 999px;
  background: conic-gradient(
    from var(--snake-angle, 0deg),
    transparent 0deg,
    transparent 58deg,
    rgba(255, 214, 99, 0.1) 76deg,
    #ffd663 96deg,
    #c99727 118deg,
    transparent 142deg,
    transparent 360deg
  );
  filter: blur(9px);
  animation: snakeGlow 4.8s linear infinite;
  transform:
    scaleX(var(--bubble-frame-x, 1))
    scaleY(var(--bubble-frame-y, 1));
  transition: transform 340ms cubic-bezier(0.18, 1.6, 0.28, 1);
}

.glow-title::after {
  position: absolute;
  inset: 4px;
  z-index: -1;
  content: "";
  border-radius: 999px;
  background: rgba(13, 15, 22, 0.74);
  backdrop-filter: blur(10px);
  transform:
    scaleX(var(--bubble-frame-x, 1))
    scaleY(var(--bubble-frame-y, 1));
  transition: transform 340ms cubic-bezier(0.18, 1.6, 0.28, 1);
}

.glow-title.is-squishy {
  text-shadow:
    0 0 22px rgba(255, 225, 140, 0.44),
    0 0 68px rgba(255, 225, 140, 0.24);
}

@property --snake-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes snakeGlow {
  to {
    --snake-angle: 360deg;
  }
}

.hub-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.search-shell {
  position: relative;
  z-index: 5;
  width: min(620px, 100%);
  margin-top: 30px;
}

.search-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: left;
  text-transform: uppercase;
}

.search-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(10, 11, 15, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 24px 80px rgba(0, 0, 0, 0.26),
    0 0 44px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.search-box::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.search-box:focus-within {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 58px rgba(255, 255, 255, 0.18);
}

.search-box:focus-within::before {
  transform: translateX(120%);
}

.search-box input {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 62px;
  padding: 0 58px 0 22px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 750;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.search-glint {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  transform: translateY(-50%);
}

.search-glint::after {
  position: absolute;
  right: -8px;
  bottom: -7px;
  width: 9px;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  transform: rotate(45deg);
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.search-results.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-result {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 14px;
  background: rgba(12, 13, 18, 0.84);
  color: #ffffff;
  text-align: left;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.search-result:hover,
.search-result:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.search-result-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 900;
}

.search-result strong {
  display: block;
  margin-bottom: 4px;
}

.search-result span:not(.search-result-index) {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.search-result-arrow {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.section-title {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 26px;
}

.hub .section-title,
.hub .hub-hero {
  color: var(--ink);
}

.hub .showcase-card {
  background: rgba(255, 255, 255, 0.9);
  color: #171a1d;
  backdrop-filter: blur(12px);
}

.hub .card-copy {
  color: rgba(23, 26, 29, 0.66);
}

.hub .section-title .eyebrow,
.hub .hero-intro .eyebrow {
  color: #ffffff;
}

.hub .button {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hub .button.primary {
  border-color: #ffffff;
  background: #ffffff;
  color: #08090b;
}

.hub .button:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #15171a;
}

.section-title h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 3.7rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.demos-title {
  padding-top: 84px;
  padding-bottom: 28px;
  color: var(--ink);
}

.demos-title h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.demos-title p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
}

.demos-grid {
  padding-bottom: 80px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(70px, 10vw, 120px);
  perspective: 1200px;
}

.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 452px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(26, 29, 31, 0.05);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
  transform:
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(var(--lift, 0px));
  transform-style: preserve-3d;
  will-change: transform;
}

.showcase-card:hover {
  --lift: -7px;
  border-color: color-mix(in srgb, var(--accent) 44%, var(--line));
  box-shadow: 0 28px 70px rgba(26, 29, 31, 0.14);
}

.showcase-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(255, 255, 255, 0.46),
    transparent 34%
  );
  opacity: var(--shine-opacity, 0);
  transition: opacity 180ms ease;
}

.card-image {
  display: block;
  aspect-ratio: 1.34;
  overflow: hidden;
  background: #ddd6c8;
  transform: translateZ(22px);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.02);
  transition: transform 650ms ease;
}

.showcase-card:hover .card-image img {
  transform: scale(1.055);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 24px 0;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  transform: translateZ(34px);
}

.card-title {
  display: block;
  padding: 24px 24px 0;
  margin-bottom: 16px;
  font-size: 1.82rem;
  font-weight: 800;
  line-height: 1;
  transform: translateZ(38px);
}

.card-copy {
  display: block;
  flex: 1;
  max-width: 280px;
  padding: 0 24px;
  color: color-mix(in srgb, currentColor 72%, transparent);
  line-height: 1.6;
  transform: translateZ(30px);
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin-top: 26px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 850;
  transform: translateZ(34px);
}

.card-link::after {
  content: ">";
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.showcase-card:hover .card-link::after {
  transform: translateX(4px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer a {
  color: var(--ink);
  font-weight: 700;
}

.inquiry-page {
  min-height: 100vh;
}

.inquiry-header nav {
  justify-content: flex-end;
}

.inquiry-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 76px);
  padding: 42px 18px 56px;
}

.inquiry-card {
  position: relative;
  width: min(780px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 8, 12, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  transform:
    translate3d(
      calc(var(--parallax-x, 0px) * var(--depth, 0)),
      calc(var(--parallax-y, 0px) * var(--depth, 0)),
      0
    )
    rotateX(calc(var(--parallax-y, 0px) * -0.01deg))
    rotateY(calc(var(--parallax-x, 0px) * 0.01deg));
  transform-style: preserve-3d;
  transition:
    transform 420ms ease-out,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
}

.inquiry-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.62);
}

.inquiry-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-fill {
  display: block;
  width: var(--wizard-progress, 20%);
  height: 100%;
  background: linear-gradient(90deg, #ffffff, #b8b8b8);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.68);
  transition: width 300ms ease;
}

.inquiry-form {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 6vw, 54px);
}

.hidden-check {
  display: none;
}

.inquiry-step {
  display: none;
  min-height: 420px;
}

.inquiry-step.is-active {
  display: block;
  animation: stepIn 320ms ease both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.step-count {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-step h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 3.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.step-copy {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

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

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

.maintenance-offer {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 214, 99, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 214, 99, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.maintenance-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 900;
}

.maintenance-head span {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.maintenance-head strong {
  color: #ffd663;
  white-space: nowrap;
}

.maintenance-offer > p,
.maintenance-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.maintenance-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 14px 0 12px;
}

.maintenance-details {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
}

.maintenance-details summary {
  color: #ffffff;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
}

.maintenance-details p {
  padding-top: 10px;
}

.choice-pill,
.wizard-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.065);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 170ms ease,
    background 170ms ease,
    border-color 170ms ease,
    color 170ms ease;
}

.choice-pill::before,
.wizard-button::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.choice-pill:hover::before,
.wizard-button:hover::before {
  transform: translateX(120%);
}

.choice-pill {
  min-height: 62px;
  padding: 0 12px;
  font-size: 0.9rem;
  line-height: 1.18;
}

.choice-pill:hover,
.choice-pill.is-selected {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.78);
  background: #ffffff;
  color: #08090b;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.visually-hidden-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.inquiry-input {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  outline: 0;
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.big-input {
  min-height: 78px;
  font-size: 1.18rem;
}

.inquiry-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.inquiry-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 42px rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.inquiry-input:focus::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.inquiry-input.has-error,
.inquiry-input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 118, 118, 0.9);
  background: rgba(120, 18, 18, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 34px rgba(255, 72, 72, 0.16);
}

.inquiry-textarea {
  min-height: 190px;
  padding-top: 18px;
  resize: vertical;
  line-height: 1.55;
}

.small-textarea {
  min-height: 120px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.captcha-panel {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.captcha-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}

.inquiry-summary {
  display: grid;
  gap: 1px;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
}

.inquiry-summary div {
  padding: 16px;
  background: rgba(8, 9, 12, 0.62);
}

.inquiry-summary span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-summary strong {
  display: block;
  color: #ffffff;
  line-height: 1.45;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-grid .inquiry-input:first-child {
  grid-column: 1 / -1;
}

.wizard-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.wizard-button {
  min-height: 58px;
  padding: 0 20px;
}

.wizard-button:not(.ghost) {
  background: #ffffff;
  color: #08090b;
  box-shadow: 0 18px 52px rgba(255, 255, 255, 0.08);
}

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

.wizard-button.ghost {
  color: rgba(255, 255, 255, 0.72);
}

.wizard-button[disabled] {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.submit-button {
  display: none;
}

.is-final .submit-button {
  display: block;
}

.is-final #next-step {
  display: none;
}

.success-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease;
}

.success-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.submission-locked {
  overflow: hidden;
}

.submission-locked .site-header,
.submission-locked .inquiry-main,
.submission-locked .legal-footer,
.submission-locked .cursor-spotlight,
.submission-locked .scroll-progress {
  visibility: hidden;
}

.success-popup.is-locked {
  z-index: 1000;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 218, 100, 0.18), transparent 32%),
    linear-gradient(135deg, #050505 0%, #0c0a02 46%, #000000 100%);
  backdrop-filter: none;
}

.success-box {
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(8, 9, 12, 0.92);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.54);
  color: #ffffff;
  text-align: center;
}

.success-popup.is-locked .success-box {
  width: min(560px, calc(100% - 36px));
  border-color: rgba(255, 224, 130, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 221, 128, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(3, 3, 4, 0.96);
}

.success-mark {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    rgba(255, 255, 255, 0.08);
  position: relative;
}

.success-mark::after {
  position: absolute;
  left: 19px;
  top: 15px;
  width: 15px;
  height: 25px;
  content: "";
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.success-box h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1;
}

.success-box p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.reset-inquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.reset-inquiry-button:hover {
  color: #ffd663;
}

.legal-footer {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(48px, 8vw, 96px) auto 0;
  padding: clamp(28px, 5vw, 48px) 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-footer-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 5vw, 72px);
}

.legal-brand {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.legal-brand span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
}

.legal-panels {
  display: grid;
  gap: 12px;
}

.legal-panel {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.legal-panel summary {
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.legal-panel summary::-webkit-details-marker {
  display: none;
}

.legal-panel summary::after {
  float: right;
  content: "+";
  color: var(--accent);
}

.legal-panel[open] summary::after {
  content: "-";
}

.legal-panel p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.hub .legal-footer {
  color: rgba(255, 255, 255, 0.62);
}

.hub .legal-brand,
.hub .legal-panel summary {
  color: #ffffff;
}

.hub .legal-panel {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.hub .legal-panel p,
.hub .legal-brand span {
  color: rgba(255, 255, 255, 0.62);
}

.demo-page {
  --bg: #f7f5f0;
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(38px, 7vw, 84px) 0;
}

.demo-copy h1 {
  margin-bottom: 26px;
  font-size: 6rem;
}

.demo-copy > p {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
  will-change: transform;
}

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

.button:hover {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #d9d3c8;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.02);
}

.media-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 18px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
}

.media-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.media-panel span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 6vw, 92px);
}

.section h2 {
  margin-bottom: 18px;
  font-size: 3.8rem;
  line-height: 0.98;
}

.section-lede {
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  padding: 25px;
  background: var(--surface);
}

.feature-item span {
  color: var(--accent);
  font-weight: 850;
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  padding: 26px;
  background: var(--surface);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 3.6rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  line-height: 1.5;
}

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--ink);
  color: var(--surface);
}

.mini-cta h2 {
  max-width: 660px;
  margin-bottom: 0;
}

.mini-cta .button {
  border-color: var(--surface);
  color: var(--surface);
}

.industry-block {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.block-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.block-head h2 {
  max-width: 660px;
  margin: 0;
  font-size: 3.2rem;
  line-height: 0.98;
}

.block-head p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.visual-card,
.listing-card,
.vehicle-card,
.product-card,
.course-card,
.treatment-card,
.impact-card,
.case-card,
.schedule-card,
.project-card,
.care-card,
.legal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.visual-card img,
.listing-card img,
.vehicle-card img,
.product-card img,
.project-card img,
.care-card img,
.case-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-pad {
  padding: 22px;
}

.card-pad h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.card-pad p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.price-row,
.tag-row,
.menu-row,
.schedule-row,
.inventory-meta,
.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tag-row {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 16px;
}

.tag-row span,
.inventory-meta span,
.course-meta span {
  padding: 8px 10px;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.vehicle-card.featured {
  grid-row: span 2;
}

.vehicle-card.featured img {
  height: 410px;
}

.vehicle-price {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
}

.sold-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.sold-strip span {
  padding: 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.menu-board {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.menu-feature {
  min-height: 460px;
  padding: 30px;
  background:
    linear-gradient(rgba(26, 29, 31, 0.18), rgba(26, 29, 31, 0.74)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=900&q=80")
      center / cover;
  color: var(--surface);
}

.menu-feature h3 {
  margin-top: 270px;
  font-size: 2.4rem;
}

.menu-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.menu-row {
  min-height: 104px;
  padding: 22px;
  background: var(--surface);
}

.menu-row strong {
  display: block;
  margin-bottom: 6px;
}

.menu-row span {
  color: var(--accent);
  font-weight: 900;
}

.schedule-board,
.treatment-menu,
.impact-grid,
.course-grid,
.product-grid,
.listing-grid,
.project-grid,
.care-grid,
.legal-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.schedule-card,
.treatment-card,
.impact-card,
.course-card,
.product-card,
.legal-card {
  padding: 24px;
}

.schedule-card strong,
.treatment-card strong,
.impact-card strong,
.course-card strong,
.product-card strong,
.legal-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.schedule-row,
.price-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-weight: 900;
}

.portfolio-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

.case-card:nth-child(1) {
  grid-row: span 2;
}

.case-card:nth-child(1) img {
  height: 520px;
}

.listing-card img,
.product-card img,
.project-card img,
.care-card img,
.case-card img {
  filter: saturate(0.9) contrast(1.02);
}

.donation-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.donation-bar a,
.donation-bar span {
  padding: 20px;
  background: var(--surface);
  font-weight: 900;
}

.donation-bar a {
  background: var(--accent);
  color: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease var(--delay, 0ms),
    transform 520ms ease var(--delay, 0ms);
}

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

.construction {
  --bg: #f4f1ec;
  --accent: #d97828;
}

.clinic {
  --bg: #eef4f2;
  --accent: #347f7d;
}

.restaurant {
  --bg: #f7f0ea;
  --accent: #b44234;
}

.fitness {
  --bg: #f1f4e8;
  --accent: #6f8f3a;
}

.legal {
  --bg: #f1f2f3;
  --accent: #516173;
}

.creative {
  --bg: #f5f0f7;
  --accent: #8d5c9f;
}

.real-estate {
  --bg: #f3eee7;
  --accent: #9b7348;
}

.ecommerce {
  --bg: #edf3f7;
  --accent: #2f6f96;
}

.automotive {
  --bg: #f2eeeb;
  --accent: #8a3d2d;
}

.education {
  --bg: #f0eff8;
  --accent: #6e6ab8;
}

.beauty {
  --bg: #f8eef2;
  --accent: #b15b79;
}

.nonprofit {
  --bg: #edf4ef;
  --accent: #4f7a5a;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
  }

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

  .demo-hero,
  .split,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .block-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .block-head h2 {
    font-size: 2.8rem;
  }

  .visual-grid,
  .schedule-board,
  .treatment-menu,
  .impact-grid,
  .course-grid,
  .product-grid,
  .listing-grid,
  .project-grid,
  .care-grid,
  .legal-grid,
  .case-grid,
  .vehicle-grid,
  .menu-board,
  .portfolio-wall {
    grid-template-columns: 1fr;
  }

  .vehicle-card.featured,
  .case-card:nth-child(1) {
    grid-row: auto;
  }

  .vehicle-card.featured img,
  .case-card:nth-child(1) img {
    height: 300px;
  }

  .sold-strip,
  .donation-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  h1,
  .demo-copy h1 {
    font-size: 4rem;
  }

  .section h2 {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 3rem;
  }

  .stat strong {
    font-size: 3rem;
  }

  .demo-hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 440px;
  }

  .mini-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body.hub {
    background: #030304;
  }

  .scroll-progress {
    display: none;
  }

  .site-header,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hub-hero,
  .section-title,
  .showcase-grid,
  .demo-hero,
  .section,
  .industry-block {
    width: calc(100% - 32px);
  }

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

  .showcase-card {
    min-height: 430px;
  }

  h1,
  .demo-copy h1 {
    font-size: 2.65rem;
  }

  .hub-hero p:not(.eyebrow),
  .demo-copy > p {
    font-size: 1rem;
  }

  .search-box input {
    min-height: 56px;
    font-size: 0.92rem;
  }

  .search-result {
    grid-template-columns: 38px 1fr auto;
    min-height: 66px;
    padding: 12px;
  }

  .search-result-index {
    width: 36px;
    height: 36px;
  }

  .hub-hero {
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .inquiry-header {
    align-items: center;
    flex-direction: row;
    min-height: 68px;
  }

  .inquiry-header nav {
    width: auto;
    padding-bottom: 0;
  }

  .inquiry-main {
    min-height: calc(100vh - 68px);
    padding: 14px 12px 28px;
    place-items: start center;
  }

  .inquiry-form {
    padding: 22px 16px 16px;
  }

  .inquiry-step {
    min-height: 430px;
  }

  .inquiry-step h1 {
    font-size: 2.35rem;
  }

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

  .choice-pill,
  .wizard-button {
    min-height: 54px;
  }

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

  .legal-footer {
    width: calc(100% - 32px);
    margin-top: 42px;
  }

  .legal-footer-inner {
    grid-template-columns: 1fr;
  }

  .legal-panel summary {
    padding: 16px;
  }

  .legal-panel p {
    padding: 0 16px 16px;
  }

  .wizard-actions {
    position: sticky;
    bottom: 10px;
    margin-top: 18px;
    padding: 10px;
    background: rgba(8, 9, 12, 0.72);
    backdrop-filter: blur(16px);
  }

  .card-title {
    font-size: 1.75rem;
  }

  .card-meta,
  .card-title,
  .card-copy,
  .card-link {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section h2 {
    font-size: 2.25rem;
  }

  .section-title h2 {
    font-size: 2.25rem;
  }

  .block-head h2 {
    font-size: 2.15rem;
  }

  .visual-card img,
  .listing-card img,
  .vehicle-card img,
  .product-card img,
  .project-card img,
  .care-card img,
  .case-card img,
  .vehicle-card.featured img,
  .case-card:nth-child(1) img {
    height: 220px;
  }

  .sold-strip,
  .donation-bar {
    grid-template-columns: 1fr;
  }

  .stat strong {
    font-size: 2.35rem;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-spotlight,
  .scroll-progress {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
