:root {
  --home-bg: #f5f6f7;
  --home-surface: #ffffff;
  --home-ink: #252836;
  --home-text: #2b2d42;
  --home-muted: #66717f;
  --home-line: #d7dee6;
  --home-steel: #8d99ae;
  --home-bronze: #d4a373;
  --home-bronze-dark: #9a6333;
  --home-green: #18705f;
  --home-shadow: 0 14px 38px rgba(37, 40, 54, 0.08);
  --home-shadow-soft: 0 8px 22px rgba(37, 40, 54, 0.05);
}

.home-page {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(212, 163, 115, 0.10), transparent 28%),
    linear-gradient(315deg, rgba(141, 153, 174, 0.12), transparent 34%),
    var(--home-bg);
  color: var(--home-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home-page * {
  box-sizing: border-box;
}

.home-page {
  overflow-x: hidden;
}

.home-page img,
.home-page select,
.home-page input,
.home-page button,
.home-page textarea {
  max-width: 100%;
}

.home-page a {
  color: inherit;
  text-decoration: none;
}

.home-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px clamp(18px, 3vw, 44px);
  border-bottom: 1px solid rgba(141, 153, 174, 0.24);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--home-ink);
  font-weight: 900;
}

.home-brand img {
  width: 112px;
  height: 34px;
  object-fit: contain;
  border-radius: 4px;
  background: #070707;
}

.home-brand span {
  letter-spacing: 0.01em;
}

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

.home-developer-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-left: 12px;
  border-left: 1px solid var(--home-line);
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.home-developer-brand img {
  width: 92px;
  height: 26px;
  object-fit: contain;
  border-radius: 4px;
  background: #080808;
}

.home-links,
.home-actions,
.home-hero-actions,
.home-demo-actions,
.home-showroom-actions,
.home-footer nav {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.home-links {
  justify-content: center;
  color: var(--home-muted);
  font-weight: 800;
}

.home-links a {
  padding: 8px 9px;
  border-radius: 8px;
}

.home-links a:hover {
  background: #eef1f3;
  color: var(--home-ink);
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: var(--home-surface);
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.home-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 40, 54, 0.08);
}

.home-button-primary {
  border-color: var(--home-green);
  background: var(--home-green);
  color: #ffffff;
}

.home-button-bronze {
  border-color: #c28a56;
  background: var(--home-bronze);
  color: #261608;
}

.home-button-ghost {
  background: #ffffff;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(38px, 5vw, 62px) clamp(18px, 4vw, 56px) 28px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(212, 163, 115, 0.48);
  border-radius: 999px;
  background: rgba(212, 163, 115, 0.13);
  color: var(--home-bronze-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero h1,
.home-section-heading h2,
.home-demo-card h2,
.home-join h2 {
  margin: 14px 0 0;
  color: var(--home-ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.home-section-heading h2,
.home-demo-card h2,
.home-join h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.08;
}

.home-hero p,
.home-demo-card p,
.home-join p,
.home-workflow p,
.home-gallery-card span,
.home-strip span,
.home-showroom-panel span {
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.55;
}

.home-hero p {
  max-width: 650px;
  margin: 18px 0 0;
}

.home-hero-actions {
  margin-top: 24px;
}

.home-hero-visual {
  min-width: 0;
}

.home-slab-stage {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(141, 153, 174, 0.28);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--home-shadow);
}

.home-slab-img {
  position: absolute;
  inset: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  object-fit: cover;
  border-radius: 8px;
}

.home-sink-img {
  position: absolute;
  left: 46px;
  bottom: 28px;
  width: min(38%, 250px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.16));
}

.home-measure-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  width: min(310px, calc(100% - 56px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(28, 31, 42, 0.80);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.home-measure-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.38;
}

.home-strip,
.home-section,
.home-footer {
  width: min(100% - 36px, 1320px);
  margin-inline: auto;
}

.home-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.home-strip article,
.home-workflow-grid article,
.home-showroom-layout,
.home-gallery-card,
.home-demo-card,
.home-join,
.home-join-card {
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: var(--home-surface);
  box-shadow: var(--home-shadow-soft);
}

.home-strip article {
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 16px;
}

.home-strip strong,
.home-workflow h3,
.home-gallery-card strong,
.home-join-card h3 {
  color: var(--home-ink);
  font-size: 18px;
}

.home-section {
  padding-top: clamp(44px, 6vw, 72px);
}

.home-section-heading {
  max-width: 820px;
}

.home-showroom-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  margin-top: 22px;
  padding: 18px;
}

.home-showroom-preview {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #f7f8fa;
}

.home-showroom-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.home-showroom-sink {
  position: absolute;
  left: 44px;
  bottom: 34px;
  width: 178px;
  height: 132px;
  border: 12px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(210, 218, 224, 0.72);
  box-shadow: inset 0 0 0 3px rgba(141, 153, 174, 0.45), 0 18px 32px rgba(0, 0, 0, 0.14);
}

.home-showroom-panel {
  display: grid;
  align-content: start;
  gap: 13px;
}

.home-showroom-panel label {
  display: grid;
  gap: 6px;
  color: var(--home-ink);
  font-weight: 900;
}

.home-showroom-panel select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--home-ink);
  padding: 0 11px;
  font: inherit;
}

