:root {
  color-scheme: light;
  --bg: #eef5f8;
  --bg-soft: #e5eef3;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-soft: rgba(18, 59, 87, 0.04);
  --surface-lifted: linear-gradient(155deg, rgba(240, 247, 251, 0.98), rgba(226, 238, 245, 0.98));
  --card-gradient: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 251, 0.98));
  --card-gradient-strong: linear-gradient(155deg, rgba(235, 244, 249, 1), rgba(220, 234, 242, 1));
  --text: #173042;
  --muted: #5f7686;
  --muted-strong: #365264;
  --line: rgba(23, 48, 66, 0.10);
  --line-strong: rgba(23, 48, 66, 0.16);
  --accent: #4fa8d8;
  --accent-strong: #2f8fc7;
  --accent-warm: #c99657;
  --success: #4f9b72;
  --danger: #d96d6d;
  --shadow-lg: 0 24px 70px rgba(18, 44, 61, 0.10);
  --shadow-md: 0 14px 32px rgba(18, 44, 61, 0.08);
  --shadow-sm: 0 8px 18px rgba(18, 44, 61, 0.06);
  --header-gradient:
    linear-gradient(
      100deg,
      #020608 0%,
      #020608 16%,
      #0b2334 42%,
      #eaf4f9 74%,
      #f8fcff 100%
    );
  --menu-button-bg: rgba(18, 59, 87, 0.04);
  --button-secondary-bg: linear-gradient(135deg, rgba(223, 238, 247, 0.88), rgba(208, 228, 240, 0.92));
  --button-secondary-text: #173042;
  --button-ghost-bg: linear-gradient(135deg, rgba(236, 244, 249, 0.92), rgba(222, 236, 244, 0.96));
  --button-ghost-text: #173042;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --space-1: 0.35rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --max: 1280px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07131b;
  --bg-soft: #0c1e2a;
  --surface: rgba(11, 24, 35, 0.92);
  --surface-strong: rgba(8, 18, 28, 0.98);
  --surface-soft: rgba(214, 235, 246, 0.06);
  --surface-lifted: linear-gradient(155deg, rgba(18, 59, 87, 0.96), rgba(21, 74, 108, 0.98));
  --card-gradient: linear-gradient(155deg, rgba(11, 30, 42, 0.95), rgba(17, 49, 69, 0.97));
  --card-gradient-strong: linear-gradient(155deg, rgba(18, 59, 87, 0.98), rgba(25, 87, 126, 0.99));
  --text: #eef7fb;
  --muted: #bfd1dc;
  --muted-strong: #dcecf5;
  --line: rgba(220, 228, 236, 0.10);
  --line-strong: rgba(220, 228, 236, 0.18);
  --accent: #69b9ec;
  --accent-strong: #9ddcff;
  --accent-warm: #d8a35d;
  --success: #8bd8af;
  --danger: #ff8d8d;
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 20px 48px rgba(0, 0, 0, 0.26);
  --shadow-sm: 0 14px 28px rgba(0, 0, 0, 0.18);
  --header-gradient:
    linear-gradient(
      100deg,
      #010508 0%,
      #010508 18%,
      #07131b 42%,
      #113d5b 72%,
      #1f587c 100%
    );
  --menu-button-bg: rgba(216, 234, 244, 0.07);
  --button-secondary-bg: linear-gradient(135deg, rgba(233, 245, 252, 0.18), rgba(186, 220, 238, 0.1));
  --button-secondary-text: #f4fbff;
  --button-ghost-bg: linear-gradient(135deg, rgba(213, 235, 248, 0.12), rgba(150, 196, 221, 0.05));
  --button-ghost-text: #f2f9fd;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  font-family: Aptos, "Segoe UI", sans-serif;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(79, 168, 216, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(201, 150, 87, 0.08), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 52%, #f4f8fb 100%);
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(105, 185, 236, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(240, 178, 103, 0.1), transparent 20%),
    linear-gradient(180deg, #08131b 0%, #0a1821 38%, #071118 100%);
}

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

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

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

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  position: sticky;
  top: 12px;
  margin-top: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 16px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background-color: rgba(2, 10, 15, 0.82);
  background:
    linear-gradient(100deg, rgba(1, 5, 8, 0.94) 0%, rgba(7, 27, 41, 0.88) 48%, rgba(19, 61, 91, 0.72) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  background-clip: padding-box;
  transition:
    padding 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

:root[data-theme="dark"] .topbar {
  background-color: rgba(1, 5, 8, 0.86);
}

.topbar.is-scrolled {
  padding-block: 10px;
  border-color: rgba(220, 228, 236, 0.16);
  background:
    linear-gradient(100deg, rgba(1, 5, 8, 0.94) 0%, rgba(6, 24, 36, 0.9) 52%, rgba(14, 49, 75, 0.78) 100%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

@media (min-width: 761px) {
  .site-shell {
    padding-top: 156px;
  }

  .topbar {
    position: fixed;
    top: 12px;
    left: 50%;
    width: min(calc(100% - 32px), var(--max));
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 130;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 104px;
  height: auto;
  transition: width 180ms ease;
}

.topbar.is-scrolled .brand img {
  width: 90px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--menu-button-bg);
  color: transparent;
  overflow: hidden;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translate(-50%, -50%);
  box-shadow:
    0 -6px 0 var(--text),
    0 6px 0 var(--text);
}

.topbar .menu-toggle::before {
  background: #f6fbfe;
  box-shadow:
    0 -6px 0 #f6fbfe,
    0 6px 0 #f6fbfe;
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.theme-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--menu-button-bg);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.topnav a {
  position: relative;
  padding: 8px 0;
  color: rgba(246, 251, 254, 0.78);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: transform 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.topnav a.is-active {
  color: #ffffff;
}

.topnav a:hover::after,
.topnav a:focus-visible::after,
.topnav a.is-active::after {
  transform: scaleX(1);
}

main {
  display: grid;
  gap: 0;
}

.hero-banner,
.page-hero,
.split-section,
.form-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-banner {
  position: relative;
  min-height: min(86vh, 820px);
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.hero-banner-image {
  width: 100%;
  height: 100%;
  min-height: min(86vh, 820px);
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04);
}

.hero-banner-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--space-4);
  padding: clamp(26px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(5, 17, 26, 0.88) 0%, rgba(6, 22, 34, 0.62) 34%, rgba(7, 24, 36, 0.18) 68%, rgba(7, 24, 36, 0.04) 100%),
    linear-gradient(180deg, rgba(5, 17, 26, 0.72) 0%, rgba(5, 17, 26, 0.2) 42%, rgba(5, 17, 26, 0.34) 100%);
}

:root[data-theme="light"] .hero-banner-copy {
  background:
    linear-gradient(90deg, rgba(7, 24, 36, 0.72) 0%, rgba(14, 42, 61, 0.46) 34%, rgba(14, 42, 61, 0.13) 68%, rgba(14, 42, 61, 0.03) 100%),
    linear-gradient(180deg, rgba(7, 24, 36, 0.36) 0%, rgba(14, 42, 61, 0.1) 42%, rgba(7, 24, 36, 0.24) 100%);
}

:root[data-theme="light"] .hero-banner-copy .eyebrow,
:root[data-theme="light"] .hero-banner-copy h1,
:root[data-theme="light"] .hero-banner-copy .hero-lead,
:root[data-theme="light"] .hero-banner-copy .hero-points li {
  color: #f7fbfd;
  text-shadow: 0 2px 16px rgba(7, 24, 36, 0.55);
}

:root[data-theme="light"] .hero-banner-copy .button-secondary {
  color: #173042;
}

.hero-banner-copy .eyebrow,
.hero-banner-copy h1,
.hero-banner-copy .hero-lead,
.hero-banner-copy .hero-actions,
.hero-banner-copy .hero-points {
  width: min(100%, 760px);
}

.hero-lead {
  max-width: 34rem;
}

.hero-banner-details {
  display: grid;
  gap: 18px;
  width: min(100%, 42rem);
  margin-top: auto;
  margin-left: 0;
  align-self: flex-start;
  padding: 0 0 clamp(8px, 1.8vw, 20px);
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-banner-copy h1 {
  width: min(100%, 1080px);
  max-width: 1080px;
  line-height: 0.95;
  margin-right: auto;
}

.hero-banner-copy .hero-actions {
  margin-top: 6px;
}

.hero-banner-copy .hero-points {
  display: none;
  max-width: 34rem;
  padding: 0;
  border-radius: var(--radius-md);
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

:root[data-theme="light"] .hero-banner-copy .hero-points {
  border-color: transparent;
  background: transparent;
}

.hero-banner-copy .hero-lead,
.hero-banner-copy .hero-points li {
  color: #f6fbfe;
  text-shadow: 0 2px 16px rgba(4, 16, 25, 0.68);
}

.page-hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 40px;
  padding: 52px 0 12px;
  align-items: center;
}

body[data-page="mallisto"] .page-hero {
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
  align-items: start;
}

body[data-page="mallisto"] .detail-hero {
  grid-template-columns: 1fr;
}

body[data-page="mallisto"] .page-hero-copy h1 {
  max-width: none;
  width: 100%;
}

.catalog-hero-image {
  min-height: 0;
  max-height: 440px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.catalog-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: start;
}

.catalog-intro-image {
  margin-top: 6px;
  width: 100%;
  min-height: 0;
  max-height: 360px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body[data-page="mallisto"] .catalog-note {
  max-width: none;
}

@media (max-width: 900px) {
  .catalog-intro-grid {
    grid-template-columns: 1fr;
  }

  .catalog-intro-image {
    margin-top: 0;
    max-height: 300px;
  }
}

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

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

.contact-hero-logo {
  justify-self: end;
  width: min(100%, 340px);
  margin: 0;
  opacity: 0.94;
}

.contact-hero-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(18, 44, 61, 0.12));
}

:root[data-theme="dark"] .contact-hero-logo img {
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.38));
}

