:root {
  --bg: #f3f6fe;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(17, 28, 51, 0.12);
  --line-strong: rgba(17, 28, 51, 0.18);
  --text: #121a2b;
  --muted: #4f5b74;
  --muted-strong: #38445d;
  --primary: #5a82fc;
  --primary-strong: #2d57dd;
  --primary-soft: rgba(90, 130, 252, 0.12);
  --shadow: 0 18px 40px rgba(39, 58, 105, 0.11);
  --shadow-soft: 0 10px 24px rgba(33, 48, 87, 0.075);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-card: 28px;
  --radius-card-inner: 20px;
  --radius-field: 14px;
  --container: min(1180px, calc(100vw - 32px));
  --font-sans: "Manrope", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-flat: 1;
  --lh-tight: 1.08;
  --lh-heading: 1.16;
  --lh-copy: 1.6;
  --lh-relaxed: 1.68;
  --track-display: -0.055em;
  --track-heading: -0.04em;
  --track-title: -0.02em;
  --track-ui: -0.01em;
  --track-label: 0.08em;
  --track-overline: 0.12em;
  --track-kicker: 0.04em;
  /* Compressed type scale: caption / small / body / lead / title / heading / display */
  --type-xs: 12px;
  --type-sm: 14px;
  --type-md: var(--type-sm);
  --type-base: 16px;
  --type-lg: 18px;
  --type-xl: clamp(20px, 2vw, 24px);
  --type-2xl: var(--type-xl);
  --type-3xl: clamp(24px, 2.4vw, 30px);
  --type-lead: var(--type-lg);
  --type-title-sm: var(--type-xl);
  --type-title-md: var(--type-3xl);
  --type-heading-md: clamp(30px, 3.2vw, 42px);
  --type-heading-lg: var(--type-heading-md);
  --type-display-sm: clamp(38px, 4.6vw, 52px);
  --type-display-md: var(--type-display-sm);
  --type-display-lg: clamp(42px, 5.1vw, 64px);
  --fs-ui: var(--type-base);
  --fs-ui-sm: var(--type-sm);
  --fs-caption: var(--type-xs);
  --tracking-ui: var(--track-ui);
  --segmented-control-gap: 8px;
  --segmented-control-padding: 6px;
  --segmented-control-button-height: 48px;
  --segmented-control-height: calc(
    var(--segmented-control-button-height) + var(--segmented-control-padding) + var(--segmented-control-padding)
  );
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--type-base);
  line-height: var(--lh-copy);
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(90, 130, 252, 0.14), transparent 28%),
    radial-gradient(circle at 100% 14%, rgba(90, 130, 252, 0.08), transparent 24%),
    linear-gradient(180deg, #eef3ff 0%, #f5f8fd 54%, #eef2f9 100%);
  overflow-x: hidden;
}

body.has-modal {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 130, 252, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 130, 252, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 78%);
  pointer-events: none;
}

body,
h1,
h2,
h3,
p,
dl,
dt,
dd {
  margin: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.section {
  padding: 52px 0 72px;
}

.eyebrow {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  margin-bottom: 14px;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.32;
  letter-spacing: var(--track-kicker);
  color: var(--primary-strong);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.section-kicker {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  margin-bottom: 14px;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.32;
  letter-spacing: var(--track-kicker);
  color: var(--primary-strong);
}

.section-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

.section-kicker--soft {
  color: var(--muted);
}

.type-overline {
  font-family: var(--font-mono);
  font-size: var(--type-xs);
  font-weight: var(--fw-medium);
  line-height: 1.3;
  letter-spacing: var(--track-overline);
  text-transform: uppercase;
}

.type-kicker {
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.32;
  letter-spacing: var(--track-kicker);
}

.type-display {
  font-size: var(--type-display-lg);
  font-weight: var(--fw-extrabold);
  line-height: 0.98;
  letter-spacing: var(--track-display);
}

.type-heading {
  font-size: var(--type-heading-md);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-heading);
}

.type-title {
  font-size: var(--type-2xl);
  font-weight: var(--fw-bold);
  line-height: 1.14;
  letter-spacing: var(--track-title);
}

.type-body-lg {
  font-size: var(--type-lg);
  line-height: var(--lh-relaxed);
}

.type-body {
  font-size: var(--type-base);
  line-height: var(--lh-copy);
}

.type-label {
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.32;
  letter-spacing: var(--track-ui);
}

.type-caption {
  font-size: var(--type-xs);
  line-height: 1.4;
  letter-spacing: var(--track-label);
}

h1,
h2,
h3 {
  font-weight: var(--fw-extrabold);
}

h1 {
  font-size: var(--type-display-lg);
  line-height: 0.98;
  letter-spacing: var(--track-display);
}

h2 {
  font-size: var(--type-heading-md);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-heading);
}

h3 {
  font-size: var(--type-2xl);
  font-weight: var(--fw-bold);
  line-height: 1.14;
  letter-spacing: var(--track-title);
}

p,
li,
span,
dt,
dd,
input,
select,
button {
  line-height: var(--lh-copy);
}

.lead {
  max-width: 760px;
  font-size: var(--type-lead);
  line-height: var(--lh-relaxed);
  color: var(--muted);
}

.glass-panel,
.feature-card,
.proof-card,
.step-card,
.project-card,
.detail-card,
.comparison-card,
.faq-item,
.summary-card,
.filter-panel,
.catalog-toolbar,
.buy-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 8px 0 0;
}

site-header {
  display: block;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 6px 10px 6px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(243, 248, 255, 0.36)),
    rgba(228, 238, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 8px 22px rgba(53, 79, 157, 0.07);
  box-sizing: border-box;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  flex-shrink: 0;
}

.brand img {
  width: 104px;
  height: auto;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-sizing: border-box;
}

.nav-cta {
  display: inline-flex;
}

.site-nav a,
.header-note {
  font-size: var(--fs-ui);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-height: 0;
  padding: 0 15px;
  border-radius: 14px;
  box-sizing: border-box;
  white-space: nowrap;
  color: var(--muted-strong);
  font-weight: 650;
  line-height: 1;
  letter-spacing: var(--tracking-ui);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--text);
  background: rgba(90, 130, 252, 0.1);
  box-shadow: none;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  content: none;
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
}

.header-actions .button {
  min-height: 38px;
  padding: 0 17px;
  white-space: nowrap;
  font-size: var(--fs-ui-sm);
}