.home-showroom-actions {
  margin-top: 6px;
}

.home-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.home-workflow-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-top: 3px solid rgba(212, 163, 115, 0.78);
}

.home-workflow-grid article > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(141, 153, 174, 0.16);
  color: var(--home-text);
  font-weight: 900;
}

.home-workflow-grid h3,
.home-workflow-grid p {
  margin: 0;
}

.home-demo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.home-demo-card p {
  max-width: 720px;
  margin: 12px 0 0;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.home-gallery-card {
  overflow: hidden;
}

.home-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-gallery-card div {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.home-gallery-owner {
  display: flex;
  align-items: center;
  gap: 9px;
}

.home-gallery-owner img {
  width: 42px;
  height: 26px;
  object-fit: contain;
  border-radius: 4px;
  background: #080808;
}

.home-gallery-owner strong {
  min-width: 0;
}

.home-join {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 20px;
  align-items: center;
  margin-top: clamp(44px, 6vw, 72px);
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(43, 45, 66, 0.97), rgba(24, 27, 36, 0.98)),
    var(--home-ink);
}

.home-join h2,
.home-join p {
  color: #ffffff;
}

.home-join p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.72);
}

.home-join-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #fbfbfa;
}

.home-join-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--home-muted);
  line-height: 1.45;
}

.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0 42px;
  color: var(--home-muted);
}

.home-footer span {
  color: var(--home-ink);
  font-weight: 900;
}

.home-footer a {
  font-weight: 800;
}

.home-v1-demo {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(12px, 2vw, 24px);
  background: rgba(15, 18, 24, 0.78);
  backdrop-filter: blur(10px);
}

.home-v1-demo[hidden] {
  display: none;
}

.home-v1-demo-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  width: min(1180px, 100%);
  max-height: min(760px, calc(100vh - 24px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #f7f8fa;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.home-v1-demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--home-line);
  background: #ffffff;
}

.home-v1-demo-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.home-v1-demo-title img {
  width: 94px;
  height: 30px;
  object-fit: contain;
  border-radius: 4px;
  background: #080808;
}

.home-v1-demo-title strong {
  color: var(--home-ink);
  font-size: 15px;
}

.home-v1-demo-title span {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 800;
}

.home-v1-demo-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-v1-demo-control {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 36px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--home-ink);
  font-weight: 900;
  cursor: pointer;
}

.home-v1-demo-control:hover {
  border-color: var(--home-green);
}

.home-v1-demo-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 16px;
  min-width: 0;
  min-height: 0;
  padding: 16px;
}

.home-v1-demo-stage {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f1f4f6);
}

.home-v1-demo-screen {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: clamp(14px, 2vw, 24px);
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.home-v1-demo-screen.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.home-v1-demo-browser {
  display: grid;
  gap: 8px;
  max-width: 410px;
  margin: 18px auto 0;
  padding: 22px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--home-shadow-soft);
}

.home-v1-demo-browser img {
  width: 132px;
  height: 40px;
  margin: 0 auto 8px;
  object-fit: contain;
  border-radius: 4px;
  background: #080808;
}

.home-v1-demo-browser h3,
.home-v1-demo-office h3,
.home-v1-demo-measure h3,
.home-v1-demo-offer h3,
.home-v1-demo-layout h3 {
  margin: 0;
  color: var(--home-ink);
  font-size: 22px;
}