.page-hero-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  align-self: center;
  max-width: 84ch;
  padding-right: min(1vw, 8px);
}

.page-hero-copy h1 {
  max-width: 26ch;
  line-height: 1.02;
  font-size: clamp(1.8rem, 3.15vw, 3.15rem);
}

.page-hero-copy .lead {
  max-width: 68ch;
}

.page-hero-image {
  width: 100%;
  min-height: 380px;
  object-fit: contain;
  object-position: center center;
  background: var(--surface-lifted);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  align-self: start;
}

.page-hero-image.is-plan {
  object-fit: contain;
  background: var(--surface-lifted);
  padding: 22px;
}

.section {
  padding: 88px 0 16px;
}

.section-heading,
.form-section-heading {
  display: grid;
  gap: 12px;
  max-width: 84ch;
  margin-bottom: 28px;
}

.section-heading.narrow {
  max-width: 74ch;
}

.section-heading h2,
.form-section-heading h2 {
  max-width: 26ch;
  text-wrap: balance;
}

.eyebrow,
.card-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1,
h2,
h3,
.metric-value {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

h1 {
  font-size: clamp(1.9rem, 3.45vw, 3.35rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.42rem, 2.1vw, 2rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.16;
}

p {
  margin: 0;
}

.lead,
.section-heading p,
.split-copy p,
.info-card p,
.story-card p,
.product-card p,
.catalog-card p,
.summary-card p,
.contact-role,
.footer-copy,
.footer-meta p,
.media-caption,
.price-note,
.field-hint,
.summary-note {
  color: var(--muted);
  line-height: 1.65;
  text-wrap: pretty;
}

.lead {
  font-size: 1.02rem;
  max-width: 62ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.04);
}

.button-primary {
  background: linear-gradient(135deg, #9ddcff, #5fb7ea 55%, #3499d3 100%);
  color: #072033;
  border-color: rgba(227, 246, 255, 0.58);
  box-shadow:
    0 18px 36px rgba(25, 119, 175, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button-secondary {
  background: var(--button-secondary-bg);
  border-color: rgba(224, 241, 250, 0.42);
  color: var(--button-secondary-text);
  box-shadow:
    0 12px 28px rgba(4, 18, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-ghost {
  background: var(--button-ghost-bg);
  border-color: rgba(215, 237, 248, 0.34);
  color: var(--button-ghost-text);
  box-shadow:
    0 10px 22px rgba(4, 18, 28, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 22px 42px rgba(25, 119, 175, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(232, 246, 253, 0.58);
  box-shadow:
    0 16px 32px rgba(4, 18, 28, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points,
.feature-list,
.summary-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.feature-list li,
.summary-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
  line-height: 1.55;
}

.hero-points li::before,
.feature-list li::before,
.summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
}

.story-grid,
.process-grid,
.product-grid,
.benefit-grid,
.benefit-list,
.catalog-grid,
.timeline,
.team-grid,
.contact-details-grid {
  display: grid;
  gap: 20px;
}

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

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

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

body[data-page="home"] .product-grid .mobile-featured-card {
  order: -1;
}

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

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

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

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

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

.story-card,
.product-card,
.info-card,
.catalog-card,
.summary-card,
.quote-form,
.team-card,
.cta-strip,
.timeline article,
.metrics,
.metrics article {
  border: 1px solid var(--line);
  background: var(--card-gradient);
  box-shadow: var(--shadow-md);
}

.story-card,
.product-card,
.info-card,
.summary-card,
.team-card,
.quote-form,
.catalog-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-card,
.product-card,
.catalog-card,
.info-card,
.summary-card,
.team-card {
  display: grid;
  gap: 18px;
  align-content: start;
  height: 100%;
}

.team-card {
  position: relative;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0) 18%),
    var(--card-gradient);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.story-card .feature-list,
.product-card .feature-list,
.catalog-card .feature-list,
.info-card .feature-list,
.summary-card .feature-list {
  margin-top: 2px;
}

.story-card h2,
.story-card h3,
.product-card h2,
.product-card h3,
.catalog-card h2,
.catalog-card h3,
.info-card h2,
.info-card h3,
.summary-card h2,
.summary-card h3,
.team-card h2,
.team-card h3 {
  max-width: 24ch;
  text-wrap: balance;
}

.team-card h2 {
  max-width: none;
  font-size: clamp(1.12rem, 1.35vw, 1.28rem);
  line-height: 1.12;
}

.story-card p,
.product-card p,
.catalog-card p,
.info-card p,
.summary-card p,
.team-card p {
  max-width: 58ch;
}

.team-card .feature-list {
  gap: 6px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.team-card .feature-list li {
  padding-left: 0;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.45;
}

.team-card .feature-list li::before {
  display: none;
}

.team-card .feature-list a {
  color: var(--text);
  font-weight: 650;
}

.team-card .feature-list a:hover,
.team-card .feature-list a:focus-visible {
  color: var(--accent-strong);
}

.company-summary {
  margin-top: 22px;
  max-width: 88ch;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  min-height: 0;
  align-content: start;
}

.product-card {
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.product-card-image {
  width: calc(100% + 56px);
  max-width: none;
  height: auto;
  min-height: 0;
  margin: -28px -28px 2px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center center;
  padding: 10px;
  background: var(--surface-lifted);
  border-bottom: 1px solid var(--line);
}

.product-card:hover,
.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157, 220, 255, 0.3);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.3);
}

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: rgba(157, 220, 255, 0.35);
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
  text-decoration-color: currentColor;
}

.product-featured {
  grid-column: span 2;
  background: var(--card-gradient-strong);
}

.product-card-header,
.catalog-heading,
.product-card-footer,
.catalog-meta {
  display: grid;
  gap: 10px;
}

.product-card-footer,
.catalog-meta,
.catalog-actions {
  align-content: start;
}

.product-card-footer {
  gap: 12px;
}

.product-kicker {
  margin: 0;
  color: var(--accent-warm);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.price {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.price-note {
  font-size: 0.92rem;
}

.model-price {
  display: grid;
  gap: 4px;
  max-width: 100%;
  margin-top: 2px;
  overflow-wrap: anywhere;
}

.model-price__amount {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 800;
  line-height: 1.15;
}

.is-price-blurred {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

.price-review-status {
  display: grid;
  gap: 3px;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(240, 247, 251, 0.42)),
    var(--surface-soft);
  color: var(--muted-strong);
  box-shadow: 0 8px 18px rgba(18, 44, 61, 0.04);
}

:root[data-theme="dark"] .price-review-status {
  background: rgba(214, 235, 246, 0.05);
}

.price-review-status__title {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.25;
}

.price-review-status__text {
  color: var(--muted-strong);
  font-size: 0.84rem;
  line-height: 1.38;
}

.price-review-status__link {
  width: max-content;
  max-width: 100%;
  margin-top: 2px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: rgba(79, 168, 216, 0.42);
  text-underline-offset: 4px;
}

.price-review-status__link:hover {
  color: var(--text);
  text-decoration-color: currentColor;
}

.price-review-status__link:focus-visible {
  outline: 3px solid rgba(79, 168, 216, 0.42);
  outline-offset: 4px;
  border-radius: 6px;
}

.model-price__label,
.model-price__tax,
.model-price__note,
.model-price-detail,
.catalog-price-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.model-price__label {
  color: var(--text);
  font-weight: 700;
}

.model-price__tax {
  font-size: 0.88rem;
}

.model-price__note {
  font-size: 0.9rem;
}

.product-price-actions {
  margin-top: 12px;
}

.model-price-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.model-price-list .model-price {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.model-price-list .model-price:first-child {
  padding-top: 0;
  border-top: 0;
}

.catalog-price-note {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.catalog-price-note p {
  margin: 0;
}

.catalog-price-note p + p {
  margin-top: 10px;
}

.home-visual-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  margin-top: 24px;
}

.home-visual-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-lifted);
  box-shadow: var(--shadow-sm);
}

.home-visual-strip img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 300px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center center;
  padding: 8px;
  background: var(--surface-lifted);
}

.mobile-catalog-cta {
  display: none;
}

.home-b2b-card {
  margin-top: 22px;
  max-width: none;
  height: auto;
}

.home-b2b-media {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 8px;
}

.home-b2b-logo {
  align-self: start;
  width: min(100%, 320px);
  padding: 12px;
}

.home-b2b-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-lifted);
  box-shadow: var(--shadow-sm);
}

.home-b2b-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  max-height: 240px;
  object-fit: cover;
  object-position: center center;
}

.home-b2b-card .button {
  justify-self: start;
  margin-top: 2px;
}

.split-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.split-copy,
.media-stack,
.info-stack,
.quote-summary {
  display: grid;
  gap: 20px;
}

.split-copy {
  max-width: 78ch;
}

.split-copy h2 {
  max-width: 26ch;
  text-wrap: balance;
}

.split-copy p,
.split-copy .feature-list {
  max-width: 64ch;
}

body[data-page="yritys"] .split-section {
  align-items: start;
}

body[data-page="yritys"] .info-stack,
body[data-page="yritys"] .split-copy {
  align-content: start;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
}

.media-card img {
  width: 100%;
  min-height: 280px;
  object-fit: contain;
  object-position: center center;
  background: var(--surface-lifted);
}

.mobile-feature-image {
  display: none;
  margin: 8px 0 4px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow-md);
}

.mobile-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center center;
  background: var(--surface-lifted);
}

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