.button-header {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(17, 28, 51, 0.1);
  color: var(--muted-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: var(--fs-ui);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: var(--tracking-ui);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(90, 130, 252, 0.14);
}

.button-primary {
  background: linear-gradient(135deg, #5a82fc 0%, #3966f3 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(56, 100, 243, 0.26);
}

.button-attention {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button-attention::after {
  content: "";
  position: absolute;
  inset: -40% -55%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 34%,
    rgba(255, 255, 255, 0.04) 42%,
    rgba(255, 255, 255, 0.34) 49%,
    rgba(255, 255, 255, 0.62) 50%,
    rgba(255, 255, 255, 0.34) 51%,
    rgba(255, 255, 255, 0.04) 58%,
    transparent 66%
  );
  transform: translateX(-165%) skewX(-18deg);
  opacity: 0;
  animation: button-attention-shimmer 7.2s ease-in-out infinite;
}

.button-attention > * {
  position: relative;
  z-index: 1;
}

@keyframes button-attention-shimmer {
  0%,
  72%,
  100% {
    transform: translateX(-165%) skewX(-18deg);
    opacity: 0;
  }

  76% {
    opacity: 1;
  }

  88% {
    transform: translateX(165%) skewX(-18deg);
    opacity: 1;
  }

  92% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-attention::after {
    animation: none;
  }
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(18, 26, 43, 0.13);
  color: var(--text);
}

.button-tertiary {
  background: transparent;
  border-color: rgba(17, 28, 51, 0.12);
  color: var(--muted-strong);
  box-shadow: none;
}

.hero {
  position: relative;
  padding-top: 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -54px 0 16% 0;
  background:
    radial-gradient(circle at 10% 16%, rgba(90, 130, 252, 0.14), transparent 32%),
    radial-gradient(circle at 86% 10%, rgba(67, 99, 216, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid,
.compact-hero__grid,
.request-grid,
.catalog-layout__grid,
.product-hero,
.accent-band__shell,
.category-grid,
.proof-grid,
.steps-grid,
.project-grid,
.detail-grid,
.comparison-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(22px, 2.5vw, 36px);
  align-items: start;
}

.compact-hero__grid,
.request-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 28px;
}

.hero-copy,
.section-head,
.request-copy {
  display: grid;
  gap: 20px;
}

.hero-copy {
  min-height: 100%;
  align-content: start;
  gap: 17px;
}

.hero-copy__main {
  display: grid;
  gap: 12px;
}

.request-grid {
  align-items: stretch;
}

.home-section--request .request-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.request-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-height: 100%;
}

.request-copy h2 {
  max-width: 11ch;
  font-size: var(--type-display-lg);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.request-copy > p {
  max-width: 35ch;
  font-size: var(--type-lg);
  line-height: 1.68;
}

.hero-copy h1 {
  max-width: 12.6ch;
  font-size: var(--type-display-sm);
  line-height: 0.97;
  text-wrap: balance;
}

.hero-copy .lead {
  max-width: 32ch;
  font-size: var(--type-lg);
  line-height: 1.42;
  color: #2f3b55;
}

.hero .eyebrow {
  margin-bottom: 8px;
  font-size: var(--type-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3b5fd7;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-content: start;
  min-height: 100px;
  padding: 14px 15px 15px;
  border: 1px solid rgba(24, 36, 67, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.74));
  box-shadow: 0 6px 12px rgba(39, 57, 99, 0.04);
}

.hero-highlight__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--primary-strong);
  background: rgba(90, 130, 252, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-highlight__icon svg {
  width: 18px;
  height: 18px;
}

.hero-highlight__body {
  display: grid;
  gap: 4px;
}

.hero-highlights strong {
  display: block;
  max-width: none;
  min-height: 0;
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.14;
  letter-spacing: var(--track-title);
  color: var(--text);
  text-wrap: balance;
}

.hero-highlights span {
  display: block;
  max-width: none;
  min-height: 0;
  font-size: var(--type-xs);
  line-height: 1.3;
  color: #4d5c76;
}

.hero-actions {
  gap: 10px;
  align-items: center;
}

.hero-actions .button {
  min-height: 52px;
  padding: 0 20px;
}

.hero-actions .button-primary {
  min-width: 206px;
}

.hero-actions .button-secondary {
  min-width: 170px;
}

.hero-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: -4px;
  color: #495975;
  font-size: var(--type-sm);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: var(--tracking-ui);
  transition: color 0.25s ease, transform 0.25s ease, text-decoration-color 0.25s ease;
}

.hero-inline-link::after {
  content: "→";
  font-size: 15px;
  line-height: 1;
}

.hero-inline-link:hover {
  color: var(--primary-strong);
  transform: translateX(2px);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero-inline-link:focus-visible {
  outline: none;
  color: var(--primary-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  max-width: 590px;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 252, 255, 0.74));
  border: 1px solid rgba(17, 28, 51, 0.1);
  box-shadow: 0 6px 16px rgba(36, 54, 96, 0.04);
}

.hero-proof__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  color: var(--primary-strong);
  background: linear-gradient(180deg, rgba(90, 130, 252, 0.12), rgba(90, 130, 252, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-proof__icon svg {
  width: 20px;
  height: 20px;
}

.hero-proof__content {
  display: grid;
  gap: 3px;
}

.hero-proof__kicker {
  font-size: var(--type-xs);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--primary-strong);
}

.hero-proof__content strong {
  font-size: var(--type-xl);
  line-height: 1.04;
  letter-spacing: var(--track-title);
}

.hero-proof__content p {
  max-width: 33ch;
  font-size: var(--type-xs);
  line-height: 1.34;
  color: #4e5c76;
}

.hero-actions,
.hero-metrics,
.inline-points,
.proof-card__meta,
.chip-row,
.thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-card,
.inline-points span,
.chip,
.thumb,
.chip-static {
  border-radius: 999px;
}

.metric-card {
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 28, 51, 0.08);
  box-shadow: var(--shadow-soft);
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.metric-label,
.project-card__type,
.price-line span,
.buy-card__price span,
.form-note,
.form-success,
.proof-card p,
.feature-card p,
.step-card p,
.project-card p,
.detail-card p,
.faq-item p,
.comparison-card p,
.summary-card p,
.request-copy p,
.catalog-toolbar span {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.hero-visual,
.hero-stack,
.project-card,
.project-card__body,
.filter-panel,
.catalog-content,
.catalog-grid,
.buy-card,
.lead-form {
  display: grid;
  gap: 16px;
}

.hero-visual {
  align-content: stretch;
}

.filter-panel {
  gap: 20px;
  padding: 28px 24px;
  position: sticky;
  top: 108px;
}

.filter-panel__head {
  display: grid;
  gap: 14px;
}

.filter-panel__head h2 {
  max-width: 8ch;
  font-size: var(--type-heading-md);
  line-height: 0.98;
  letter-spacing: var(--track-display);
}

.filter-panel__lead {
  max-width: 26ch;
  font-size: var(--type-base);
  line-height: var(--lh-copy);
  color: var(--muted);
}

.filter-panel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.filter-panel__summary {
  font-size: var(--type-sm);
  line-height: 1.45;
  color: var(--muted);
}

.filter-panel__summary strong {
  color: var(--text);
}

.chip-static--soft {
  background: rgba(90, 130, 252, 0.1);
  border-color: rgba(90, 130, 252, 0.14);
  color: var(--primary-strong);
}

.filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-blueprint::before,
.project-card__visual::before,
.proof-card__visual::before,
.gallery-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.28;
}

.hero-product {
  display: grid;
  gap: 13px;
  min-height: 100%;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(246, 249, 255, 0.9)),
    rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 16px 32px rgba(36, 53, 95, 0.08),
    0 2px 6px rgba(36, 53, 95, 0.032);
}

.hero-product__head {
  display: grid;
  gap: 6px;
}

.hero-product__intro {
  display: grid;
  gap: 9px;
}

.hero-product__chip {
  min-height: 28px;
  padding: 0 10px;
  background: rgba(90, 130, 252, 0.065);
  border-color: rgba(90, 130, 252, 0.11);
  color: var(--primary-strong);
  font-size: var(--type-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-product__intro h2 {
  max-width: 12.6ch;
  font-size: var(--type-3xl);
  line-height: 1.03;
  letter-spacing: var(--track-heading);
}

.hero-product__media,
.hero-product__workflow {
  display: grid;
  gap: 12px;
}

.hero-blueprint {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 10px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(239, 244, 255, 0.92), rgba(247, 250, 255, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 10px 24px rgba(47, 68, 128, 0.05);
}

.hero-blueprint--image {
  display: grid;
  gap: 10px;
}

.hero-product__visual::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(90, 130, 252, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 130, 252, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.15;
}

.hero-product__visual::after {
  content: "";
  position: absolute;
  inset: 16% 12% 10%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0%, rgba(224, 234, 255, 0.36) 56%, rgba(224, 234, 255, 0) 78%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-blueprint__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 1 / 0.58;
  object-fit: cover;
  object-position: center 54%;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(59, 82, 150, 0.08);
  transform: scale(1.19);
  transition: transform 0.35s ease;
}

.hero-product:hover .hero-blueprint__image {
  transform: scale(1.21);
}

.blueprint-badge,
.card-badge,
.visual-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blueprint-badge,
.card-badge {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: var(--primary-strong);
  background: rgba(90, 130, 252, 0.14);
}

.hero-product .blueprint-badge {
  padding: 7px 11px;
  font-size: var(--type-xs);
  letter-spacing: 0.03em;
  text-transform: none;
}

.visual-tag {
  color: #fff;
  background: rgba(18, 26, 43, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.card-badge--soft {
  color: #7a5f11;
  background: rgba(255, 219, 91, 0.22);
}

.chip,
.thumb,
.chip-static {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  background: rgba(255, 255, 255, 0.86);
  font-family: var(--font-sans);
  font-size: var(--fs-ui-sm);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: var(--tracking-ui);
  color: var(--muted-strong);
}

.chip-light {
  background: rgba(18, 26, 43, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.chip-row--filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
  gap: 10px;
}

.filter-panel .chip {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  font-size: var(--fs-ui-sm);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
  white-space: normal;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 28, 51, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.filter-panel .chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, #6f93ff 0%, #4f78f5 100%);
  box-shadow: 0 12px 24px rgba(79, 120, 245, 0.24);
}

.chip.is-active,
.thumb.is-active {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
}

.wireframe-house {
  position: relative;
  width: min(100%, 360px);
  height: 240px;
  margin: 40px auto 22px;
}

.wireframe-house__roof,
.wireframe-house__wall,
.wireframe-house__floor,
.wireframe-house__window,
.frame-diagram span {
  position: absolute;
  border: 2px solid rgba(90, 130, 252, 0.76);
  background: rgba(90, 130, 252, 0.06);
}

.wireframe-house__roof {
  top: 8px;
  left: 18%;
  width: 64%;
  height: 64px;
  transform: skew(-34deg);
  border-bottom: none;
  border-right: none;
}

.wireframe-house__wall {
  top: 74px;
  width: 44%;
  height: 120px;
}

.wireframe-house__wall--left {
  left: 16%;
}

.wireframe-house__wall--right {
  right: 12%;
  transform: skewY(-16deg);
}

.wireframe-house__floor {
  right: 12%;
  bottom: 22px;
  width: 52%;
  height: 24px;
  transform: skew(-34deg);
}

.wireframe-house__window {
  top: 102px;
  width: 48px;
  height: 48px;
}

.wireframe-house__window--left {
  left: 25%;
}

.wireframe-house__window--right {
  right: 22%;
}

.blueprint-scale {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 2px;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  line-height: 1.3;
  color: var(--muted);
}

.hero-product__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid rgba(17, 28, 51, 0.09);
  border-radius: 16px;
  background: rgba(247, 250, 255, 0.5);
}

.hero-product__stats li {
  display: grid;
  gap: 4px;
  min-height: 0;
  padding: 12px 15px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-product__stats li + li {
  border-left: 1px solid rgba(17, 28, 51, 0.08);
}

.hero-product__stats span {
  font-size: var(--type-xs);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #5d6c86;
}

.hero-product__stats strong {
  font-size: var(--type-xl);
  line-height: 1.06;
  letter-spacing: var(--track-title);
}

.hero-product__summary {
  display: grid;
  gap: 3px;
  max-width: 32ch;
}

.hero-product__summary strong {
  font-size: var(--type-lg);
  line-height: 1.12;
  letter-spacing: var(--track-title);
}

.hero-product__summary p {
  font-size: var(--type-sm);
  line-height: 1.3;
  color: #4e5d77;
}

.hero-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid rgba(17, 28, 51, 0.09);
  border-radius: 16px;
  background: rgba(247, 250, 255, 0.5);
}

.hero-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-content: start;
  min-height: 0;
  padding: 13px 14px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-steps li + li {
  border-left: 1px solid rgba(17, 28, 51, 0.08);
}

.hero-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(90, 130, 252, 0.15), rgba(90, 130, 252, 0.06));
  color: var(--primary-strong);
  font-family: var(--font-mono);
  font-size: var(--type-xs);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-steps__copy {
  display: grid;
  gap: 3px;
}

.hero-steps__copy strong {
  font-size: var(--type-sm);
  line-height: 1.12;
  letter-spacing: var(--track-title);
}

.hero-steps__copy p {
  font-size: var(--type-xs);
  line-height: 1.28;
  color: #4f5e79;
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(45, 87, 221, 0.14);
  box-shadow: 0 10px 22px rgba(35, 55, 104, 0.055);
}

.button-header:hover {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(45, 87, 221, 0.12);
  color: var(--text);
}

.floating-card,
.summary-card,
.comparison-card {
  display: grid;
  gap: 14px;
  padding: 24px 26px;
}

.floating-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  gap: 16px;
  padding: 26px 28px;
}

.floating-card h2,
.summary-card h2,
.buy-card h1,
.buy-card h2 {
  font-size: var(--type-3xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-heading);
  margin: 4px 0 2px;
}

.floating-card--accent,
.comparison-card--accent,
.accent-band__shell {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 65, 164, 0.96), rgba(92, 128, 252, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stack {
  height: 100%;
  grid-template-rows: minmax(0, 1fr);
}

.floating-card--accent {
  min-height: 100%;
  align-content: start;
}

.floating-card--accent p,
.comparison-card--accent p,
.accent-band__shell p {
  color: rgba(255, 255, 255, 0.86);
}

.floating-card--accent p {
  max-width: 31ch;
  font-size: 17px;
  line-height: 1.62;
}

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

.section-head__lead {
  max-width: 42ch;
  font-size: var(--type-base);
  line-height: var(--lh-relaxed);
  color: var(--muted-strong);
}

.section-head--product {
  gap: 16px;
  margin-bottom: 28px;
}

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

.proof-grid,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

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

.feature-card,
.proof-card,
.step-card,
.detail-card,
.comparison-card,
.faq-item {
  padding: 28px;
}

.feature-card,
.step-card,
.detail-card {
  display: grid;
  gap: 16px;
}

.feature-card h3 {
  max-width: 11ch;
  min-height: 2.3em;
  text-wrap: balance;
}

.feature-card p {
  max-width: 22ch;
  min-height: 6.4em;
  text-wrap: balance;
}

.directions-explorer {
  display: grid;
  gap: 20px;
}

.chip-row--directions {
  gap: 10px;
}

.directions-chip {
  min-height: 42px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(90, 130, 252, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.directions-chip.is-active {
  box-shadow:
    0 14px 30px rgba(79, 120, 245, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.direction-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  padding: 34px;
}

.direction-panel.is-swapping {
  animation: direction-panel-swap 0.28s ease;
}

.direction-panel__content,
.direction-panel__aside {
  display: grid;
  align-content: start;
}

.direction-panel__content {
  gap: 18px;
}

.direction-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.direction-panel__content h3 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.direction-panel__lead {
  max-width: 34ch;
  margin: 0;
  font-size: var(--type-base);
  line-height: 1.62;
  color: var(--muted-strong);
}

.direction-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.direction-panel__aside {
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(90, 130, 252, 0.12);
  background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.96), rgba(238, 243, 255, 0.78)),
    rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.direction-panel__caption {
  margin: 0;
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  letter-spacing: var(--track-kicker);
  color: var(--primary-strong);
}

.direction-points {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.direction-points li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 28, 51, 0.08);
  font-size: var(--type-base);
  line-height: 1.5;
  color: var(--text);
}

.direction-points li:first-child {
  padding-top: 0;
  border-top: none;
}

.direction-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--primary);
}

.direction-panel__note {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 28, 51, 0.08);
  font-size: var(--type-sm);
  line-height: 1.55;
  color: var(--muted);
}

@keyframes direction-panel-swap {
  0% {
    opacity: 0.72;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-grid--product {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.detail-card--product {
  position: relative;
  gap: 18px;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.9)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 22px 44px rgba(30, 45, 88, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.detail-card--product::before {
  content: none;
}

.detail-card--accent {
  border-color: rgba(90, 130, 252, 0.18);
  background:
    linear-gradient(180deg, rgba(97, 127, 240, 0.96), rgba(79, 110, 229, 0.92)),
    rgba(65, 98, 221, 0.96);
  box-shadow: 0 24px 55px rgba(42, 65, 145, 0.22);
}

.detail-card--accent::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.detail-card--accent::after {
  color: rgba(255, 255, 255, 0.72);
}

.detail-card__tag,
.comparison-card__tag,
.faq-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: fit-content;
  min-width: 0;
  max-width: calc(100% - 24px);
  min-height: 30px;
  padding: 0 14px;
  margin: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(231, 238, 255, 0.98), rgba(217, 227, 255, 0.92));
  color: var(--primary-strong);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--tracking-ui);
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.detail-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.detail-card__index {
  flex: 0 0 auto;
  padding-top: 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(90, 130, 252, 0.72);
}

.detail-card__lead {
  max-width: 30ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-strong);
}

.detail-card--product .detail-card__tag {
  max-width: 100%;
}

.detail-card--accent .detail-card__index {
  color: rgba(255, 255, 255, 0.72);
}

.detail-card--product h3 {
  max-width: 13.2ch;
  min-height: 2.08em;
  margin: 0;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.detail-card--product .detail-card__lead {
  max-width: 33ch;
  min-height: 4.86em;
  margin: 0;
  font-size: var(--type-base);
  line-height: 1.62;
}

.check-list--detail {
  margin-top: auto;
  padding-top: 8px;
}

.check-list--detail li {
  padding: 14px 0 0 22px;
  font-size: var(--type-base);
  line-height: 1.62;
  color: var(--muted-strong);
  border-top: 1px solid rgba(17, 28, 51, 0.08);
}

.check-list--detail li:first-child {
  padding-top: 0;
  border-top: 0;
}

.check-list--detail li::before {
  top: 22px;
  width: 7px;
  height: 7px;
  background: rgba(65, 97, 220, 0.88);
}

.check-list--detail li:first-child::before {
  top: 9px;
}

.detail-card--accent h3,
.detail-card--accent .detail-card__lead,
.detail-card--accent .check-list--detail li {
  color: rgba(255, 255, 255, 0.96);
}

.detail-card--accent .check-list--detail li {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.detail-card--accent .check-list--detail li::before {
  background: rgba(255, 255, 255, 0.92);
}

.feature-number,
.step-card__index {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.32;
  letter-spacing: var(--track-kicker);
  color: var(--primary-strong);
}

.proof-card {
  display: grid;
  gap: 20px;
}

.proof-grid--media {
  align-items: stretch;
}

.proof-card--interactive {
  color: inherit;
  text-decoration: none;
  width: 100%;
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.proof-card--interactive:hover,
.proof-card--interactive:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(90, 130, 252, 0.18);
  box-shadow: 0 24px 60px rgba(43, 67, 130, 0.14);
}

.proof-card--interactive h3,
.proof-card--docs h3 {
  margin: 0;
}

.proof-card__visual,
.project-card__visual,
.gallery-stage {
  position: relative;
  overflow: hidden;
}

.proof-card__visual,
.project-card__visual {
  min-height: 210px;
  padding: 24px;
  border-radius: 20px;
}

.proof-card__visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(135deg, rgba(90, 130, 252, 0.2), rgba(21, 31, 51, 0.12));
}

.proof-card__visual--gallery,
.proof-card__visual--video-card {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 248px;
}

.proof-card__stack,
.proof-card__visual-image,
.proof-card__preview-video,
.proof-card__play {
  z-index: 1;
}

.proof-card__stack {
  position: absolute;
  inset: 62px 18px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 12px;
}

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

.proof-card__thumb {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(34, 51, 96, 0.12);
}

.proof-card__thumb--main {
  min-height: 156px;
}

.proof-card__visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.proof-card__visual--gallery .proof-card__visual-image {
  object-position: center 52%;
  opacity: 1;
}

.proof-card__preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  pointer-events: none;
}

.proof-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(18, 26, 43, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 46px rgba(8, 13, 29, 0.28);
}

.proof-card__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
  transform: translate(-35%, -50%);
}

.proof-card__action {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  background: rgba(255, 255, 255, 0.88);
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: var(--tracking-ui);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.proof-card__visual--house::after,
.proof-card__visual--video::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 124px;
  height: 90px;
  border: 2px solid rgba(255, 255, 255, 0.64);
  border-radius: 24px 24px 8px 8px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-card__visual--video::after {
  border-radius: 20px;
}

.proof-label,
.inline-points span {
  padding: 11px 13px;
  border-radius: 12px;
  background: var(--primary-soft);
  font-size: 13px;
}

.proof-card--docs {
  min-height: 100%;
  align-content: stretch;
}

.proof-card__meta--docs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 100%;
  align-items: stretch;
}

.proof-link {
  display: grid;
  align-content: space-between;
  gap: 18px;
  height: 100%;
  min-height: 100%;
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  background: rgba(244, 247, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.proof-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(90, 130, 252, 0.16);
}

.proof-link strong {
  font-size: var(--type-base);
  font-weight: var(--fw-bold);
  line-height: 1.25;
  letter-spacing: var(--track-title);
  color: var(--text);
  max-width: 10ch;
  text-wrap: balance;
}

.proof-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(90, 130, 252, 0.12);
  font-family: var(--font-mono);
  font-size: var(--type-xs);
  line-height: 1;
  letter-spacing: var(--track-label);
  color: var(--primary-strong);
}

.media-modal[hidden] {
  display: none;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.media-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 43, 0.58);
  backdrop-filter: blur(12px);
}

.media-modal__dialog {
  --plyr-color-main: #5a82fc;
  --plyr-control-radius: 14px;
  --plyr-control-icon-size: 16px;
  --plyr-video-control-background-hover: rgba(90, 130, 252, 0.92);
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(90vh, 860px);
  display: grid;
  gap: 18px;
  padding: 24px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background: rgba(248, 250, 255, 0.96);
  box-shadow: 0 34px 90px rgba(13, 23, 52, 0.34);
}

.media-modal__dialog--gallery {
  width: min(1120px, 100%);
  height: min(90vh, 860px);
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.media-modal__dialog--model {
  width: min(1280px, 100%);
  height: min(92vh, 920px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.media-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.media-modal__copy {
  display: grid;
  gap: 10px;
}

.media-modal__kicker {
  margin: 0;
}

.media-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  font-size: 28px;
  line-height: 1;
  color: var(--text);
}

#model-modal.media-modal {
  padding: 0;
}

#model-modal .media-modal__backdrop {
  background: rgba(10, 18, 43, 0.72);
}

#model-modal .media-modal__dialog--model {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  gap: 14px;
  padding: clamp(12px, 1.4vw, 20px);
  border: 0;
  border-radius: 0;
  background: rgba(244, 248, 255, 0.98);
}

#model-modal .media-modal__header {
  align-items: center;
}

#model-modal .model-modal__body {
  display: grid;
  min-height: 0;
}