.home-v1-demo-browser p,
.home-v1-demo-office p,
.home-v1-demo-offer p,
.home-v1-demo-layout p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.45;
}

.home-v1-demo-field {
  display: grid;
  gap: 6px;
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 900;
}

.home-v1-demo-input,
.home-v1-demo-select {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #cfd9e3;
  border-radius: 8px;
  background: #ffffff;
  color: var(--home-ink);
  font-weight: 800;
}

.home-v1-demo-input.is-writing::after {
  content: "";
  width: 2px;
  height: 18px;
  margin-left: 3px;
  background: var(--home-green);
  animation: v1DemoCaret 0.72s steps(1) infinite;
}

.home-v1-demo-submit {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 8px;
  background: var(--home-green);
  color: #ffffff;
  font-weight: 900;
}

.home-v1-demo-office,
.home-v1-demo-measure,
.home-v1-demo-offer,
.home-v1-demo-layout {
  display: grid;
  gap: 12px;
}

.home-v1-demo-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.home-v1-demo-tab {
  padding: 9px 12px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 900;
}

.home-v1-demo-tab.is-active {
  border-color: var(--home-green);
  background: rgba(24, 112, 95, 0.10);
  color: var(--home-green);
}

.home-v1-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.home-v1-demo-mini-card,
.home-v1-demo-chat,
.home-v1-demo-board,
.home-v1-demo-summary {
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--home-shadow-soft);
}

.home-v1-demo-mini-card {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 14px;
}

.home-v1-demo-mini-card span {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 800;
}

.home-v1-demo-mini-card strong {
  color: var(--home-ink);
  font-size: 18px;
}

.home-v1-demo-showroom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 12px;
  min-width: 0;
}

.home-v1-demo-slab {
  position: relative;
  min-width: 0;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #f0f2f4;
}

.home-v1-demo-slab > img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.home-v1-demo-sink {
  position: absolute;
  left: 38px;
  bottom: 30px;
  width: 180px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.18));
}

.home-v1-demo-chat {
  display: grid;
  gap: 9px;
  align-content: end;
  padding: 12px;
}

.home-v1-demo-bubble {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef2f5;
  color: var(--home-ink);
  font-weight: 800;
  line-height: 1.35;
}

.home-v1-demo-bubble.user {
  justify-self: end;
  background: var(--home-green);
  color: #ffffff;
}

.home-v1-demo-measure-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 12px;
}

.home-v1-demo-board {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(#e5edf5 1px, transparent 1px),
    linear-gradient(90deg, #e5edf5 1px, transparent 1px),
    #fbfcfd;
  background-size: 24px 24px;
}

.home-v1-demo-stone-shape {
  position: absolute;
  left: 9%;
  top: 27%;
  width: 75%;
  height: 34%;
  border: 2px solid #252836;
  background: rgba(212, 163, 115, 0.26);
}

.home-v1-demo-cutout {
  position: absolute;
  left: 15%;
  top: 34%;
  width: 22%;
  height: 19%;
  border: 2px solid #4ca3d9;
  background: rgba(197, 214, 207, 0.72);
}

.home-v1-demo-label {
  position: absolute;
  color: #101520;
  font-size: 13px;
  font-weight: 900;
}

.home-v1-demo-label.front {
  left: 40%;
  bottom: 27%;
}

.home-v1-demo-label.left {
  left: 6%;
  top: 43%;
}

.home-v1-demo-label.diag {
  left: 42%;
  top: 38%;
}

.home-v1-demo-summary {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px;
}

.home-v1-demo-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #edf1f5;
  padding-bottom: 8px;
  color: var(--home-muted);
  font-size: 13px;
}

.home-v1-demo-summary-row strong {
  min-width: 0;
  color: var(--home-ink);
  overflow-wrap: anywhere;
  text-align: right;
}

.home-v1-demo-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.home-v1-demo-offer-total {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  background: #232634;
  color: #ffffff;
}

.home-v1-demo-offer-total span {
  color: rgba(255, 255, 255, 0.72);
}

.home-v1-demo-offer-total strong {
  font-size: 26px;
}

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

.home-v1-demo-slab-plan {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid #b9c5d0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    url("../../uploads/stones/belenco/belenco-spa-black-8727.webp") center / cover;
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.08);
}

.home-v1-demo-slab-size {
  position: absolute;
  left: 14px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--home-ink);
  font-size: 13px;
  font-weight: 900;
}