.media-caption {
  padding: 16px 18px;
}

.catalog-card-product {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
}

.catalog-visual {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 0;
  aspect-ratio: 16 / 10;
  padding: 0;
  border-radius: var(--radius-md);
  background: var(--surface-lifted);
  border: 1px solid var(--line);
  overflow: hidden;
}

.catalog-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.catalog-image-link {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  height: 100%;
}

.catalog-card--plan .catalog-visual {
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.catalog-card--plan .catalog-image-link {
  align-items: center;
  justify-content: center;
}

.catalog-card--plan .catalog-visual img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
}

.catalog-heading a {
  transition: color 180ms ease;
}

.catalog-heading a:hover,
.catalog-heading a:focus-visible {
  color: var(--accent-strong);
}

.catalog-content {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.catalog-content > * {
  min-width: 0;
  max-width: 100%;
}

.catalog-card h2,
.catalog-card h3,
.catalog-card p,
.catalog-card li,
.catalog-card a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.catalog-card .feature-list {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  margin: 0;
}

.catalog-card .catalog-heading,
.catalog-card .catalog-meta,
.catalog-card .catalog-actions {
  width: 100%;
  max-width: 100%;
}

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

.catalog-actions .button {
  flex: 1 1 220px;
}

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

.category-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card-gradient);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157, 220, 255, 0.3);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.3);
}