#model-modal .model-scene--modal {
  height: 100%;
  min-height: 0;
  border-radius: 22px;
}

.model-modal__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.model-view-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(17, 28, 51, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 28px rgba(31, 50, 100, 0.08);
}

.model-view-switch__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #52617a;
  font-family: var(--font-sans);
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.model-view-switch__button:hover {
  color: var(--text);
  background: rgba(90, 130, 252, 0.09);
}

.model-view-switch__button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #6b8eff, #3864ee);
  box-shadow: 0 8px 20px rgba(56, 100, 238, 0.22);
}

.model-view-switch__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(90, 130, 252, 0.18);
}

@media (max-width: 900px) {
  #model-modal .media-modal__header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .model-modal__actions {
    justify-content: space-between;
  }

  .model-view-switch {
    overflow-x: auto;
    max-width: calc(100vw - 86px);
    scrollbar-width: none;
  }

  .model-view-switch::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 580px) {
  #model-modal .media-modal__dialog--model {
    gap: 10px;
    padding: 10px;
  }

  .model-view-switch__button {
    min-width: 54px;
    padding-inline: 10px;
    font-size: 13px;
  }
}

.media-gallery {
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 14px;
}

.media-gallery__stage {
  position: relative;
  min-height: 0;
  height: 100%;
  padding: 14px 58px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 242, 255, 0.82)),
    rgba(255, 255, 255, 0.8);
}

.media-gallery__stage img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(31, 48, 96, 0.14);
}

.media-gallery__nav {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 20px;
  transform: translateY(-50%);
}

.media-gallery__nav--prev {
  left: 14px;
}

.media-gallery__nav--next {
  right: 14px;
}

.media-gallery__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.media-gallery__caption {
  font-size: var(--type-base);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  letter-spacing: var(--track-title);
  color: var(--text);
}

.media-gallery__counter {
  font-family: var(--font-mono);
  font-size: var(--type-xs);
  line-height: 1;
  letter-spacing: var(--track-label);
  color: var(--muted);
}

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

.media-gallery__thumb {
  overflow: hidden;
  height: 84px;
  padding: 0;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.media-gallery__thumb.is-active {
  border-color: rgba(90, 130, 252, 0.34);
  box-shadow: 0 0 0 3px rgba(90, 130, 252, 0.12);
}

.media-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-video__player {
  overflow: hidden;
  border-radius: 24px;
  background: #0e1529;
  box-shadow: 0 22px 60px rgba(11, 18, 39, 0.26);
}

.media-video .plyr,
.js-trust-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0e1529;
}

.media-video .plyr {
  border-radius: 24px;
}

.model-modal__body {
  min-height: 0;
}

.model-scene--modal {
  min-height: 100%;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(126, 160, 255, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(246, 249, 255, 0.94), rgba(230, 237, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.model-scene--modal::before {
  content: none;
}

.model-scene--modal .model-scene__status {
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.model-modal__footer {
  display: flex;
  justify-content: flex-end;
}

.model-modal__hint {
  margin: 0;
  font-size: var(--type-sm);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  letter-spacing: var(--track-title);
  color: var(--muted-strong);
}

.accent-band__shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 55px rgba(42, 65, 145, 0.22);
}

.project-card {
  overflow: hidden;
}

.project-card__visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
  aspect-ratio: 1 / 1;
  min-height: auto;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(160deg, rgba(90, 130, 252, 0.18), rgba(19, 31, 56, 0.1));
}

.project-card__visual::after {
  content: "";
  position: absolute;
  inset: auto auto 22px 22px;
  width: min(62%, 220px);
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.54);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 36px rgba(20, 31, 58, 0.08);
}

.project-card__visual > * {
  position: relative;
  z-index: 1;
}

.project-card__visual--with-image::after {
  display: none;
}

.project-card__visual--with-image::before {
  opacity: 0.12;
}

.project-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.32s ease;
}

.project-card__visual:hover .project-card__image,
.project-card__visual:focus-visible .project-card__image {
  transform: scale(1.02);
}

.project-card__visual:focus-visible,
.project-card__title-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(90, 130, 252, 0.16);
}

.project-card__visual--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    linear-gradient(160deg, rgba(95, 187, 255, 0.15), rgba(43, 82, 217, 0.08));
}

.project-card__visual--garage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(160deg, rgba(38, 64, 122, 0.18), rgba(94, 132, 252, 0.12));
}

.project-card__visual--pavilion {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(160deg, rgba(36, 42, 72, 0.18), rgba(90, 130, 252, 0.16));
}

.project-card__visual--service {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(160deg, rgba(61, 96, 188, 0.18), rgba(11, 19, 34, 0.16));
}

.project-card__visual--custom {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(160deg, rgba(255, 210, 92, 0.24), rgba(90, 130, 252, 0.16));
}

.project-card__visual--custom::after {
  display: none;
}

.project-card__image--custom {
  object-position: 50% 52%;
}

.custom-frame-preview {
  position: absolute;
  inset: 22% 11% 13%;
  z-index: 1;
}

.custom-frame-preview__shape,
.custom-frame-preview__line {
  position: absolute;
  display: block;
  border: 3px solid rgba(90, 130, 252, 0.78);
  box-shadow:
    0 18px 36px rgba(39, 58, 105, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.custom-frame-preview__shape {
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
}

.custom-frame-preview__shape--main {
  inset: 11% 16% 11% 0;
}

.custom-frame-preview__shape--service {
  right: 0;
  bottom: 0;
  width: 34%;
  height: 44%;
  border-color: rgba(45, 87, 221, 0.58);
  transform: translateY(-3%) skewY(-10deg);
}

.custom-frame-preview__shape--compact {
  left: 12%;
  bottom: 17%;
  width: 22%;
  height: 25%;
  border-radius: 14px;
  border-color: rgba(90, 130, 252, 0.66);
}

.custom-frame-preview__line {
  height: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  box-shadow: none;
}

.custom-frame-preview__line--roof {
  top: 4%;
  left: 8%;
  width: 76%;
  transform: rotate(-7deg);
}

.custom-frame-preview__line--axis {
  top: 50%;
  left: 4%;
  width: 86%;
  border-style: dashed;
  border-color: rgba(90, 130, 252, 0.42);
}

.visual-stack {
  display: none;
}

.project-card__top,
.price-line,
.catalog-toolbar,
.sort-box,
.range-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-card__body {
  gap: 20px;
  padding: 26px 24px 24px;
}

.project-card__top {
  align-items: center;
  gap: 14px;
}

.project-card__series {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-strong);
}

.project-card__series::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(90, 130, 252, 0.18);
  box-shadow: inset 0 0 0 2px rgba(90, 130, 252, 0.82);
}

.project-card__type {
  margin-left: auto;
  font-size: 16px;
  line-height: 1.32;
  text-align: right;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 14px;
  padding: 18px;
}

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

.catalog-stat {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.catalog-stat strong {
  font-size: var(--type-2xl);
  line-height: var(--lh-flat);
  letter-spacing: var(--track-heading);
}

.catalog-stat span {
  font-size: var(--type-sm);
  line-height: 1.45;
  color: var(--muted-strong);
}

.sort-box {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.sort-box span {
  font-family: var(--font-mono);
  font-size: var(--type-xs);
  line-height: 1.3;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--muted-strong);
}

.sort-box__field {
  display: grid;
}

.sort-box__select {
  min-height: 44px;
  width: 100%;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 255, 0.86)),
    rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: var(--type-base);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  letter-spacing: var(--track-title);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted-strong) 50%),
    linear-gradient(135deg, var(--muted-strong) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 255, 0.86));
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.sort-box__select:focus {
  outline: none;
  border-color: rgba(90, 130, 252, 0.28);
  box-shadow: 0 0 0 4px rgba(90, 130, 252, 0.12);
}

.project-card__body h3 {
  font-size: var(--type-title-sm);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-heading);
}

.project-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.project-card__title-link:hover {
  color: var(--primary-strong);
}

.project-card__body > p {
  max-width: 34ch;
  font-size: var(--type-base);
  line-height: var(--lh-relaxed);
}

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

.spec-grid div {
  padding: 14px 16px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.spec-grid dt {
  margin-bottom: 8px;
  font-size: var(--type-sm);
  line-height: 1.4;
  color: var(--muted);
}

.spec-grid dd {
  font-size: var(--type-lg);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: var(--track-title);
}

.spec-grid--product {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.spec-grid--product div {
  display: grid;
  align-self: start;
  gap: 6px;
  min-height: 0;
  padding: 14px 16px 13px;
  border-radius: 18px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 248, 255, 0.74)),
    rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.spec-grid--product .spec-card--wide {
  grid-column: 1 / -1;
}

.spec-grid--product dt,
.spec-grid--product dd {
  margin: 0;
}

.spec-grid--product dt {
  font-size: var(--type-sm);
  line-height: 1.32;
  color: var(--muted);
  text-wrap: balance;
}

.spec-grid--product dd {
  font-size: var(--type-lg);
  line-height: 1.14;
  letter-spacing: var(--track-title);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.price-line strong,
.buy-card__price strong {
  font-size: 28px;
  line-height: 1;
}

.price-line {
  display: grid;
  justify-content: start;
  align-items: start;
  gap: 6px;
}

.price-line strong {
  font-size: var(--type-title-md);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.price-line span {
  font-size: var(--type-md);
  line-height: 1.5;
}

.project-card .button {
  min-height: 54px;
  font-size: var(--type-lg);
}

.buy-card__lead {
  color: var(--muted);
}

.request-section {
  padding-bottom: 86px;
}

.request-section .section-kicker,
.request-highlight__eyebrow {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  width: fit-content;
  margin-bottom: 2px;
  font-family: var(--font-sans);
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.32;
  letter-spacing: var(--track-kicker);
  color: var(--primary-strong);
}

.request-section .section-kicker::before,
.request-highlight__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

.request-highlight {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding: 26px 28px;
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(90, 130, 252, 0.2), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.72);
}

.request-highlight__eyebrow {
  margin-bottom: 0;
}

.request-highlight strong {
  max-width: 18ch;
  font-size: var(--type-title-md);
  line-height: 1.06;
  letter-spacing: var(--track-heading);
}

.request-highlight p {
  max-width: 42ch;
  font-size: var(--type-base);
  line-height: var(--lh-relaxed);
  color: var(--muted-strong);
}

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

.request-benefit {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.request-benefit__index {
  display: none;
}

.request-benefit strong {
  font-size: var(--type-lg);
  line-height: 1.25;
  letter-spacing: var(--track-title);
}

.request-benefit p {
  font-size: var(--type-md);
  line-height: var(--lh-copy);
  color: var(--muted-strong);
}

.lead-form label,
.filter-group,
.gallery-shot {
  display: grid;
  gap: 10px;
}

.lead-form {
  gap: 14px;
  height: 100%;
  align-content: start;
  padding: 24px;
  border-radius: var(--radius-card);
}

.lead-form__field,
.lead-form__row {
  display: grid;
  gap: 10px;
}

.lead-form__header {
  display: grid;
  gap: 10px;
  margin-bottom: 4px;
}

.lead-form__header h3 {
  font-size: var(--type-title-md);
  line-height: 1.02;
  letter-spacing: var(--track-heading);
}

.lead-form__header p:last-child {
  max-width: 34ch;
  font-size: var(--type-md);
  line-height: var(--lh-copy);
  color: var(--muted-strong);
}

.lead-form__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.lead-form__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  background: rgba(255, 255, 255, 0.68);
  font-family: var(--font-mono);
  font-size: var(--type-xs);
  line-height: var(--lh-flat);
  font-weight: var(--fw-medium);
  color: var(--muted-strong);
}

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

.lead-form span,
.filter-title {
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
}

.filter-group {
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.filter-title {
  line-height: 1.4;
  letter-spacing: var(--tracking-ui);
}

.filter-range-group {
  display: grid;
  gap: 14px;
}

.range-shell {
  display: grid;
  gap: 12px;
}

.range-display {
  font-family: var(--font-mono);
  font-size: var(--type-md);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  color: var(--muted-strong);
}

.range-display strong {
  font-family: var(--font-sans);
  font-size: var(--type-lg);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: var(--track-title);
  color: var(--text);
}

.filter-dual-range {
  position: relative;
  height: 18px;
}

.filter-dual-range__base,
.filter-dual-range__progress {
  position: absolute;
  top: 50%;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.filter-dual-range__base {
  left: 0;
  right: 0;
  background: rgba(17, 28, 51, 0.12);
}

.filter-dual-range__progress {
  background: linear-gradient(90deg, #6f93ff 0%, #4f78f5 100%);
}

.filter-range {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 18px;
  margin: 0;
  border-radius: 999px;
  background: none;
  outline: none;
  pointer-events: none;
  transform: translateY(-50%);
}

.filter-range::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
}

.filter-range::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: transparent;
}

.filter-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6f93ff 0%, #4f78f5 100%);
  border: 3px solid #fff;
  box-shadow: 0 6px 14px rgba(79, 120, 245, 0.28);
  pointer-events: auto;
  cursor: pointer;
}

.filter-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6f93ff 0%, #4f78f5 100%);
  border: 3px solid #fff;
  box-shadow: 0 6px 14px rgba(79, 120, 245, 0.28);
  pointer-events: auto;
  cursor: pointer;
}

.filter-range--min {
  z-index: 2;
}

.filter-range--max {
  z-index: 3;
}

.filter-range-group[data-derived-range] .filter-dual-range {
  pointer-events: none;
}

.filter-range-group[data-derived-range] .filter-range::-webkit-slider-thumb {
  width: 0;
  height: 0;
  margin-top: 0;
  border: 0;
  box-shadow: none;
  opacity: 0;
}

.filter-range-group[data-derived-range] .filter-range::-moz-range-thumb {
  width: 0;
  height: 0;
  border: 0;
  box-shadow: none;
  opacity: 0;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface-strong);
  font: inherit;
  color: var(--text);
  outline: none;
}