.home-v1-demo-layout-piece {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 3px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(212, 163, 115, 0.82);
  color: #17120d;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.home-v1-demo-layout-piece strong {
  font-size: 14px;
}

.home-v1-demo-layout-piece span {
  font-size: 12px;
  font-weight: 900;
}

.home-v1-demo-layout-piece.main {
  left: 8%;
  top: 22%;
  width: 68%;
  height: 30%;
}

.home-v1-demo-layout-piece.backsplash {
  left: 8%;
  top: 60%;
  width: 68%;
  height: 19%;
}

.home-v1-demo-layout-piece.hood {
  right: 8%;
  top: 27%;
  width: 13%;
  height: 44%;
  background: rgba(141, 153, 174, 0.88);
}

.home-v1-demo-cutmark {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 54px;
  min-height: 28px;
  padding: 0 8px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: rgba(24, 112, 95, 0.92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.home-v1-demo-cutmark.sink {
  left: 18%;
  top: 33%;
}

.home-v1-demo-cutmark.hob {
  left: 51%;
  top: 33%;
}

.home-v1-demo-cutmark.tap {
  left: 28%;
  top: 23%;
}

.home-v1-demo-timeline {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  min-height: 0;
}

.home-v1-demo-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe5eb;
}

.home-v1-demo-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-green), var(--home-bronze));
  transition: width 0.28s linear;
}

.home-v1-demo-steps {
  display: grid;
  align-content: start;
  gap: 8px;
  overflow: auto;
}

.home-v1-demo-step {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--home-muted);
}

.home-v1-demo-step.is-active {
  border-color: var(--home-green);
  color: var(--home-ink);
  box-shadow: var(--home-shadow-soft);
}

.home-v1-demo-step strong {
  color: var(--home-ink);
  font-size: 14px;
}

.home-v1-demo-step span {
  font-size: 12px;
  line-height: 1.35;
}

.home-v1-demo-caption {
  min-height: 90px;
  padding: 12px;
  border: 1px solid rgba(24, 112, 95, 0.22);
  border-radius: 8px;
  background: rgba(24, 112, 95, 0.08);
  color: var(--home-ink);
  font-weight: 900;
  line-height: 1.4;
}