.category-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-lifted);
  padding: 10px;
}

.category-card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 280px;
  padding: 28px;
  text-align: center;
  color: var(--muted-strong);
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at top right, rgba(157, 220, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(216, 163, 93, 0.12), transparent 24%);
}

.catalog-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 260px;
  padding: 24px;
  text-align: center;
  color: var(--muted-strong);
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at top right, rgba(157, 220, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(216, 163, 93, 0.1), transparent 24%);
}

.category-card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}

.category-card-copy {
  display: grid;
  gap: 14px;
  padding: 24px;
  align-content: start;
}

.category-card-copy h2 {
  max-width: 14ch;
  text-wrap: balance;
}

.category-card-copy p {
  max-width: 58ch;
}

.category-card .feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.catalog-note {
  max-width: 78ch;
}

.model-series {
  display: grid;
  gap: 12px;
}

.model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.model-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(221, 241, 252, 0.08);
  color: var(--muted-strong);
  font-weight: 700;
  line-height: 1.35;
}

.model-chip a {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.model-chip a:hover,
.model-chip a:focus-visible {
  color: var(--text);
}

:root[data-theme="light"] .model-chip {
  background: rgba(18, 59, 87, 0.05);
  color: var(--text);
}

.model-emphasis {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(105, 185, 236, 0.12), rgba(216, 163, 93, 0.08));
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.category-card--plan .category-card-media {
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.category-card--plan .category-card-media img {
  min-height: 0;
  max-height: 260px;
  object-fit: contain;
}

.section-compact {
  padding-top: 0;
}

.catalog-jump-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card-gradient);
  box-shadow: var(--shadow-sm);
}