.lead-form textarea {
  min-height: 148px;
  padding-top: 14px;
  padding-bottom: 14px;
  line-height: 1.55;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(90, 130, 252, 0.12);
}

.lead-form .button {
  margin-top: 4px;
}

.lead-form__field--autocomplete {
  position: relative;
}

.form-autocomplete {
  position: relative;
}

.form-autocomplete__panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 6px;
  max-height: 304px;
  padding: 10px;
  overflow-y: auto;
  border: 1px solid rgba(17, 28, 51, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 255, 0.96) 100%);
  box-shadow:
    0 22px 48px rgba(39, 58, 104, 0.12),
    0 8px 18px rgba(39, 58, 104, 0.08);
  backdrop-filter: blur(18px);
}

.form-autocomplete__panel[hidden] {
  display: none;
}

.form-autocomplete__item {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.form-autocomplete__item:hover,
.form-autocomplete__item.is-active {
  background: rgba(90, 130, 252, 0.12);
}

.form-autocomplete__item:focus-visible {
  outline: 2px solid rgba(90, 130, 252, 0.36);
  outline-offset: 2px;
}

.form-autocomplete__title {
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.35;
}

.form-autocomplete__meta {
  font-size: var(--type-xs);
  line-height: 1.45;
  color: var(--muted-strong);
}

.form-autocomplete.is-open input {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(90, 130, 252, 0.12);
}

.form-note {
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.64;
  color: var(--muted-strong);
}

.form-note a {
  color: var(--primary-strong);
  font-weight: var(--fw-bold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-note a:hover,
.form-note a:focus-visible {
  color: var(--primary);
}

.form-success {
  display: none;
  gap: 18px;
  align-content: center;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(90, 130, 252, 0.14);
  border-radius: var(--radius-card-inner);
  background:
    linear-gradient(145deg, rgba(90, 130, 252, 0.14), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  font-size: var(--type-lg);
  line-height: var(--lh-heading);
  font-weight: var(--fw-bold);
  color: var(--primary-strong);
}

.form-success__repeat {
  justify-self: start;
  min-height: 48px;
  padding-inline: 20px;
}

.lead-form.has-message .form-success {
  display: grid;
  min-height: auto;
  padding: 16px 18px;
}

.form-success--error {
  border-color: rgba(220, 70, 70, 0.2);
  background:
    linear-gradient(145deg, rgba(220, 70, 70, 0.09), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.76);
  color: #b42318;
}

.lead-form.is-submitted > label,
.lead-form.is-submitted > .lead-form__row,
.lead-form.is-submitted > .button[type="submit"],
.lead-form.is-submitted > .form-note {
  display: none;
}

.lead-form.is-submitted .form-success {
  display: grid;
}

.compact-hero {
  padding-top: 32px;
}

.compact-hero--catalog {
  padding-top: 44px;
  padding-bottom: 34px;
}

.compact-hero__grid--catalog {
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.9fr);
  gap: 36px;
  align-items: stretch;
}

.catalog-hero-copy {
  display: grid;
  gap: 20px;
  max-width: none;
  padding: 0;
  align-content: start;
}

.section-kicker--catalog {
  margin-bottom: 0;
}

.catalog-hero-copy h1 {
  max-width: 13.2ch;
  font-size: var(--type-display-lg);
  line-height: 0.98;
  letter-spacing: var(--track-display);
  text-wrap: balance;
}

.catalog-hero-copy .lead {
  max-width: 31ch;
  font-size: var(--type-lead);
  line-height: var(--lh-relaxed);
  color: var(--muted);
}

.catalog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.catalog-hero-meta .chip-static {
  min-height: 36px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.catalog-layout__grid {
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
}

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

.product-hero {
  grid-template-columns: minmax(0, 1.08fr) 380px;
  gap: 26px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-gallery__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.summary-card--catalog {
  align-self: stretch;
  grid-template-rows: auto auto auto 1fr;
  gap: 20px;
  min-height: 100%;
  padding: 30px 30px 32px;
  background:
    linear-gradient(135deg, rgba(36, 65, 164, 0.96), rgba(92, 128, 252, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 52px rgba(45, 87, 221, 0.18);
  color: #fff;
}

.summary-card--catalog .card-badge {
  justify-self: start;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(18, 26, 43, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.summary-card--catalog h2 {
  max-width: 9.6ch;
  margin: 0;
  font-size: var(--type-heading-md);
  line-height: 0.98;
  letter-spacing: var(--track-heading);
  text-wrap: balance;
}

.summary-card__lead {
  max-width: 30ch;
  font-size: var(--type-base);
  line-height: var(--lh-relaxed);
  color: var(--muted);
}

.summary-card--catalog .summary-card__lead {
  max-width: 30ch;
  font-size: var(--type-base);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.86);
  text-wrap: pretty;
}

.check-list--catalog {
  align-self: end;
  gap: 16px;
  padding-top: 8px;
}

.check-list--catalog li {
  padding-left: 24px;
  font-size: var(--type-base);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

.check-list--catalog li::before {
  top: 9px;
  width: 7px;
  height: 7px;
  background: currentColor;
}

.gallery-stage {
  min-height: 620px;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(90, 130, 252, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 245, 255, 0.78));
}

.gallery-shot {
  display: none;
  position: relative;
  z-index: 1;
  min-height: 560px;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}

.gallery-shot.is-active {
  display: grid;
}

.gallery-shot__top,
.gallery-shot__copy {
  display: grid;
  gap: 12px;
}

.gallery-shot__top {
  justify-content: end;
  justify-items: end;
  gap: 0;
}

.gallery-shot__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  background: rgba(255, 255, 255, 0.74);
  font-family: var(--font-sans);
  font-size: var(--type-md);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  letter-spacing: var(--tracking-ui);
  color: var(--muted-strong);
}

.gallery-shot__copy {
  max-width: 620px;
  grid-template-rows: min-content minmax(2.94em, auto) minmax(3.26em, auto);
}

.gallery-shot__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.32;
  letter-spacing: var(--track-kicker);
  color: var(--primary-strong);
}

.gallery-shot__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

.gallery-shot__copy h1,
.gallery-shot__copy h2 {
  margin: 0;
  max-width: 13.1ch;
  min-height: 2.94em;
  font-size: var(--type-display-md);
  line-height: 0.98;
  letter-spacing: var(--track-display);
  text-wrap: balance;
}

.gallery-shot[data-shot="layout"] .gallery-shot__copy h1,
.gallery-shot[data-shot="layout"] .gallery-shot__copy h2 {
  max-width: 9.4ch;
}

.gallery-shot__copy p:last-child {
  max-width: 40ch;
  min-height: 3.26em;
  font-size: var(--type-lg);
  line-height: 1.63;
  color: var(--muted-strong);
}

.architectural-scene,
.plan-board,
.frame-board {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent),
    rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.gallery-shot__media {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent),
    rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.gallery-shot__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 292px;
  object-fit: cover;
}

.gallery-shot__media--model {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(236, 242, 255, 0.28)),
    rgba(239, 245, 255, 0.38);
}

.model-scene {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  height: 100%;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(126, 160, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(246, 249, 255, 0.92), rgba(234, 241, 255, 0.88));
  cursor: grab;
}

.model-scene.is-dragging {
  cursor: grabbing;
}

.model-scene::before {
  content: none;
}

.model-scene__viewport,
.model-scene__canvas {
  width: 100%;
  height: 100%;
}

.model-scene__viewport {
  position: absolute;
  inset: 0;
}

.model-scene__canvas {
  display: block;
}

.model-scene__toolbar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.model-scene__toolbar > * {
  pointer-events: auto;
}

.model-scene__badge,
.model-scene__expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(236, 242, 255, 0.6)),
    rgba(236, 243, 255, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 10px 24px rgba(55, 84, 160, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-sans);
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: var(--tracking-ui);
}

.model-scene__badge {
  color: var(--primary-strong);
}

.model-scene__expand {
  color: var(--text);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.model-scene__expand:hover {
  transform: translateY(-1px);
  border-color: rgba(90, 130, 252, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(230, 239, 255, 0.72)),
    rgba(236, 243, 255, 0.48);
}

.model-scene__expand:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(90, 130, 252, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 10px 24px rgba(55, 84, 160, 0.1);
}

.model-scene__hint,
.model-scene__status {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--type-sm);
  line-height: 1.45;
  letter-spacing: var(--track-title);
}

.model-scene__hint {
  bottom: 16px;
  color: rgba(50, 71, 129, 0.78);
  pointer-events: none;
}

.model-scene__status {
  inset: auto 16px 16px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 16px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 242, 255, 0.8)),
    rgba(239, 245, 255, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(50, 73, 140, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.model-scene.is-ready .model-scene__status {
  display: none;
}

.architectural-scene::before,
.plan-board::before,
.frame-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 130, 252, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 130, 252, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.8;
  pointer-events: none;
}

.architectural-scene__measure {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 28, 51, 0.08);
  font-family: var(--font-mono);
  font-size: var(--type-xs);
  line-height: var(--lh-flat);
  letter-spacing: 0.06em;
  color: var(--muted-strong);
  z-index: 1;
}

.architectural-scene__measure--top {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.architectural-scene__measure--side {
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.architectural-scene__house {
  position: relative;
  width: min(100%, 470px);
  height: 260px;
  margin: 26px auto 0;
}

.architectural-scene__roof,
.architectural-scene__wall,
.architectural-scene__floor,
.architectural-scene__window,
.frame-diagram span {
  position: absolute;
  border: 2px solid rgba(90, 130, 252, 0.78);
  background: rgba(90, 130, 252, 0.06);
}

.architectural-scene__roof {
  top: 8px;
  left: 15%;
  width: 66%;
  height: 68px;
  transform: skew(-33deg);
  border-right: none;
  border-bottom: none;
}

.architectural-scene__wall--front {
  top: 78px;
  left: 13%;
  width: 49%;
  height: 136px;
}

.architectural-scene__wall--side {
  top: 78px;
  right: 11%;
  width: 32%;
  height: 136px;
  transform: skewY(-16deg);
}

.architectural-scene__floor {
  right: 11%;
  bottom: 26px;
  width: 39%;
  height: 26px;
  transform: skew(-33deg);
}

.architectural-scene__window {
  top: 112px;
  width: 54px;
  height: 54px;
}

.architectural-scene__window--left {
  left: 23%;
}

.architectural-scene__window--center {
  left: 37%;
}

.architectural-scene__window--right {
  right: 21%;
}

.architectural-scene__note {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 30px rgba(56, 79, 142, 0.08);
  z-index: 1;
}

.architectural-scene__note strong {
  font-size: var(--type-xl);
  line-height: 1.02;
  letter-spacing: var(--track-heading);
}

.architectural-scene__note span {
  font-size: var(--type-sm);
  line-height: 1.45;
  color: var(--muted-strong);
}

.architectural-scene__note--area {
  left: 24px;
  bottom: 22px;
}

.architectural-scene__note--term {
  right: 24px;
  bottom: 22px;
}

.plan-board {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  grid-template-areas:
    "living bed1"
    "living bed2"
    "hall bath";
  gap: 12px;
}

.plan-board__room {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(90, 130, 252, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  font-weight: 700;
  text-align: center;
}

.plan-board__room strong {
  font-size: var(--type-lg);
  line-height: 1.2;
  letter-spacing: var(--track-title);
}

.plan-board__room span {
  font-size: var(--type-sm);
  line-height: 1.45;
  color: var(--muted-strong);
}

.plan-board__room--living {
  grid-area: living;
  min-height: 228px;
}

.plan-board__room--bed-1 {
  grid-area: bed1;
}

.plan-board__room--bed-2 {
  grid-area: bed2;
}

.plan-board__room--bath {
  grid-area: bath;
}

.plan-board__room--hall {
  grid-area: hall;
}

.frame-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: center;
}

.frame-diagram {
  position: relative;
  width: min(100%, 100%);
  height: 232px;
}

.frame-diagram span:nth-child(1) {
  left: 16px;
  right: 126px;
  bottom: 10px;
  height: 136px;
}

.frame-diagram span:nth-child(2) {
  top: 16px;
  left: 52px;
  right: 92px;
  height: 64px;
  transform: skew(-32deg);
  border-bottom: none;
  border-right: none;
}

.frame-diagram span:nth-child(3) {
  right: 26px;
  top: 84px;
  width: 146px;
  height: 128px;
  transform: skewY(-16deg);
}

.frame-diagram span:nth-child(4) {
  right: 26px;
  bottom: 10px;
  width: 160px;
  height: 28px;
  transform: skew(-32deg);
}

.frame-board__legend {
  display: grid;
  gap: 10px;
}

.frame-board__legend div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.frame-board__legend strong {
  font-size: var(--type-base);
  line-height: 1.2;
  letter-spacing: var(--track-title);
}

.frame-board__legend span {
  font-size: var(--type-sm);
  line-height: 1.45;
  color: var(--muted-strong);
}

.gallery-nav {
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.gallery-nav .thumb {
  min-height: 42px;
  padding: 0 20px;
  background: transparent;
  border-color: transparent;
  color: var(--muted-strong);
  font-size: var(--fs-ui-sm);
  font-weight: 600;
}

.gallery-nav .thumb.is-active {
  background: linear-gradient(135deg, #6f93ff 0%, #4f78f5 100%);
  box-shadow: 0 10px 24px rgba(79, 120, 245, 0.24);
  color: #fff;
}

.buy-card {
  position: sticky;
  top: 108px;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
}

.buy-card__title {
  display: grid;
  gap: 10px;
}

.buy-card h1,
.buy-card h2 {
  margin: 0;
  font-size: var(--type-heading-lg);
  line-height: 0.98;
  letter-spacing: var(--track-display);
}

.buy-card__price,
.buy-card__actions {
  display: grid;
  gap: 8px;
}

.buy-card__specs {
  display: grid;
  gap: 14px;
}

.buy-card__spec-group {
  display: grid;
  gap: 10px;
}

.buy-card__spec-title {
  margin: 0;
  padding-left: 2px;
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  letter-spacing: var(--track-kicker);
  color: var(--primary-strong);
}

.buy-card__price {
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(90, 130, 252, 0.14);
  background:
    linear-gradient(180deg, rgba(90, 130, 252, 0.08), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.62);
}

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

.comparison-grid--product {
  gap: 20px;
}

.comparison-card--product {
  gap: 18px;
  min-height: 100%;
  padding: 28px;
}

.comparison-card--product h3 {
  max-width: 10.5ch;
  min-height: 2.15em;
  font-size: clamp(26px, 2.25vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.comparison-card--product > p:not(.comparison-card__tag) {
  max-width: 31ch;
  min-height: 4.9em;
  font-size: var(--type-base);
  line-height: 1.62;
  color: var(--muted-strong);
}

.comparison-card--accent.comparison-card--product > p:not(.comparison-card__tag) {
  color: rgba(255, 255, 255, 0.88);
}

.comparison-card__tag--light {
  background: rgba(24, 34, 74, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  text-shadow: 0 1px 1px rgba(10, 18, 43, 0.18);
}

.comparison-card__tag {
  max-width: calc(100% - 24px);
}

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

.comparison-points li {
  position: relative;
  padding-left: 18px;
  font-size: var(--type-md);
  line-height: var(--lh-copy);
  color: var(--muted-strong);
}

.comparison-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.comparison-points--light li {
  color: rgba(255, 255, 255, 0.88);
}

.comparison-points--light li::before {
  background: rgba(255, 255, 255, 0.9);
}

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

.faq-list--product {
  gap: 20px;
}

.faq-item--product {
  display: grid;
  align-content: start;
  grid-template-rows: min-content minmax(2.15em, auto) minmax(4.9em, auto);
  gap: 18px;
  min-height: 100%;
  padding: 28px;
}

.faq-item--product h3 {
  max-width: 10.5ch;
  min-height: 2.15em;
  margin: 0;
  font-size: clamp(26px, 2.25vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.faq-item--product p:last-child {
  max-width: 31ch;
  min-height: 4.9em;
  margin: 0;
  font-size: var(--type-base);
  line-height: 1.62;
  color: var(--muted-strong);
}

.faq-item--product .faq-item__tag {
  max-width: calc(100% - 24px);
}

.catalog-empty-state {
  margin-top: 18px;
}

.catalog-empty-state[hidden] {
  display: none !important;
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(17, 28, 51, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

@media (max-width: 1100px) {
  .hero-grid,
  .compact-hero__grid,
  .request-grid,
  .catalog-layout__grid,
  .product-hero,
  .accent-band__shell,
  .category-grid,
  .proof-grid,
  .steps-grid,
  .project-grid,
  .detail-grid,
  .comparison-grid,
  .faq-list,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .buy-card {
    position: static;
  }

  .filter-panel {
    position: static;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .sort-box {
    min-width: 0;
  }

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

  .feature-card h3,
  .feature-card p {
    max-width: none;
    min-height: 0;
  }

  .compact-hero__grid--catalog {
    gap: 28px;
  }

  .catalog-hero-copy {
    max-width: none;
    padding: 0;
  }

  .summary-card--catalog {
    max-width: 620px;
  }

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

  .direction-panel {
    grid-template-columns: 1fr;
  }

  .direction-panel__content h3 {
    max-width: 12ch;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    gap: 22px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-proof,
  .hero-product {
    max-width: none;
  }

  .hero-product__intro h2 {
    max-width: 15ch;
  }

  .hero-product__summary {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 10px;
  }

  .header-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 13px;
    border-radius: 20px;
  }

  .header-shell.is-menu-open {
    align-items: flex-start;
    padding-bottom: 18px;
  }

  .brand {
    margin-left: 4px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  .site-nav.is-open {
    display: grid;
  }

  .header-actions.is-open {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 2px;
  }

  .site-nav {
    gap: 8px;
    margin: 0;
    padding-top: 6px;
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(17, 28, 51, 0.08);
    border-radius: 16px;
    background: rgba(245, 248, 255, 0.84);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font-size: var(--type-base);
    font-weight: var(--fw-bold);
    letter-spacing: var(--track-title);
  }

  .site-nav a.is-active,
  .site-nav a:hover {
    border-color: rgba(90, 130, 252, 0.18);
    background: rgba(90, 130, 252, 0.14);
  }

  .nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 2px;
  }

  .site-nav .nav-cta {
    justify-content: center;
    min-height: 52px;
    border-radius: 18px;
  }

  .header-actions .button {
    width: 100%;
    min-height: 48px;
  }

  h1 {
    font-size: var(--type-display-sm);
  }

  .section {
    padding: 34px 0 48px;
  }

  .hero-blueprint,
  .gallery-stage {
    min-height: 320px;
  }

  .gallery-stage {
    min-height: auto;
  }

  .gallery-shot {
    min-height: auto;
  }

  .architectural-scene,
  .plan-board,
  .frame-board,
  .gallery-shot__media {
    min-height: auto;
  }

  .frame-board {
    grid-template-columns: 1fr;
  }

  .gallery-shot__copy h1,
  .gallery-shot__copy h2 {
    max-width: 12ch;
    font-size: var(--type-display-sm);
  }

  .request-copy h2 {
    font-size: var(--type-display-sm);
  }

  .request-benefits {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 22px;
  }

  .hero-copy h1 {
    max-width: 11.2ch;
  }

  .hero-copy .lead {
    max-width: 35ch;
    font-size: var(--type-base);
  }

  .hero-proof {
    padding: 16px;
  }

  .hero-proof__content strong {
    font-size: var(--type-xl);
  }

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

  .hero-highlights li {
    min-height: 0;
  }

  .hero-product {
    padding: 20px;
    gap: 14px;
  }

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

  .hero-product .hero-blueprint {
    min-height: 0;
  }

  .hero-blueprint__image {
    aspect-ratio: 1 / 0.74;
    transform: scale(1.13);
  }

  .hero-product:hover .hero-blueprint__image {
    transform: scale(1.15);
  }

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

  .hero-steps li {
    min-height: 0;
  }

  .filter-panel {
    padding: 24px 20px;
  }

  .filter-panel__head h2 {
    font-size: var(--type-heading-lg);
  }

  .compact-hero--catalog {
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .catalog-hero-copy {
    gap: 18px;
  }

  .catalog-hero-copy h1 {
    max-width: 11ch;
    font-size: var(--type-display-sm);
  }

  .catalog-hero-copy .lead {
    max-width: 34ch;
    font-size: var(--type-lg);
  }

  .summary-card--catalog {
    gap: 16px;
    padding: 24px 22px;
  }

  .summary-card--catalog h2 {
    max-width: none;
    font-size: var(--type-3xl);
  }

  .chip-row--directions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .directions-chip {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    text-align: center;
    white-space: normal;
  }

  .direction-panel {
    padding: 28px;
  }

  .direction-panel__aside {
    padding: 20px;
  }

  .direction-panel__content h3 {
    max-width: none;
    font-size: clamp(32px, 9vw, 44px);
  }

  .proof-card__meta--docs {
    grid-template-columns: 1fr;
  }

  .media-modal {
    padding: 18px;
  }

  .media-modal__dialog {
    padding: 20px;
    border-radius: 24px;
  }

  .media-modal__dialog--gallery {
    height: min(88vh, 820px);
  }

  .media-gallery__stage {
    padding: 14px 54px;
  }
}

@media (max-width: 580px) {
  :root {
    --container: min(1180px, calc(100vw - 20px));
  }

  .button {
    width: 100%;
  }

  .site-nav a {
    min-height: 46px;
    padding: 0 14px;
  }

  .hero-actions,
  .hero-metrics,
  .inline-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-copy {
    gap: 20px;
  }

  .hero-copy h1 {
    max-width: 10.4ch;
    font-size: var(--type-display-sm);
  }

  .hero-copy .lead {
    max-width: none;
    font-size: var(--type-base);
    line-height: 1.54;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }

  .hero-proof__icon {
    width: 42px;
    height: 42px;
  }

  .hero-proof__content strong {
    font-size: var(--type-lg);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-highlights li {
    min-height: 0;
    padding: 15px;
  }

  .hero-highlight__icon {
    width: 40px;
    height: 40px;
  }

  .hero-product {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-product__intro h2 {
    max-width: none;
    font-size: var(--type-3xl);
    line-height: 1.08;
  }

  .hero-product .hero-blueprint {
    padding: 12px;
    min-height: 0;
    border-radius: 22px;
  }

  .hero-blueprint__image {
    aspect-ratio: 1 / 0.84;
    border-radius: 18px;
    transform: scale(1.08);
  }

  .hero-product:hover .hero-blueprint__image {
    transform: scale(1.1);
  }

  .hero-product__stats,
  .hero-steps {
    grid-template-columns: 1fr;
  }

  .hero-product__stats li,
  .hero-steps li {
    min-height: 0;
  }

  .hero-product__stats li + li,
  .hero-steps li + li {
    border-left: none;
    border-top: 1px solid rgba(17, 28, 51, 0.08);
  }

  .thumb-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-gallery__tools .gallery-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 300px);
    gap: 6px;
    padding: 6px;
    overflow: visible;
  }

  .product-gallery__tools .gallery-nav .thumb {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    line-height: 1;
  }

  .metric-card,
  .feature-card,
  .proof-card,
  .step-card,
  .detail-card,
  .comparison-card,
  .faq-item,
  .project-card__body,
  .lead-form,
  .filter-panel,
  .catalog-toolbar,
  .buy-card,
  .summary-card {
    padding: 18px;
  }

  .filter-panel {
    padding: 20px 18px;
  }

  .filter-panel__head h2 {
    font-size: var(--type-heading-md);
  }

  .filter-panel__meta {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-reset,
  .filter-panel__summary {
    width: 100%;
  }

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

  .chip-row--directions {
    grid-template-columns: 1fr;
  }

  .floating-card h2,
  .summary-card h2,
  .buy-card h2 {
    font-size: var(--type-title-md);
  }

  .compact-hero--catalog {
    padding-top: 20px;
  }

  .catalog-hero-copy h1 {
    max-width: none;
    font-size: var(--type-display-sm);
  }

  .catalog-hero-copy .lead {
    font-size: var(--type-base);
    line-height: var(--lh-copy);
  }

  .catalog-hero-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-hero-meta .chip-static {
    justify-content: flex-start;
  }

  .summary-card--catalog {
    padding: 20px 18px;
  }

  .summary-card__lead,
  .check-list--catalog li {
    font-size: var(--type-md);
  }

  .proof-card__visual--gallery,
  .proof-card__visual--video-card {
    min-height: 220px;
  }

  .proof-card__stack {
    inset: 56px 14px 14px;
  }

  .proof-card__meta--docs,
  .media-gallery__thumbs {
    grid-template-columns: 1fr;
  }

  .media-modal {
    padding: 12px;
  }

  .media-modal__dialog {
    padding: 16px;
    border-radius: 20px;
  }

  .media-modal__dialog--gallery {
    height: auto;
    max-height: min(92vh, 860px);
    overflow: auto;
  }

  .media-gallery__stage {
    padding: 12px 14px 58px;
  }

  .media-gallery__stage img {
    height: auto;
    max-height: 50vh;
  }

  .media-gallery__nav {
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .media-gallery__nav--prev {
    left: 12px;
  }

  .media-gallery__nav--next {
    right: 12px;
  }

  .media-gallery__footer {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .visual-stack span {
    width: auto;
    min-height: 72px;
  }

  .request-highlight,
  .request-benefit,
  .lead-form {
    padding: 18px;
  }

  .request-copy h2 {
    font-size: var(--type-display-sm);
  }

  .request-copy > p,
  .request-highlight p {
    font-size: var(--type-base);
  }

  .lead-form__meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
  }

  .direction-panel__actions {
    display: grid;
  }

  .direction-panel__actions .button {
    width: 100%;
  }

  .gallery-stage {
    padding: 18px;
  }

  .gallery-shot {
    gap: 18px;
  }

  .gallery-shot__top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .gallery-shot__copy h1,
  .gallery-shot__copy h2 {
    font-size: var(--type-display-sm);
  }

  .gallery-shot__copy p:last-child {
    font-size: var(--type-base);
  }

  .model-scene__toolbar {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .model-scene__badge,
  .model-scene__expand {
    min-height: 34px;
    padding: 0 12px;
    font-size: var(--type-xs);
  }

  .model-scene__hint,
  .model-scene__status {
    left: 14px;
    right: 14px;
    font-size: var(--type-xs);
  }

  .architectural-scene,
  .plan-board,
  .frame-board {
    padding: 18px;
    border-radius: 24px;
  }

  .gallery-shot__media {
    border-radius: 24px;
  }

  .media-modal__dialog--model {
    height: auto;
    max-height: min(92vh, 860px);
  }

  .model-scene--modal {
    min-height: 58vh;
    border-radius: 24px;
  }

  .architectural-scene__house {
    height: 210px;
    margin-top: 34px;
  }

  .architectural-scene__note {
    position: static;
    min-width: 0;
    margin-top: 12px;
  }

  .plan-board {
    grid-template-columns: 1fr;
    grid-template-areas:
      "living"
      "bed1"
      "bed2"
      "bath"
      "hall";
  }

  .plan-board__room--living {
    min-height: 148px;
  }

  .spec-grid:not(.spec-grid--product),
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .project-card__body {
    padding: 22px 20px 20px;
    gap: 18px;
  }

  .project-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .project-card__type {
    margin-left: 0;
    font-size: 15px;
    text-align: left;
  }

  .catalog-stats {
    grid-template-columns: 1fr;
  }
}

/* Product UX polish pass: stronger hierarchy, clearer surfaces, faster scanning. */
:root {
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.97);
  --line: rgba(17, 28, 51, 0.14);
  --line-strong: rgba(17, 28, 51, 0.22);
  --muted: #44516c;
  --muted-strong: #2f3b55;
  --shadow: 0 16px 34px rgba(37, 54, 96, 0.1);
  --shadow-soft: 0 8px 20px rgba(33, 48, 87, 0.07);
}

body {
  background:
    radial-gradient(circle at 4% 0%, rgba(90, 130, 252, 0.16), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(61, 97, 217, 0.11), transparent 24%),
    linear-gradient(180deg, #eaf1ff 0%, #f4f7fd 50%, #edf2fa 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(63, 100, 220, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 100, 220, 0.052) 1px, transparent 1px);
  opacity: 0.86;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 76%);
}

.glass-panel,
.project-card,
.detail-card,
.comparison-card,
.faq-item,
.summary-card,
.filter-panel,
.catalog-toolbar,
.buy-card {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 16px 34px rgba(37, 54, 96, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.home-main {
  display: flex;
  flex-direction: column;
}

.home-main > .hero {
  order: 0;
}

.home-section--popular {
  order: 1;
  padding-top: 30px;
}

.home-section--directions {
  order: 2;
}

.home-section--trust {
  order: 3;
}

.home-section--steps {
  order: 4;
}

.home-section--accent {
  order: 5;
}

.home-section--request {
  order: 6;
}

.section {
  padding-top: 46px;
  padding-bottom: 64px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 14ch;
}

.section-head__lead,
.lead,
.project-card p,
.detail-card p,
.summary-card__lead {
  color: var(--muted-strong);
}

.hero {
  padding-top: 24px;
  padding-bottom: 36px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.88fr);
  align-items: center;
}

.hero-copy {
  gap: 18px;
}

.hero-copy h1 {
  max-width: 13.8ch;
  font-size: clamp(42px, 5.1vw, 62px);
  line-height: 0.96;
}

.hero-copy .lead {
  max-width: 40ch;
  line-height: 1.48;
  color: #26334d;
}

.hero-actions .button-primary {
  box-shadow:
    0 16px 30px rgba(45, 87, 221, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-inline-link {
  width: fit-content;
  font-weight: var(--fw-bold);
  color: var(--primary-strong);
}

.hero-inline-link::after {
  content: " →";
}

.hero-proof {
  grid-template-columns: auto 1fr;
  gap: 14px;
  max-width: 560px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 246, 255, 0.84)),
    rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(90, 130, 252, 0.13);
  box-shadow: 0 12px 26px rgba(37, 54, 96, 0.075);
}

.hero-proof__content strong {
  max-width: 24ch;
}

.hero-proof__content p {
  max-width: 42ch;
  color: #3f4d67;
}

.hero-highlights {
  gap: 10px;
}

.hero-highlights li {
  min-height: 92px;
  padding: 14px;
  border-color: rgba(17, 28, 51, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.8)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 18px rgba(37, 54, 96, 0.055);
}

.hero-product {
  gap: 14px;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 246, 255, 0.93)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 20px 42px rgba(36, 53, 95, 0.11),
    0 2px 6px rgba(36, 53, 95, 0.04);
}

.hero-product__intro h2 {
  max-width: 13.5ch;
}

.hero-blueprint {
  border-color: rgba(90, 130, 252, 0.08);
  background:
    radial-gradient(circle at 52% 56%, rgba(255, 255, 255, 0.98), rgba(224, 234, 255, 0.38) 58%, rgba(224, 234, 255, 0) 78%),
    linear-gradient(180deg, rgba(234, 241, 255, 0.94), rgba(248, 251, 255, 0.78));
}

.hero-blueprint__image {
  aspect-ratio: 1 / 0.64;
  object-position: center 52%;
  transform: scale(1.24);
  box-shadow: 0 16px 30px rgba(53, 76, 142, 0.09);
}

.hero-product:hover .hero-blueprint__image {
  transform: scale(1.26);
}

.hero-product__stats,
.hero-steps {
  border-color: rgba(17, 28, 51, 0.1);
  background: rgba(248, 251, 255, 0.62);
}

.hero-product__stats span,
.hero-steps__copy p {
  color: #4b5974;
}

.hero-product__stats strong {
  color: var(--text);
}

.directions-explorer {
  gap: 16px;
}

.chip-row--directions {
  gap: 8px;
}

.directions-chip {
  min-height: 38px;
  padding: 0 14px;
  color: #33425f;
}

.direction-panel {
  padding: 28px;
  border-color: rgba(90, 130, 252, 0.11);
  box-shadow: 0 14px 30px rgba(37, 54, 96, 0.075);
}

.direction-panel__content h3 {
  font-size: clamp(32px, 3.4vw, 46px);
}

.direction-panel__aside {
  border-radius: 24px;
}

.catalog-layout__grid {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
}

.filter-panel {
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.86)),
    rgba(255, 255, 255, 0.78);
}

.filter-panel__head {
  gap: 12px;
}

.filter-panel__head h2 {
  max-width: 9ch;
  font-size: clamp(28px, 2.7vw, 38px);
}

.filter-panel__lead {
  color: var(--muted-strong);
}

.filter-group {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.catalog-toolbar {
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.catalog-stat,
.sort-box {
  padding: 14px 15px;
  border-radius: 16px;
}

.catalog-stat strong {
  font-size: var(--type-xl);
}

.project-card {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.88)),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    0 14px 30px rgba(37, 54, 96, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.project-card__body {
  gap: 16px;
  padding: 22px 22px 24px;
}

.project-card h3 {
  min-height: 2.24em;
  font-size: clamp(24px, 2.15vw, 30px);
  line-height: 1.08;
  letter-spacing: var(--track-heading);
}

.project-card h3 a {
  transition: color 0.2s ease;
}

.project-card h3 a:hover,
.project-card h3 a:focus-visible {
  color: var(--primary-strong);
}

.project-card p {
  min-height: 3.1em;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.spec-grid:not(.spec-grid--product) {
  gap: 10px;
}

.spec-grid:not(.spec-grid--product) div {
  padding: 12px 14px;
  border-color: rgba(17, 28, 51, 0.1);
  background: rgba(255, 255, 255, 0.64);
}

.price-line {
  gap: 5px;
  padding-top: 2px;
}

.price-line__delivery,
.buy-card__delivery {
  display: block;
  font-size: var(--type-sm);
  line-height: 1.35;
}

.price-line__delivery,
.buy-card__delivery {
  color: var(--primary-strong);
  font-weight: var(--fw-bold);
}

.project-card .button {
  min-height: 50px;
}

.product-hero {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.gallery-stage,
.buy-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.9)),
    rgba(255, 255, 255, 0.84);
}

.gallery-shot__media--model {
  border-color: rgba(90, 130, 252, 0.1);
  background:
    radial-gradient(circle at 52% 60%, rgba(255, 255, 255, 0.92), rgba(221, 232, 255, 0.38) 58%, transparent 76%),
    linear-gradient(180deg, rgba(241, 246, 255, 0.94), rgba(231, 239, 255, 0.86));
}

.buy-card {
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
}

.buy-card__lead {
  color: var(--muted-strong);
}

.buy-card__price {
  gap: 6px;
  padding: 18px;
  border-color: rgba(90, 130, 252, 0.2);
  background:
    linear-gradient(180deg, rgba(90, 130, 252, 0.11), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.74);
}

.buy-card__price strong {
  font-size: clamp(28px, 3vw, 34px);
}

.buy-card__delivery {
  margin-top: 4px;
}

.buy-card__specs {
  gap: 12px;
}

.buy-card__spec-group {
  gap: 8px;
}

.spec-grid--product {
  gap: 10px;
}

.spec-grid--product div {
  padding: 12px 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 255, 0.76)),
    rgba(255, 255, 255, 0.68);
}

.spec-grid--product dt {
  font-size: var(--type-xs);
}

.spec-grid--product dd {
  font-size: var(--type-base);
}

.buy-card__actions .button {
  min-height: 48px;
}

@media (max-width: 1100px) {
  .catalog-layout__grid,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex !important;
    flex: 0 0 46px;
    margin-left: auto;
    opacity: 1;
    visibility: visible;
  }

  .header-shell {
    justify-content: space-between;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero-copy__main {
    order: 2;
  }

  .hero-actions {
    order: 3;
  }

  .hero-inline-link {
    order: 4;
  }

  .hero-proof {
    order: 5;
  }

  .hero-visual {
    order: 6;
  }

  .hero-highlights {
    order: 7;
  }

  .hero-copy h1 {
    max-width: 12.8ch;
    font-size: clamp(40px, 10vw, 54px);
  }

  .hero-product__intro h2 {
    max-width: none;
  }

  .home-section--popular {
    padding-top: 18px;
  }
}

@media (max-width: 580px) {
  .container {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .hero-grid > *,
  .hero-product,
  .hero-product__media,
  .hero-product__workflow {
    min-width: 0;
    width: 100%;
  }

  .section {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .hero-copy h1 {
    max-width: 11.7ch;
  }

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

  .hero-blueprint__image {
    aspect-ratio: 1 / 0.82;
    transform: scale(1.12);
  }

  .hero-product:hover .hero-blueprint__image {
    transform: scale(1.13);
  }

  .catalog-toolbar {
    padding: 12px;
  }

  .project-card h3,
  .project-card p {
    min-height: 0;
  }

  .price-line__delivery,
  .buy-card__delivery {
    font-size: 13px;
  }

  .product-hero {
    gap: 18px;
  }
}

/* Hero symmetry pass: align left-side actions, trust and facts into one clean column. */
.button-tertiary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(241, 246, 255, 0.5)),
    rgba(255, 255, 255, 0.42);
  border-color: rgba(45, 87, 221, 0.15);
  color: var(--primary-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.button-tertiary:hover,
.button-tertiary:focus-visible {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(45, 87, 221, 0.24);
  color: var(--primary-strong);
  box-shadow: 0 10px 22px rgba(35, 55, 104, 0.06);
}

.hero-copy {
  --hero-left-width: min(100%, 660px);
}

.hero-actions,
.hero-proof,
.hero-highlights {
  width: var(--hero-left-width);
  max-width: var(--hero-left-width);
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.12fr 0.92fr 0.86fr;
  gap: 12px;
  margin-top: 2px;
}

.hero-actions .button {
  width: 100%;
  min-width: 0;
  padding-inline: 14px;
  justify-content: center;
  white-space: nowrap;
}

.hero-manager-button {
  font-weight: var(--fw-bold);
}

.hero-proof {
  max-width: var(--hero-left-width);
  min-height: 124px;
  align-items: center;
  padding: 20px 22px;
}

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

.hero-proof__content strong,
.hero-proof__content p {
  max-width: none;
}

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

.hero-highlights li {
  min-height: 108px;
  align-content: center;
}

@media (max-width: 1100px) {
  .hero-copy {
    --hero-left-width: 100%;
  }
}

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

  .hero-actions .button {
    min-height: 50px;
  }
}

@media (max-width: 580px) {
  .hero-proof,
  .hero-highlights {
    width: 100%;
    max-width: 100%;
  }

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

/* Landing rebuild: 3D product scene on the left, concise offer on the right. */
.hero--landing {
  padding-top: clamp(18px, 2.2vh, 30px);
  padding-bottom: clamp(28px, 4vh, 54px);
}

.hero--landing .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
  min-height: clamp(690px, calc(100svh - 116px), 900px);
}

.hero--landing .hero-visual {
  position: relative;
  order: 1;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 18%, rgba(98, 132, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.64), transparent 42%),
    linear-gradient(135deg, rgba(229, 238, 255, 0.55), rgba(255, 255, 255, 0.2));
  box-shadow:
    0 24px 54px rgba(36, 53, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero--landing .hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 26px;
  background-image:
    linear-gradient(rgba(70, 111, 246, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 111, 246, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero--landing .hero-visual::after {
  content: "";
  position: absolute;
  inset: 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(187, 207, 255, 0.22) 58%, transparent 76%);
  filter: blur(22px);
  pointer-events: none;
}

.model-scene--hero {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
  border-radius: inherit;
  background: transparent;
}

.model-scene--hero .model-scene__viewport {
  inset: 4% -18% -18% -18%;
}

.hero-model__badge {
  position: absolute;
  top: 28px;
  left: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.48);
  color: var(--primary-strong);
  font-family: var(--font-mono);
  font-size: var(--type-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 12px 28px rgba(44, 68, 140, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero--landing .hero-copy {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.3vh, 28px);
  min-height: 100%;
  padding: clamp(20px, 2.6vw, 38px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero--landing .hero-copy > .eyebrow {
  margin-bottom: 0;
}

.hero--landing .hero-copy__main {
  gap: 18px;
}

.hero--landing .hero-copy h1 {
  max-width: 10.6ch;
  font-size: clamp(52px, 5.6vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero--landing .hero-copy .lead {
  max-width: 34ch;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
  color: #2d3952;
}

.hero--landing .hero-actions {
  display: flex;
  width: auto;
  max-width: none;
  margin-top: 0;
  gap: 0;
}

.hero--landing .hero-actions .button {
  width: auto;
  min-width: 250px;
  min-height: 58px;
  padding-inline: 28px;
}

.hero-benefit-tabs {
  display: grid;
  gap: 14px;
  max-width: 470px;
  margin-top: clamp(8px, 1.5vh, 18px);
}

.hero-benefit-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--segmented-control-gap);
  min-height: var(--segmented-control-height);
  padding: var(--segmented-control-padding);
  border: 1px solid rgba(17, 28, 51, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-benefit-tab {
  min-height: var(--segmented-control-button-height);
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #52627d;
  font: inherit;
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-benefit-tab:hover,
.hero-benefit-tab:focus-visible {
  color: var(--primary-strong);
  outline: none;
}

.hero-benefit-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #6f93ff 0%, #3e69f3 100%);
  box-shadow: 0 12px 24px rgba(55, 96, 235, 0.22);
}

.hero-benefit-panel {
  display: grid;
  gap: 8px;
  min-height: 174px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(240, 246, 255, 0.64)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    0 16px 34px rgba(37, 54, 96, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-benefit-panel__kicker {
  color: var(--primary-strong);
  font-family: var(--font-mono);
  font-size: var(--type-xs);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-benefit-panel h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.02;
  letter-spacing: var(--track-heading);
}

.hero-benefit-panel p {
  max-width: 37ch;
  margin: 0;
  color: #475672;
  font-size: var(--type-base);
  line-height: 1.5;
}

.model-scene--hero .model-scene__status {
  left: 30px;
  right: auto;
  bottom: 28px;
  min-height: 42px;
  z-index: 4;
}

@media (max-width: 1100px) {
  .hero--landing .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero--landing .hero-visual {
    min-height: min(72vw, 620px);
  }

  .hero--landing .hero-copy {
    padding: 0;
  }

  .hero--landing .hero-copy h1 {
    max-width: 12ch;
  }
}

@media (max-width: 820px) {
  .hero--landing .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero--landing .hero-copy {
    display: flex;
    order: 1;
  }

  .hero--landing .hero-visual {
    order: 2;
    min-height: min(92vw, 520px);
  }

  .hero--landing .hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(46px, 12vw, 66px);
  }

  .hero--landing .hero-copy .lead {
    max-width: 34ch;
    font-size: var(--type-lg);
  }

  .hero-benefit-tabs {
    max-width: none;
  }
}

@media (max-width: 580px) {
  .hero--landing {
    padding-top: 16px;
  }

  .hero--landing .hero-copy h1 {
    max-width: 10.2ch;
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero--landing .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-benefit-tabs__nav {
    border-radius: 22px;
  }

  .hero-benefit-tab {
    padding: 0 10px;
    font-size: var(--type-xs);
  }

  .hero-benefit-panel {
    min-height: 0;
    padding: 20px;
    border-radius: 22px;
  }

  .hero--landing .hero-visual {
    min-height: min(104vw, 430px);
    border-radius: 26px;
  }

  .hero-model__badge {
    top: 18px;
    left: 18px;
  }
}

/* Hero equal-panel pass: make offer and product cards feel like one balanced first screen. */
@media (min-width: 1101px) {
  .home-main > .hero {
    display: flex;
    align-items: stretch;
    min-height: calc(100svh - 74px);
    padding-top: clamp(20px, 2.4vh, 34px);
    padding-bottom: clamp(22px, 3vh, 42px);
  }

  .home-main > .hero > .container {
    display: grid;
    align-items: stretch;
    width: var(--container);
  }

  .hero-grid {
    min-height: clamp(760px, calc(100svh - 118px), 900px);
    align-items: stretch;
  }

  .hero-copy {
    --hero-left-width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(28px, 2.35vw, 36px);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(243, 248, 255, 0.56)),
      rgba(255, 255, 255, 0.34);
    box-shadow:
      0 18px 42px rgba(36, 53, 95, 0.075),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
  }

  .hero-copy > .eyebrow {
    margin-bottom: 0;
  }

  .hero-copy__main {
    gap: 14px;
  }

  .hero-copy h1 {
    max-width: 12.9ch;
    font-size: clamp(46px, 4.7vw, 66px);
  }

  .hero-copy .lead {
    max-width: 39ch;
  }

  .hero-actions,
  .hero-proof,
  .hero-highlights {
    width: 100%;
    max-width: 100%;
  }

  .hero-proof {
    margin-top: clamp(6px, 1.2vh, 14px);
    min-height: 116px;
    padding: 18px 20px;
  }

  .hero-highlights li {
    min-height: 106px;
  }

  .hero-visual {
    display: grid;
    min-height: 100%;
  }

  .hero-product {
    height: 100%;
    min-height: 100%;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: clamp(22px, 2vw, 28px);
  }

  .hero-product__media {
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
  }

  .hero-product__visual {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 0;
  }

  .hero-product__visual .hero-blueprint__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 0.58;
  }

  .hero-product__workflow {
    align-self: end;
  }
}

/* Final landing hero lock: keep the new 3D-left / offer-right concept above older hero layers. */
.hero--landing .hero-copy {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero--landing .hero-actions,
.hero--landing .hero-benefit-tabs {
  width: 100%;
  max-width: 470px;
}

@media (min-width: 1101px) {
  .home-main > .hero--landing {
    min-height: calc(100svh - 70px);
    padding-top: clamp(18px, 2.2vh, 30px);
    padding-bottom: clamp(28px, 4vh, 54px);
  }

  .hero--landing .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
    min-height: clamp(690px, calc(100svh - 116px), 900px);
    align-items: stretch;
  }

  .hero--landing .hero-copy {
    min-height: 100%;
    padding: clamp(20px, 2.6vw, 38px) 0;
    justify-content: center;
  }

  .hero--landing .hero-visual {
    min-height: 100%;
  }
}

@media (max-width: 1100px) {
  .hero--landing .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero--landing .hero-copy {
    display: flex !important;
    order: 1;
  }

  .hero--landing .hero-copy__main {
    order: 1;
  }

  .hero--landing .hero-actions {
    order: 2;
  }

  .hero--landing .hero-benefit-tabs {
    order: 3;
  }

  .hero--landing .hero-visual {
    order: 4;
  }
}

/* Hero 3D free-stage pass: no frame/background, centered rotation and room to overflow. */
.hero--landing .hero-grid {
  overflow: visible;
}

.hero--landing .hero-visual {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero--landing .hero-visual::before,
.hero--landing .hero-visual::after {
  content: none;
}

.model-scene--hero {
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.model-scene--hero .model-scene__viewport {
  inset: -4% -34% -18% -24%;
}

.model-scene--hero .model-scene__canvas {
  overflow: visible;
}

.hero--landing .hero-copy {
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .model-scene--hero .model-scene__viewport {
    inset: 0 -20% -16% -20%;
  }

}

@media (max-width: 580px) {
  .model-scene--hero .model-scene__viewport {
    inset: 2% -24% -16% -24%;
  }

}

/* Final requested hero fixes. */
.hero-model__badge,
.hero-benefit-panel__kicker {
  display: none;
}

.hero-benefit-tabs {
  width: min(100%, 470px);
}

.hero-benefit-panel {
  grid-template-rows: 68px 96px;
  height: 226px;
  min-height: 226px;
  overflow: hidden;
  gap: 12px;
  padding: 26px 24px 24px;
}

.hero-benefit-panel h2 {
  max-width: 16ch;
  min-height: 68px;
  max-height: 68px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(27px, 2vw, 32px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-benefit-panel p {
  min-height: 96px;
  max-height: 96px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

@media (min-width: 1101px) {
  .hero--landing .hero-grid {
    gap: clamp(12px, 2vw, 34px);
  }

  .model-scene--hero .model-scene__viewport {
    inset: -4% -34% -18% -24%;
    transform: translateX(9%) scale(1.06);
    transform-origin: center center;
  }

  .hero--landing .hero-copy {
    justify-self: end;
    width: min(100%, 500px);
  }

  .hero--landing .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(50px, 4.55vw, 76px);
    line-height: 0.96;
    letter-spacing: 0;
  }
}

@media (max-width: 820px) {
  .hero-benefit-panel h2 {
    max-width: 18ch;
  }
}

@media (max-width: 580px) {
  .hero--landing .hero-copy,
  .hero--landing .hero-copy__main,
  .hero--landing .hero-actions,
  .hero--landing .hero-benefit-tabs,
  .hero-benefit-tabs__nav,
  .hero-benefit-panel {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    min-width: 0;
  }

  .hero--landing .hero-grid,
  .hero--landing .hero-copy {
    overflow: hidden;
  }

  .hero--landing .hero-copy {
    align-self: stretch;
  }

  .hero--landing .hero-copy h1 {
    width: auto;
    max-width: 8.6ch;
    font-size: clamp(40px, 11.6vw, 46px);
  }

  .hero--landing .hero-copy .lead {
    max-width: 100%;
  }

  .hero-benefit-panel {
    height: 216px;
    min-height: 216px;
    padding: 22px 20px;
  }

  .hero-benefit-tab {
    min-width: 0;
    padding: 0 6px;
    font-size: 11px;
  }

  .hero-benefit-panel h2 {
    font-size: clamp(24px, 7vw, 28px);
  }
}

/* Header menu segmented pill, matched to the hero tabs. */
.site-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 420px);
  min-height: 64px;
  margin: 0 auto;
  padding: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-nav a {
  min-width: 0;
  height: 52px;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #52627d;
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: 0;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-nav a.is-active {
  color: #fff;
  background: linear-gradient(135deg, #6f93ff 0%, #3e69f3 100%);
  box-shadow: 0 12px 24px rgba(55, 96, 235, 0.22);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-strong);
  background: transparent;
  box-shadow: none;
  outline: none;
}

.site-nav a.is-active:hover,
.site-nav a.is-active:focus-visible {
  color: #fff;
}

.site-nav a:active {
  color: var(--primary-strong);
  transform: translateY(1px);
}

.site-nav a.is-active:active {
  color: #fff;
  background: linear-gradient(135deg, #6f93ff 0%, #3e69f3 100%);
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    min-height: 56px;
    margin-top: 2px;
    padding: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: auto;
    justify-content: center;
    height: 44px;
    min-height: 44px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    font-size: var(--type-sm);
    letter-spacing: 0;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .site-nav a.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #6f93ff 0%, #3e69f3 100%);
    box-shadow: 0 12px 24px rgba(55, 96, 235, 0.22);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--primary-strong);
    background: transparent;
    box-shadow: none;
    outline: none;
  }

  .site-nav a.is-active:hover,
  .site-nav a.is-active:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #6f93ff 0%, #3e69f3 100%);
    box-shadow: 0 12px 24px rgba(55, 96, 235, 0.22);
  }
}

@media (max-width: 420px) {
  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding: 0 6px;
    font-size: 12px;
  }
}

/* Remove the outer header frame; keep only the menu and CTA controls visible. */
.header-shell {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Latest header and hero fit pass. */
.site-nav {
  gap: var(--segmented-control-gap);
  width: min(100%, 420px);
  min-height: var(--segmented-control-height);
  padding: var(--segmented-control-padding);
  border: 1px solid rgba(17, 28, 51, 0.1);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-nav a {
  height: var(--segmented-control-button-height);
  min-height: var(--segmented-control-button-height);
  padding: 0 18px;
}

.header-actions .button {
  width: auto;
  min-height: var(--segmented-control-button-height);
  padding: 0 22px;
  line-height: 1.1;
}

@media (min-width: 1101px) {
  .hero--landing .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
    gap: 0;
  }

  .hero--landing .hero-visual {
    margin-right: clamp(-72px, -4.4vw, -44px);
  }

  .model-scene--hero .model-scene__viewport {
    inset: -4% -48% -18% -24%;
    transform: translateX(12%) scale(1.02);
  }
}

@media (max-width: 820px) {
  .site-nav {
    min-height: var(--segmented-control-height);
    padding: var(--segmented-control-padding);
  }

  .site-nav a {
    height: var(--segmented-control-button-height);
    min-height: var(--segmented-control-button-height);
  }

  .header-actions .button {
    min-height: var(--segmented-control-button-height);
  }
}

/* Keep segmented controls visually stable on pointer hover. */
.site-nav a:hover {
  color: #52627d;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-nav a.is-active:hover {
  color: #fff;
  background: linear-gradient(135deg, #6f93ff 0%, #3e69f3 100%);
  box-shadow: 0 12px 24px rgba(55, 96, 235, 0.22);
}

.hero-benefit-tab:hover {
  color: #52627d;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.hero-benefit-tab.is-active:hover {
  color: #fff;
  background: linear-gradient(135deg, #6f93ff 0%, #3e69f3 100%);
  box-shadow: 0 12px 24px rgba(55, 96, 235, 0.22);
}

.header-actions .button:hover {
  transform: none;
}

.header-actions .button-header:hover {
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(17, 28, 51, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

/* Soft accent for the header request CTA: visible, but lighter than the hero primary. */
.header-actions .button-header {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--primary-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 255, 0.68)),
    rgba(255, 255, 255, 0.62);
  border-color: rgba(90, 130, 252, 0.34);
  box-shadow:
    0 0 0 4px rgba(90, 130, 252, 0.07),
    0 12px 26px rgba(45, 87, 221, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.header-actions .button-header::before {
  content: "";
  position: absolute;
  inset: -42% -62%;
  z-index: -1;
  pointer-events: none;
  background:
    conic-gradient(
      from 90deg,
      rgba(90, 130, 252, 0),
      rgba(90, 130, 252, 0.1),
      rgba(90, 130, 252, 0.42),
      rgba(255, 255, 255, 0.86),
      rgba(90, 130, 252, 0.34),
      rgba(90, 130, 252, 0)
    );
  border-radius: inherit;
  opacity: 0;
  animation: header-request-glow 6.8s ease-in-out infinite;
}

.header-actions .button-header::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.78)),
    rgba(255, 255, 255, 0.7);
}

.header-actions .button-header:hover,
.header-actions .button-header:focus-visible {
  color: var(--primary-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 255, 0.82)),
    rgba(255, 255, 255, 0.78);
  border-color: rgba(45, 87, 221, 0.46);
  box-shadow:
    0 0 0 5px rgba(90, 130, 252, 0.11),
    0 14px 30px rgba(45, 87, 221, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

@keyframes header-request-glow {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: rotate(0deg) scale(0.92);
  }

  66% {
    opacity: 0.95;
  }

  82% {
    opacity: 0.8;
    transform: rotate(1turn) scale(1.02);
  }

  90% {
    opacity: 0;
    transform: rotate(1turn) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-actions .button-header::before {
    animation: none;
  }
}

/* Compact home projects block: keep the section inside one desktop viewport. */
.home-section--popular {
  padding-top: clamp(24px, 3vh, 34px);
  padding-bottom: clamp(32px, 4vh, 48px);
}

.home-section--popular .container {
  display: grid;
  gap: clamp(20px, 2.5vw, 28px);
}

.home-section--popular .section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  align-items: end;
  gap: 18px clamp(26px, 4vw, 56px);
  margin-bottom: 0;
}

.home-section--popular .section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.home-section--popular .section-head h2 {
  max-width: 15.6ch;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  text-wrap: balance;
}

.home-section--popular .section-head__lead {
  max-width: 48ch;
  margin: 0;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.46;
}

.home-section--popular .project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.home-section--popular .project-card {
  border-radius: 26px;
}

.home-section--popular .project-card__visual {
  aspect-ratio: 1 / 0.74;
  margin: 16px 16px 0;
  width: calc(100% - 32px);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(145deg, rgba(214, 226, 255, 0.92), rgba(197, 215, 255, 0.72));
}

.home-section--popular .project-card__visual .card-badge {
  display: none;
}

.home-section--popular .project-card__image {
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.04);
}

.home-section--popular .project-card__image--custom {
  object-position: 50% 52%;
  transform: scale(1.04);
}

.home-section--popular .project-card__visual:hover .project-card__image,
.home-section--popular .project-card__visual:focus-visible .project-card__image {
  transform: scale(1.07);
}

.home-section--popular .project-card__visual:hover .project-card__image--custom,
.home-section--popular .project-card__visual:focus-visible .project-card__image--custom {
  transform: scale(1.07);
}

.home-section--popular .project-card__body {
  gap: 12px;
  padding: 18px 20px 20px;
}

.home-section--popular .project-card__top {
  gap: 8px;
}

.home-section--popular .project-card__body h3 {
  min-height: 2.12em;
  font-size: clamp(24px, 2vw, 28px);
}

.home-section--popular .project-card__body > p {
  min-height: 2.9em;
  line-height: 1.46;
}

.home-section--popular .spec-grid:not(.spec-grid--product) {
  gap: 8px;
}

.home-section--popular .spec-grid:not(.spec-grid--product) div {
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 15px;
}

.home-section--popular .price-line {
  gap: 2px;
}

.home-section--popular .price-line strong {
  font-size: clamp(28px, 2.6vw, 36px);
}

.home-section--popular .project-card .button {
  min-height: 44px;
}

@media (max-width: 1100px) {
  .home-section--popular .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-section--popular .section-head h2,
  .home-section--popular .section-head__lead {
    max-width: 100%;
  }

  .home-section--popular .project-grid {
    grid-template-columns: 1fr;
  }

  .home-section--popular .project-card__visual {
    aspect-ratio: 1 / 0.78;
  }
}

/* Footer */
.site-footer {
  display: block;
  padding: clamp(34px, 5vw, 72px) 0 28px;
}

.footer-shell {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(24px, 3.6vw, 40px) 0 0;
  border-top: 1px solid rgba(17, 28, 51, 0.12);
  background: transparent;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.footer-brand,
.footer-contact {
  display: grid;
  gap: 22px;
}

.footer-logo {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border-radius: 16px;
}

.footer-logo img {
  display: block;
  width: 104px;
  height: auto;
}

.footer-logo:focus-visible,
.footer-contact__link:focus-visible {
  outline: 3px solid rgba(90, 130, 252, 0.28);
  outline-offset: 4px;
}

.footer-company,
.footer-disclaimer,
.footer-address {
  margin: 0;
  color: rgba(79, 91, 116, 0.76);
  font-size: var(--type-sm);
  line-height: 1.62;
}

.footer-contact {
  justify-self: end;
  min-width: min(100%, 360px);
}

.footer-contact__item {
  display: grid;
  gap: 6px;
}

.footer-contact__label {
  color: rgba(79, 91, 116, 0.72);
  font-size: var(--type-sm);
  font-weight: var(--fw-bold);
}

.footer-contact__link {
  width: fit-content;
  color: var(--primary-strong);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: var(--fw-bold);
  letter-spacing: var(--track-title);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact__link:hover {
  color: #1e45c4;
  transform: translateY(-1px);
}

.footer-address {
  font-style: normal;
  color: var(--muted-strong);
}

.footer-disclaimer {
  padding-top: 22px;
  border-top: 1px solid rgba(17, 28, 51, 0.08);
  max-width: 980px;
}

@media (max-width: 820px) {
  .site-footer {
    padding-top: 30px;
  }

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

  .footer-contact {
    justify-self: start;
    min-width: 0;
  }
}

@media (max-width: 580px) {
  .footer-shell {
    padding-top: 22px;
  }

  .footer-brand,
  .footer-contact {
    gap: 18px;
  }
}

/* Adaptive readability pass: keep the 3D hero visible on tablet and reduce mobile vertical bulk. */
@media (min-width: 760px) and (max-width: 1100px) {
  .hero--landing {
    padding-top: clamp(16px, 2.2vh, 28px);
    padding-bottom: clamp(26px, 4vh, 48px);
  }

  .hero--landing .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
    gap: clamp(6px, 2vw, 22px);
    align-items: center;
    min-height: min(860px, calc(100svh - 82px));
    overflow: visible;
  }

  .hero--landing .hero-visual {
    order: 1;
    min-height: clamp(560px, 72svh, 760px);
    margin-right: clamp(-92px, -8vw, -54px);
  }

  .hero--landing .hero-copy {
    order: 2;
    width: min(100%, 450px);
    justify-self: end;
    gap: clamp(16px, 2vh, 24px);
    padding: 0;
    overflow: visible;
  }

  .hero--landing .hero-copy__main {
    gap: 14px;
  }

  .hero--landing .hero-copy h1 {
    max-width: 9.4ch;
    font-size: clamp(48px, 7.2vw, 64px);
    line-height: 0.96;
  }

  .hero--landing .hero-copy .lead {
    max-width: 32ch;
    font-size: clamp(17px, 2.1vw, 19px);
    line-height: 1.48;
  }

  .hero--landing .hero-actions .button {
    min-width: 0;
    width: min(100%, 280px);
    min-height: 54px;
  }

  .hero--landing .hero-benefit-tabs {
    width: min(100%, 430px);
    max-width: 430px;
    gap: 10px;
  }

  .hero-benefit-tabs__nav {
    --segmented-control-button-height: 44px;
    --segmented-control-padding: 5px;
  }

  .hero-benefit-panel {
    height: 196px;
    min-height: 196px;
    grid-template-rows: 58px 82px;
    padding: 22px;
  }

  .hero-benefit-panel h2 {
    min-height: 58px;
    max-height: 58px;
    font-size: clamp(24px, 3.5vw, 30px);
  }

  .hero-benefit-panel p {
    min-height: 82px;
    max-height: 82px;
    font-size: 15px;
    line-height: 1.46;
    -webkit-line-clamp: 4;
  }

  .model-scene--hero .model-scene__viewport {
    inset: -6% -46% -18% -26%;
    transform: translateX(10%) scale(1.02);
  }
}

@media (min-width: 700px) and (max-width: 1100px) {
  .home-section--popular .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-section--popular .project-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 759px) {
  .hero--landing .hero-grid {
    gap: 20px;
  }

  .hero--landing .hero-copy {
    gap: 18px;
  }

  .hero--landing .hero-copy__main {
    gap: 12px;
  }

  .hero--landing .hero-copy h1 {
    max-width: 9.4ch;
    letter-spacing: -0.035em;
  }

  .hero--landing .hero-copy .lead {
    color: #334059;
    line-height: 1.5;
  }

  .hero-benefit-tabs {
    gap: 10px;
    margin-top: 0;
  }

  .hero-benefit-tabs__nav {
    min-height: 52px;
    padding: 5px;
    border-radius: 999px;
  }

  .hero-benefit-tab {
    min-height: 42px;
    font-size: 12px;
  }

  .hero-benefit-panel {
    height: auto;
    min-height: 0;
    grid-template-rows: auto;
    gap: 10px;
    padding: 20px;
  }

  .hero-benefit-panel h2,
  .hero-benefit-panel p {
    min-height: 0;
    max-height: none;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .hero-benefit-panel h2 {
    max-width: 16ch;
    font-size: clamp(25px, 7vw, 30px);
  }

  .hero-benefit-panel p {
    font-size: 15px;
    line-height: 1.48;
  }

  .hero--landing .hero-visual {
    min-height: clamp(300px, 88vw, 420px);
    margin-top: -6px;
  }

  .model-scene--hero .model-scene__viewport {
    inset: -2% -30% -18% -30%;
    transform: translateX(3%) scale(1.04);
  }
}

@media (max-width: 420px) {
  .hero--landing .hero-copy h1 {
    font-size: clamp(38px, 11vw, 44px);
  }

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

  .hero-benefit-panel {
    padding: 18px;
  }

  .hero-benefit-panel h2 {
    font-size: clamp(24px, 6.8vw, 28px);
  }

  .hero--landing .hero-visual {
    min-height: clamp(292px, 84vw, 360px);
  }
}

@media (max-width: 700px) {
  .home-section--request .request-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .request-copy,
  .lead-form {
    width: 100%;
    min-width: 0;
  }

  .request-copy {
    gap: 20px;
  }

  .request-copy h2 {
    max-width: 9.6ch;
    font-size: clamp(42px, 12vw, 52px);
  }

  .request-highlight {
    margin-top: 0;
  }
}

/* Mobile hero order: offer first, centered 3D frame right after the copy. */
@media (max-width: 759px) {
  .hero--landing .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    overflow: visible;
  }

  .hero--landing .hero-copy {
    display: contents !important;
  }

  .hero--landing .hero-copy__main {
    order: 1;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .hero--landing .hero-visual {
    order: 2;
    align-self: center;
    width: 100vw;
    max-width: 100vw;
    min-height: clamp(315px, 82vw, 420px);
    margin: -10px calc(50% - 50vw) 0;
    overflow: visible;
  }

  .hero--landing .hero-actions {
    order: 3;
  }

  .hero--landing .hero-benefit-tabs {
    order: 4;
  }

  .model-scene--hero .model-scene__viewport {
    inset: -12% -10% -16% -10%;
    transform: translate(11%, -3%) scale(0.86);
    transform-origin: center center;
  }
}

@media (max-width: 420px) {
  .hero--landing .hero-visual {
    min-height: clamp(300px, 80vw, 360px);
  }

  .model-scene--hero .model-scene__viewport {
    inset: -12% -10% -16% -10%;
    transform: translate(12%, -3%) scale(0.82);
  }
}