@keyframes v1DemoCaret {
  50% {
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .home-nav {
    grid-template-columns: 1fr auto;
  }

  .home-links {
    display: none;
  }

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

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

  .home-showroom-layout,
  .home-demo-card,
  .home-join {
    grid-template-columns: 1fr;
  }

  .home-v1-demo-body {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .home-v1-demo-stage {
    min-height: 480px;
  }

  .home-v1-demo-timeline {
    grid-template-rows: auto auto auto;
  }

  .home-v1-demo-steps {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
  }
}

@media (max-width: 680px) {
  .home-nav {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 8px 10px;
  }

  .home-actions,
  .home-hero-actions,
  .home-demo-actions,
  .home-showroom-actions {
    width: 100%;
  }

  .home-brand-group {
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }

  .home-brand {
    min-width: 0;
    gap: 8px;
  }

  .home-brand img {
    width: 82px;
    height: 28px;
  }

  .home-brand span {
    min-width: 0;
    font-size: 13px;
    white-space: nowrap;
  }

  .home-developer-brand {
    flex-shrink: 0;
    padding-left: 8px;
  }

  .home-developer-brand span {
    display: none;
  }

  .home-developer-brand img {
    width: 72px;
    height: 24px;
  }

  .home-actions .home-button,
  .home-hero-actions .home-button,
  .home-demo-actions .home-button,
  .home-showroom-actions .home-button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 36px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .home-hero {
    gap: 16px;
    padding: 22px 12px 18px;
  }

  .home-hero h1 {
    font-size: clamp(28px, 9vw, 34px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .home-hero p {
    font-size: 14px;
  }

  .home-strip,
  .home-workflow-grid,
  .home-gallery-grid {
    grid-template-columns: 1fr;
  }

  .home-slab-stage {
    min-height: 260px;
  }

  .home-slab-img {
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
  }

  .home-sink-img {
    left: 28px;
    width: 44%;
  }

  .home-measure-card {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .home-showroom-layout,
  .home-demo-card,
  .home-join {
    padding: 16px;
  }

  .home-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-v1-demo {
    padding: 0;
  }

  .home-v1-demo-shell {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .home-v1-demo-topbar {
    overflow: hidden;
  }

  .home-v1-demo-title span {
    display: none;
  }

  .home-v1-demo-title {
    flex: 1 1 auto;
  }

  .home-v1-demo-title img {
    width: 90px;
  }

  .home-v1-demo-title strong {
    font-size: 13px;
    line-height: 1.25;
  }

  .home-v1-demo-controls {
    flex-shrink: 0;
    gap: 5px;
  }

  .home-v1-demo-control {
    min-width: 34px;
    min-height: 34px;
  }

  .home-v1-demo-body {
    padding: 10px;
    overflow-x: hidden;
  }

  .home-v1-demo-timeline {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    min-width: 0;
    overflow: hidden;
  }

  .home-v1-demo-caption {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .home-v1-demo-stage {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    min-height: 560px;
    overflow-x: hidden;
  }

  .home-v1-demo-screen,
  .home-v1-demo-showroom,
  .home-v1-demo-summary,
  .home-v1-demo-slab,
  .home-v1-demo-layout-grid,
  .home-v1-demo-slab-plan {
    width: calc(100vw - 44px);
    max-width: 100%;
  }

  .home-v1-demo-showroom,
  .home-v1-demo-measure-layout,
  .home-v1-demo-offer-grid,
  .home-v1-demo-layout-grid,
  .home-v1-demo-grid {
    grid-template-columns: 1fr;
  }

  .home-v1-demo-browser {
    margin-top: 0;
    padding: 16px;
  }

  .home-v1-demo-browser h3,
  .home-v1-demo-office h3,
  .home-v1-demo-measure h3,
  .home-v1-demo-offer h3,
  .home-v1-demo-layout h3 {
    font-size: 20px;
  }

  .home-v1-demo-screen {
    padding: 12px;
    gap: 10px;
  }

  .home-v1-demo-steps {
    grid-template-columns: 1fr;
  }

  .home-v1-demo-summary-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    flex-wrap: initial;
    gap: 3px;
    padding-bottom: 6px;
  }

  .home-v1-demo-summary-row strong {
    text-align: left;
  }

  .home-v1-demo-summary {
    gap: 7px;
    padding: 10px;
  }

  .home-v1-demo-slab {
    min-height: 190px;
  }

  .home-v1-demo-slab > img {
    min-height: 190px;
  }

  .home-v1-demo-sink {
    left: 22px;
    bottom: 20px;
    width: 142px;
  }

  .home-v1-demo-slab-plan {
    min-height: 250px;
  }

  .home-v1-demo-layout-piece.main {
    left: 7%;
    top: 25%;
    width: 62%;
    height: 28%;
  }

  .home-v1-demo-layout-piece.backsplash {
    left: 7%;
    top: 61%;
    width: 62%;
    height: 18%;
  }

  .home-v1-demo-layout-piece.hood {
    right: 20%;
    top: 30%;
    width: 16%;
    height: 38%;
  }

  .home-v1-demo-layout-piece strong {
    font-size: 12px;
  }

  .home-v1-demo-layout-piece span,
  .home-v1-demo-cutmark {
    font-size: 10px;
  }

  .home-v1-demo-cutmark {
    min-width: 44px;
    min-height: 24px;
  }
}

@media (max-width: 420px) {
  .home-actions,
  .home-hero-actions,
  .home-demo-actions,
  .home-showroom-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-button {
    width: 100%;
  }

  .home-kicker {
    max-width: 100%;
    min-height: 24px;
    font-size: 10px;
    white-space: normal;
  }

  .home-strip,
  .home-section,
  .home-footer {
    width: min(100% - 20px, 1320px);
  }

  .home-section {
    padding-top: 34px;
  }

  .home-section-heading h2,
  .home-demo-card h2,
  .home-join h2 {
    font-size: 24px;
  }

  .home-slab-stage {
    min-height: 220px;
  }

  .home-sink-img {
    left: 20px;
    bottom: 20px;
    width: 42%;
  }

  .home-measure-card {
    position: static;
    width: auto;
    margin: 12px;
    padding: 12px;
  }

  .home-showroom-preview,
  .home-showroom-preview img {
    min-height: 220px;
  }

  .home-showroom-sink {
    left: 20px;
    bottom: 20px;
    width: 116px;
    height: 86px;
    border-width: 8px;
  }
}