.catalog-jump-copy {
  display: grid;
  gap: 10px;
}

.catalog-jump-copy h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  max-width: 18ch;
  text-wrap: balance;
}

.detail-intro h1 {
  max-width: 18ch;
  text-wrap: balance;
}

.detail-intro .lead {
  max-width: 62ch;
}

.catalog-jump-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.catalog-jump-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.catalog-jump-actions .button {
  min-width: 180px;
}

.catalog-jump-actions .button.is-current {
  border-color: rgba(157, 220, 255, 0.34);
  background: linear-gradient(135deg, rgba(105, 185, 236, 0.2), rgba(157, 220, 255, 0.1));
  color: var(--text);
}

.model-placeholder-media {
  display: grid;
  place-items: center;
  min-height: 210px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(157, 220, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(216, 163, 93, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(208, 232, 245, 0.08), rgba(188, 217, 233, 0.03)),
    linear-gradient(155deg, rgba(11, 30, 42, 0.5), rgba(17, 49, 69, 0.42));
  color: var(--muted-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

:root[data-theme="light"] .model-detail-visual .model-placeholder-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 249, 0.98)),
    linear-gradient(155deg, rgba(79, 168, 216, 0.06), rgba(201, 150, 87, 0.04));
}

.model-placeholder-media-large {
  min-height: 420px;
  font-size: 1rem;
}

:root[data-theme="light"] .model-placeholder-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 249, 0.98)),
    linear-gradient(155deg, rgba(79, 168, 216, 0.06), rgba(201, 150, 87, 0.04));
}

.story-card-image {
  width: 100%;
  min-height: 220px;
  object-fit: contain;
  object-position: center center;
  background: var(--surface-lifted);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.info-card-emphasis,
.summary-card-highlight,
.cta-strip {
  background: var(--surface-lifted);
}

.timeline article {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  align-content: start;
  height: 100%;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(105, 185, 236, 0.14);
  color: var(--accent-strong);
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-weight: 700;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.form-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 24px;
}

.form-section {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(204, 230, 243, 0.14);
  background: linear-gradient(180deg, rgba(204, 230, 243, 0.07), rgba(185, 214, 231, 0.03));
}

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

.form-grid-compact {
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid span {
  color: var(--text);
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(221, 241, 252, 0.08);
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

:root[data-theme="light"] .form-grid input,
:root[data-theme="light"] .form-grid select,
:root[data-theme="light"] .form-grid textarea,
:root[data-theme="light"] .checkbox-row {
  background: rgba(18, 59, 87, 0.04);
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(177, 200, 213, 0.78);
}

.form-grid select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background:
    linear-gradient(180deg, rgba(221, 241, 252, 0.08), rgba(221, 241, 252, 0.06)),
    linear-gradient(45deg, transparent 50%, var(--muted-strong) 50%),
    linear-gradient(135deg, var(--muted-strong) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 100% 100%, 6px 6px, 6px 6px;
  background-position: 0 0, calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  padding-right: 42px;
}

.form-grid select option {
  background: #d9eef9;
  color: #092130;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: rgba(157, 220, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(105, 185, 236, 0.12);
  background: rgba(221, 241, 252, 0.11);
}

.field-hint,
.field-error {
  font-size: 0.88rem;
}

.form-privacy-note {
  margin: -8px 0 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.55;
}

.form-privacy-note a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field-error {
  min-height: 1.2em;
  color: var(--danger);
}

.field-error:empty {
  display: none;
}

.form-status {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-weight: 600;
  line-height: 1.5;
}

.form-status.is-success {
  color: var(--text);
  border-color: rgba(139, 216, 175, 0.28);
  background: linear-gradient(180deg, rgba(139, 216, 175, 0.14), rgba(139, 216, 175, 0.06));
}

.form-status.is-error {
  color: var(--text);
  border-color: rgba(255, 141, 141, 0.28);
  background: linear-gradient(180deg, rgba(255, 141, 141, 0.14), rgba(255, 141, 141, 0.06));
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: rgba(255, 141, 141, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 141, 141, 0.08);
}

.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(221, 241, 252, 0.06);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.checkbox-row span {
  font-weight: 600;
}

.full-span {
  grid-column: 1 / -1;
}

.summary-card h2 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.summary-note {
  font-size: 0.94rem;
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 20px;
  border: 1px dashed rgba(208, 232, 245, 0.16);
  background: linear-gradient(180deg, rgba(208, 232, 245, 0.08), rgba(188, 217, 233, 0.04));
  color: var(--muted-strong);
  font-weight: 700;
}

.contact-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 300px;
  object-fit: cover;
  object-position: var(--portrait-position, center 16%);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.contact-portrait--teppo {
  --portrait-position: 50% 14%;
}

.contact-portrait--aleksi {
  --portrait-position: 50% 12%;
}

.contact-portrait--toni {
  --portrait-position: 50% 14%;
}

.contact-logo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3.6;
  min-height: 210px;
  max-height: 260px;
  padding: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(105, 185, 236, 0.14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(201, 150, 87, 0.12), transparent 28%),
    var(--surface-lifted);
  box-shadow: var(--shadow-sm);
}

.contact-logo-placeholder img {
  display: block;
  width: min(150px, 72%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(18, 44, 61, 0.12));
}

:root[data-theme="dark"] .contact-logo-placeholder img {
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.34));
}

.contact-role {
  max-width: 100%;
  margin-top: -2px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.contact-focus {
  display: grid;
  gap: 7px;
  margin: 2px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-focus li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.36;
}

.contact-focus li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-warm);
  transform: translateY(-50%);
}

:root[data-theme="light"] .team-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 251, 253, 0.62) 18%),
    var(--card-gradient);
}

.footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 1.18fr) auto auto;
  gap: 34px;
  align-items: center;
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
}

body[data-page="home"] .footer {
  margin-top: 28px;
}

body[data-page="home"] main > .section:last-of-type {
  padding-bottom: 0;
}

.footer > div:first-child {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  align-self: center;
}

.footer > div:first-child::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  grid-row: 1 / span 2;
  border-radius: 50%;
  background: url("assets/logo.png") center / contain no-repeat;
  box-shadow: var(--shadow-sm);
}

.footer-title {
  margin: 0 0 6px;
  color: var(--text);
  font-size: clamp(1.12rem, 1.35vw, 1.34rem);
  line-height: 1.12;
  font-weight: 800;
}

.footer-copy,
.footer-meta p {
  color: var(--muted-strong);
}

:root[data-theme="dark"] .footer-title,
:root[data-theme="dark"] .footer-copy,
:root[data-theme="dark"] .footer-meta p {
  color: #eef7fb;
}

:root[data-theme="dark"] .footer {
  background: rgba(6, 18, 27, 0.96);
  border-color: rgba(220, 228, 236, 0.16);
}

.card-logo-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.footer-nav,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-meta a {
  color: var(--muted-strong);
}

:root[data-theme="dark"] .footer-nav a,
:root[data-theme="dark"] .footer-meta a {
  color: #dcecf5;
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--muted-strong);
  border-radius: 50%;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.social-link svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.social-link--facebook svg {
  width: 24px;
  height: 24px;
  stroke: none;
  fill: currentColor;
}

.social-link:hover {
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 3px solid rgba(79, 168, 216, 0.42);
  outline-offset: 4px;
}

:root[data-theme="dark"] .social-link {
  color: #dcecf5;
}

:root[data-theme="dark"] .social-link:hover {
  color: var(--accent-strong);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.policy-content {
  display: grid;
  gap: 22px;
  max-width: 920px;
}

.policy-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(204, 230, 243, 0.07), rgba(185, 214, 231, 0.03));
}

.policy-card h2 {
  margin-bottom: 12px;
}

.policy-card p,
.policy-card li {
  color: var(--muted-strong);
}

.detail-hero {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
  padding-bottom: 0;
}

.detail-hero .page-hero-image {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center center;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
}

.detail-hero .page-hero-image:not([hidden]) {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--surface-lifted);
}

.detail-intro {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 820px;
}

.model-detail-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  width: 100%;
}

.model-detail-visual .model-placeholder-media {
  grid-column: 1 / -1;
}

.floor-plan-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-lifted);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  align-content: start;
}

.floor-plan-card[hidden] {
  display: none;
}

.floor-plan-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

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

.spec-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card-gradient);
  box-shadow: var(--shadow-md);
}

.spec-card .card-label {
  margin-bottom: 10px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.model-gallery-section {
  padding-top: 32px;
}

.model-gallery-section .section-heading {
  margin-bottom: 18px;
}

.detail-stack {
  display: grid;
  gap: 18px;
}

.product-info-card .feature-list {
  margin-top: 18px;
}

.technical-content-card {
  gap: 18px;
}

.technical-intro {
  max-width: 72ch;
}

.technical-standard-note {
  display: grid;
  gap: 8px;
  max-width: 82ch;
  padding: 18px;
  border: 1px solid rgba(31, 125, 187, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(31, 125, 187, 0.07);
}

.technical-standard-note h3,
.technical-standard-note p {
  margin: 0;
}

.technical-standard-note h3 {
  color: var(--text);
  font-size: 1rem;
}

.technical-standard-note p {
  color: var(--muted);
}

.technical-sections {
  display: grid;
  gap: 18px;
}

.technical-section {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.technical-section h3,
.technical-group h4 {
  margin: 0;
  color: var(--text);
}

.technical-section h3 {
  font-size: 1.05rem;
}

.technical-group h4 {
  font-size: 0.94rem;
}

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

.technical-group {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.technical-list {
  margin-top: 0;
}

.technical-list li {
  line-height: 1.45;
}

.furniture-supplier-card {
  gap: 14px;
}

.supplier-logo-link {
  display: inline-flex;
  width: min(100%, 280px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.supplier-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.b2b-section {
  align-items: start;
}

.b2b-section .split-copy > p:not(.eyebrow),
.b2b-section .info-card p {
  font-size: 1rem;
  line-height: 1.68;
}

.b2b-section .benefit-list h3,
.b2b-section .info-card h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.b2b-supplier-card .catalog-actions {
  margin-top: 4px;
}

.b2b-supplier-card .supplier-logo-link {
  width: min(100%, 340px);
  padding: 12px;
  margin-bottom: 2px;
}

.supplier-feature-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-lifted);
  box-shadow: var(--shadow-sm);
}

.supplier-feature-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center center;
}

.detail-price {
  font-size: clamp(2rem, 3vw, 3rem);
}

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

.detail-gallery .media-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center center;
  background: rgba(255, 255, 255, 0.03);
}

.detail-gallery .media-card.plan-card img,
.detail-gallery .media-card.plan-card-wide img {
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.detail-gallery .plan-card-wide {
  grid-column: 1 / -1;
}

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

html.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .page-hero,
  .split-section,
  .form-layout,
  .catalog-card-product,
  .detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .process-grid,
  .product-grid,
  .benefit-grid,
  .benefit-list,
  .category-grid,
  .catalog-jump-card,
  .catalog-grid,
  .timeline,
  .team-grid,
  .reference-grid,
  .contact-details-grid,
  .form-grid,
  .spec-grid,
  .detail-gallery,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-featured {
    grid-column: span 2;
  }

  .footer {
    align-items: start;
  }

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

  .product-grid,
  .story-grid,
  .process-grid,
  .benefit-grid,
  .benefit-list,
  .team-grid,
  .contact-details-grid,
  .timeline,
  .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technical-groups {
    grid-template-columns: 1fr;
  }

  .product-featured {
    grid-column: auto;
  }

  .contact-hero-logo {
    justify-self: start;
    width: min(280px, 64vw);
    margin-top: 4px;
  }
}

@media (max-width: 900px) {
  .page-hero,
  .split-section,
  .form-layout,
  .model-detail-visual,
  .story-grid,
  .process-grid,
  .product-grid,
  .benefit-grid,
  .benefit-list,
  .category-grid,
  .catalog-grid,
  .timeline,
  .team-grid,
  .reference-grid,
  .contact-details-grid,
  .form-grid,
  .spec-grid,
  .detail-gallery,
  .footer {
    grid-template-columns: 1fr !important;
  }

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

  .cta-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .cta-strip .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .catalog-actions .button,
  .product-card .button,
  .cta-strip .button {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .product-featured,
  .full-span {
    grid-column: auto;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer > div:first-child {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .footer > div:first-child::before {
    width: 54px;
    height: 54px;
  }

  .footer-nav,
  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-meta {
    gap: 6px;
  }

  .footer-social {
    padding-block: 2px;
  }

  .footer-meta p {
    max-width: 26ch;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .card-logo-mark {
    width: 56px;
    height: 56px;
  }
}

@media print {
  .is-price-blurred {
    display: none;
  }

  .price-review-status {
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
  }

  .price-review-status__text,
  .price-review-status__link {
    display: none;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .site-shell {
    width: min(calc(100% - 20px), var(--max));
    max-width: calc(100vw - 20px);
    overflow-x: clip;
    padding-top: 122px;
    padding-bottom: 96px;
  }

  .page-hero,
  .split-section,
  .form-layout,
  .story-grid,
  .process-grid,
  .product-grid,
  .benefit-grid,
  .benefit-list,
  .category-grid,
  .catalog-grid,
  .timeline,
  .team-grid,
  .contact-details-grid,
  .form-grid,
  .spec-grid,
  .detail-gallery {
    gap: 24px;
  }

  .topbar {
    position: fixed;
    top: 10px;
    left: 50%;
    width: min(calc(100% - 20px), var(--max));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
    row-gap: 10px;
    padding: 12px 14px;
    min-height: 0;
    z-index: 120;
    justify-content: stretch;
    align-items: center;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
  }

  .brand {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .brand img {
    width: 76px;
  }

  .topbar.is-scrolled .brand img {
    width: 66px;
  }

  .topbar.is-scrolled {
    padding: 9px 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-self: center;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
    color: transparent;
  }

  .topbar-actions {
    grid-column: 2;
    justify-self: end;
    gap: 8px;
  }

  .theme-toggle {
    top: auto;
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.92rem;
    max-width: calc(100vw - 28px);
    white-space: nowrap;
  }

  .topnav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
  }

  .topnav a {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: rgba(221, 241, 252, 0.08);
    color: rgba(246, 251, 254, 0.86);
  }

  .topnav.is-open {
    display: flex;
  }

  .page-hero,
  .split-section,
  .form-layout,
  .category-card,
  .catalog-jump-card,
  .story-grid,
  .process-grid,
  .product-grid,
  .benefit-grid,
  .benefit-list,
  .catalog-grid,
  .timeline,
  .team-grid,
  .reference-grid,
  .contact-details-grid,
  .form-grid,
  .spec-grid,
  .detail-gallery,
  .footer {
    grid-template-columns: 1fr;
  }

  .catalog-hero-image {
    display: none;
  }

  .catalog-card,
  .catalog-card-product {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    border-radius: 22px;
    background: var(--card-gradient);
    margin-bottom: 18px;
  }

  .catalog-visual {
    min-height: 0;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--surface-lifted);
    border-color: var(--line);
  }

  .catalog-visual img {
    display: block;
    width: 100%;
    max-height: none;
    height: auto;
    object-fit: contain;
    object-position: center center;
    border-radius: 14px;
  }

  .page-hero-copy h1,
  .section-heading h2,
  .form-section-heading h2,
  .category-card-copy h2,
  .catalog-jump-copy h2 {
    max-width: none;
  }

  .cta-strip {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .cta-strip h2 {
    max-width: 16ch;
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.05;
  }

  .cta-strip p {
    max-width: 26ch;
  }

  .cta-strip .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-strip .button {
    min-height: 52px;
    padding-inline: 18px;
    white-space: normal;
  }

  .category-card-media {
    min-height: 0;
    padding: 10px;
  }

  .category-card-placeholder {
    min-height: 180px;
    padding: 34px 22px;
    place-items: center;
    align-content: center;
    text-align: center;
  }

  .page-hero-image.is-plan,
  .catalog-card--plan .catalog-visual,
  .category-card--plan .category-card-media {
    padding: 14px;
  }

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

  .catalog-jump-actions {
    justify-content: stretch;
  }

  .catalog-jump-actions .button {
    width: 100%;
    min-width: 0;
  }

  .catalog-card p,
  .catalog-card li,
  .catalog-card .price-note {
    color: var(--muted-strong);
  }

  .catalog-card .price,
  .catalog-card h2,
  .catalog-card h3,
  .catalog-card .product-kicker,
  .catalog-card .catalog-heading a {
    color: var(--text);
  }

  .catalog-card .button {
    width: 100%;
    text-align: center;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-banner,
  .hero-banner-image {
    min-height: 72vh;
  }

  .hero-banner {
    display: grid;
    min-height: 0;
  }

  .hero-banner-image {
    min-height: 320px;
    height: 320px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    object-fit: contain;
    object-position: center center;
    background: var(--surface-lifted);
  }

  .hero-banner-copy {
    position: static;
    inset: auto;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 18px;
    background: var(--card-gradient);
  }

  .hero-banner-details {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-top: 0;
    align-self: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-banner-copy .hero-actions,
  .hero-banner-copy .hero-points,
  .hero-banner-copy .hero-lead {
    max-width: 100%;
  }

  .hero-banner-copy h1 {
    width: 100%;
    max-width: none;
    font-size: clamp(1.95rem, 8.3vw, 2.7rem);
    line-height: 1;
  }

  .hero-banner-copy .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .hero-banner-copy .hero-lead {
    font-size: 0.96rem;
    line-height: 1.52;
    max-width: 30ch;
  }

  .hero-banner-copy .hero-actions {
    gap: 10px;
  }

  .hero-banner-copy .button {
    min-height: 50px;
    width: 100%;
  }

  .hero-banner-copy .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-banner-copy .hero-points li {
    line-height: 1.45;
  }

  .hero-banner-copy .hero-points li:last-child {
    display: none;
  }

  .mobile-hidden {
    display: none !important;
  }

  .mobile-feature-image {
    display: block;
  }

  body[data-page="home"] .split-section .media-stack {
    display: none;
  }

  .page-hero {
    padding-top: 36px;
  }

  .page-hero-copy {
    gap: 14px;
  }

  .section-heading,
  .form-section-heading {
    margin-bottom: 24px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 10px;
  }

  body[data-page="home"] .section {
    padding-top: 52px;
  }

  body[data-page="home"] .section + .section {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.05rem, 8vw, 3rem);
  }

  .button {
    min-height: 44px;
    padding-inline: 18px;
    white-space: normal;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    min-height: 48px;
  }

  .product-featured,
  .full-span {
    grid-column: auto;
  }

  .home-visual-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .home-b2b-media {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-b2b-logo {
    width: min(100%, 300px);
  }

  .home-b2b-image img {
    height: auto;
    max-height: 260px;
    aspect-ratio: 4 / 3;
  }

  body[data-page="home"] .product-grid .product-card {
    display: none;
  }

  body[data-page="home"] .product-grid .mobile-featured-card,
  body[data-page="home"] .product-grid .mobile-secondary-card {
    display: grid;
  }

  body[data-page="home"] .product-grid .mobile-featured-card {
    order: 1;
  }

  body[data-page="home"] .product-grid .mobile-secondary-card {
    order: 2;
  }

  .mobile-catalog-cta {
    display: grid;
    margin-top: 18px;
  }

  .mobile-catalog-cta .button {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }

  .home-visual-strip img {
    max-height: 240px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center center;
  }

  .product-card-image,
  .category-card-media img,
  .page-hero-image,
  .catalog-visual img,
  .home-visual-strip img {
    object-fit: contain;
    object-position: center center;
  }

  .team-card {
    justify-items: center;
    text-align: center;
  }

  .team-card .feature-list,
  .contact-focus {
    width: 100%;
    text-align: left;
  }

  .contact-logo-placeholder,
  .contact-portrait {
    max-width: 320px;
    margin-inline: auto;
  }

  .contact-hero-logo {
    justify-self: center;
    width: min(220px, 58vw);
    margin-top: 0;
  }

  .cta-strip {
    align-items: flex-start;
    padding-bottom: 76px;
  }

  .footer {
    align-items: flex-start;
    gap: 20px;
    margin-top: 34px;
    padding: 22px;
  }

  .theme-toggle {
    min-height: 40px;
    padding: 0 12px;
    opacity: 0.86;
  }
}

@media (max-width: 760px) {
  .detail-hero {
    display: grid;
    gap: 22px;
  }

  .model-detail-visual {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
    width: 100%;
  }

  .detail-hero .page-hero-image,
  .floor-plan-card,
  .floor-plan-image,
  .detail-gallery,
  .detail-gallery .media-card,
  .detail-gallery .media-card img {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .detail-hero .page-hero-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center center;
    background: var(--surface-lifted);
  }

  .floor-plan-card {
    padding: 12px;
  }

  .floor-plan-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .detail-gallery .media-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center center;
    background: var(--surface-lifted);
  }
}
