:root {
  --page: #ffffff;
  --page-strong: #f7f7f7;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-dark: #1a1714;
  --section-break-surface: rgba(243, 245, 248, 0.88);
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.16);
  --ink: #111111;
  --ink-soft: #50555c;
  --ink-muted: #676d75;
  --accent: #ffde3b;
  --accent-strong: #ffd400;
  --accent-ink: #191300;
  --shadow: 0 24px 44px rgba(17, 17, 17, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --site-width: min(1400px, calc(100vw - 96px));
  --arrow-mark: url("./assets/brand/arrow.svg");
  --stroke-mark: url("./assets/brand/stroke.png");
  --stroke-mark-dark: url("./assets/brand/stroke-dark.png");
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Franklin", "Avenir Next", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--page);
}

button,
a {
  font: inherit;
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 21, 18, 0.92);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  width: var(--site-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  position: relative;
}

.topbar-brand-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-strip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: #fff8ee;
  cursor: pointer;
  text-align: left;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-strip-copy {
  min-width: 0;
}

.brand-strip-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-strip-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-strip-copy .eyebrow {
  margin-bottom: 6px;
  color: rgba(255, 248, 238, 0.72);
  white-space: nowrap;
}

body[data-theme="light"] .topbar .eyebrow::before,
.topbar .eyebrow::before {
  filter: none;
}

.brand-strip h1 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 0;
}

.topbar-button-menu,
.settings-button-menu {
  position: relative;
}

.topbar-button-accent-menu {
  display: inline-flex;
}

.topbar-brand-row .topbar-button-accent-inline {
  display: none;
}

.settings-button-label {
  display: none;
}

.mobile-nav-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
  display: none;
  place-items: center;
  flex: 0 0 auto;
  cursor: pointer;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.mobile-nav-toggle-box {
  width: 18px;
  height: 14px;
  position: relative;
  display: block;
}

.mobile-nav-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 140ms ease, opacity 140ms ease, top 140ms ease;
}

.mobile-nav-toggle-line:nth-child(1) {
  top: 0;
}

.mobile-nav-toggle-line:nth-child(2) {
  top: 6px;
}

.mobile-nav-toggle-line:nth-child(3) {
  top: 12px;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle-line:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.menu-shell {
  position: relative;
}

.menu-shell:not(.menu-shell-settings)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.topbar-button,
.settings-button,
.action-button,
.text-button,
.focus-close,
.browse-card-button,
.recommendation-option,
.recommendation-open,
.filter-chip,
.device-chip,
.theme-option {
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

.topbar-button,
.settings-button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff8ee;
  font-weight: 700;
  border: 0;
}

.topbar-button-menu,
.topbar-button-secondary {
  background: transparent;
}

.topbar-button-menu:hover,
.topbar-button-menu:focus-visible,
.topbar-button-secondary:hover,
.topbar-button-secondary:focus-visible {
  background: transparent;
  color: var(--accent);
}

.topbar-button-menu::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 140ms ease;
  flex: 0 0 auto;
}

.topbar-button-menu[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(-135deg);
}

.topbar-button:hover,
.topbar-button:focus-visible,
.settings-button:hover,
.settings-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.topbar-nav .topbar-button-menu:hover,
.topbar-nav .topbar-button-menu:focus-visible,
.topbar-nav .topbar-button-secondary:hover,
.topbar-nav .topbar-button-secondary:focus-visible {
  background: transparent;
  color: var(--accent);
}

.topbar-button-accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
}

.topbar-button-accent:hover,
.topbar-button-accent:focus-visible {
  background: var(--accent);
}

.topbar-button-secondary {
  background: transparent;
}

.settings-button {
  width: 48px;
  padding: 0;
  display: grid;
  place-items: center;
}

.settings-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  min-width: 300px;
  padding: 16px;
  border: 1px solid rgba(255, 248, 238, 0.08);
  border-radius: 24px;
  background: rgba(22, 19, 16, 0.98);
  color: #fff8ee;
  box-shadow: 0 24px 48px rgba(10, 8, 6, 0.3);
  z-index: 5;
}

.menu-shell:not(.menu-shell-settings) .menu-panel {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.menu-shell-settings .menu-panel {
  right: 0;
}

.menu-panel[hidden] {
  display: none !important;
}

.menu-panel-label {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 248, 238, 0.56);
}

.menu-product-list {
  display: grid;
  gap: 0;
}

.menu-panel .menu-product-button {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-top: 1px solid rgba(255, 248, 238, 0.08);
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.menu-panel .menu-product-list .menu-product-button:first-child {
  border-top: 0;
  padding-top: 2px;
}

.menu-panel .menu-product-button:hover,
.menu-panel .menu-product-button:focus-visible {
  color: var(--accent);
  transform: none;
  outline: none;
}

.menu-panel .menu-product-button.is-current {
  color: var(--accent);
}

.menu-panel .menu-product-button:hover strong,
.menu-panel .menu-product-button:focus-visible strong,
.menu-panel .menu-product-button.is-current strong,
.menu-panel .menu-product-button:hover .menu-format-icon,
.menu-panel .menu-product-button:focus-visible .menu-format-icon,
.menu-panel .menu-product-button.is-current .menu-format-icon {
  color: var(--accent);
}

.menu-panel .menu-product-heading,
.menu-panel .menu-product-copy {
  display: block;
}

.menu-panel .menu-product-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.menu-panel .menu-product-button strong {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff8ee;
}

.menu-panel .menu-product-copy {
  color: rgba(255, 248, 238, 0.62);
  font-size: 0.9rem;
  line-height: 1.4;
}

.menu-format-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  opacity: 0.98;
}

.menu-format-icon-video {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Crect x='1.5' y='3.25' width='7.75' height='7' rx='1.4' stroke='%23000' stroke-width='1.3'/%3E%3Cpath d='M9.85 5.3 12.25 4v6l-2.4-1.3V5.3Z' stroke='%23000' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Crect x='1.5' y='3.25' width='7.75' height='7' rx='1.4' stroke='%23000' stroke-width='1.3'/%3E%3Cpath d='M9.85 5.3 12.25 4v6l-2.4-1.3V5.3Z' stroke='%23000' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.menu-format-icon-display {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Crect x='1.5' y='2.25' width='11' height='8.5' rx='1.4' stroke='%23000' stroke-width='1.3'/%3E%3Cpath d='M3.2 8.7 5.45 6.5l1.55 1.5 1.85-2 1.95 2.7' stroke='%23000' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='4.35' cy='4.95' r='0.8' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Crect x='1.5' y='2.25' width='11' height='8.5' rx='1.4' stroke='%23000' stroke-width='1.3'/%3E%3Cpath d='M3.2 8.7 5.45 6.5l1.55 1.5 1.85-2 1.95 2.7' stroke='%23000' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='4.35' cy='4.95' r='0.8' fill='%23000'/%3E%3C/svg%3E");
}

.menu-panel-settings {
  min-width: 220px;
}

.theme-option-group {
  display: grid;
  gap: 8px;
}

.theme-option {
  min-height: 44px;
  padding: 0 14px;
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
}

.theme-option[aria-pressed="true"] {
  background: var(--surface-dark);
  color: #fff8ee;
}

.legacy-link {
  margin-top: 14px;
  display: inline-block;
  color: var(--ink-soft);
  text-decoration: none;
}

.legacy-link:hover,
.legacy-link:focus-visible {
  color: var(--ink);
  outline: none;
}

.menu-panel .theme-option {
  border-color: rgba(255, 248, 238, 0.12);
  background: rgba(255, 248, 238, 0.04);
  color: #fff8ee;
}

.menu-panel .theme-option[aria-pressed="true"] {
  background: #fff8ee;
  color: #191300;
}

.menu-panel .legacy-link {
  color: rgba(255, 248, 238, 0.62);
}

.menu-panel .legacy-link:hover,
.menu-panel .legacy-link:focus-visible {
  color: #fff8ee;
}

#share-button::after,
#onsite-link::after {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

#share-button::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Crect x='1.4' y='3.2' width='5.6' height='6' rx='1' stroke='%23000' stroke-width='1.1'/%3E%3Crect x='4.9' y='1.3' width='5.7' height='6' rx='1' stroke='%23000' stroke-width='1.1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Crect x='1.4' y='3.2' width='5.6' height='6' rx='1' stroke='%23000' stroke-width='1.1'/%3E%3Crect x='4.9' y='1.3' width='5.7' height='6' rx='1' stroke='%23000' stroke-width='1.1'/%3E%3C/svg%3E");
}

#onsite-link::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Crect x='2.2' y='4.2' width='7.6' height='7.6' rx='1.2' stroke='%23000' stroke-width='1.35'/%3E%3Cpath d='M7 2.4h4.6V7' stroke='%23000' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.9 7.1 11.4 2.6' stroke='%23000' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Crect x='2.2' y='4.2' width='7.6' height='7.6' rx='1.2' stroke='%23000' stroke-width='1.35'/%3E%3Cpath d='M7 2.4h4.6V7' stroke='%23000' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.9 7.1 11.4 2.6' stroke='%23000' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.page-shell {
  width: var(--site-width);
  margin: 0 auto;
  padding: 44px 0 72px;
}

.landing-home-view,
.browse-view,
.product-view {
  display: block;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: center;
}

@media (min-width: 861px) {
  :root {
    --desktop-page-shell-padding-top: clamp(18px, 2.4vh, 32px);
    --desktop-page-shell-padding-bottom: clamp(24px, 3vh, 40px);
    --desktop-topbar-height: 81px;
  }

  .page-shell {
    padding-top: var(--desktop-page-shell-padding-top);
    padding-bottom: var(--desktop-page-shell-padding-bottom);
  }

  .landing-home-view {
    min-height: calc(
      100dvh - var(--desktop-topbar-height) - var(--desktop-page-shell-padding-top) - var(--desktop-page-shell-padding-bottom)
    );
    display: grid;
    align-items: center;
  }

  .landing-hero {
    gap: clamp(20px, 2vw, 28px);
  }

  .landing-hero-copy {
    max-width: 390px;
  }

  .landing-hero-copy h2 {
    font-size: clamp(1.85rem, 2.7vw, 2.5rem);
  }

  .landing-hero-text {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .landing-hero-actions {
    margin-top: 22px;
    width: min(268px, 100%);
  }

  .landing-carousel-slide {
    gap: 14px;
  }

  .landing-carousel-image {
    max-height: min(50vh, 500px);
  }

  .landing-carousel-title {
    font-size: clamp(1.28rem, 1.8vw, 1.8rem);
  }

  .landing-carousel-tagline {
    font-size: 0.98rem;
    line-height: 1.5;
    max-width: 30ch;
  }

  .landing-carousel-controls {
    align-self: center;
  }

  .landing-preview-strip {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 18px;
  }

  .landing-carousel-dots {
    flex-direction: column;
    gap: 12px;
  }
}

.collection-card,
.browse-card,
.preview-card,
.details-rail,
.accordion-item,
.recommendation-controls,
.recommendation-results-pane,
.recommendation-card,
.focus-panel,
.recommendation-panel {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.landing-hero-copy {
  padding: 10px 8px 10px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  max-width: 410px;
  justify-self: center;
}

.section-label,
.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--ink-muted);
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  background: center / contain no-repeat var(--arrow-mark);
}

body[data-theme="light"] .section-label::before,
body[data-theme="light"] .eyebrow::before {
  filter: brightness(0) saturate(100%);
}

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

.landing-hero-copy h2,
.product-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.landing-hero-copy h2 {
  max-width: none;
  white-space: nowrap;
}

.product-intro h2 {
  max-width: 11ch;
}

.view-head h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: none;
}

.landing-hero-text,
.product-description,
.recommendation-card-description {
  margin: 18px 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.landing-hero-actions {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  width: min(280px, 100%);
}

.action-button {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.action-button-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.browse-card-button,
.recommendation-open {
  background: var(--surface-dark);
  color: #fff8ee;
}

.action-button-contrast {
  background: #15120f;
  color: #fff8ee;
}

.action-button-accent:hover,
.action-button-accent:focus-visible,
.action-button-contrast:hover,
.action-button-contrast:focus-visible,
.browse-card-button:hover,
.browse-card-button:focus-visible,
.recommendation-open:hover,
.recommendation-open:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.action-button-accent:hover,
.action-button-accent:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
}

.action-button-contrast:hover,
.action-button-contrast:focus-visible,
.browse-card-button:hover,
.browse-card-button:focus-visible,
.recommendation-open:hover,
.recommendation-open:focus-visible {
  background: #100e0c;
}

.action-button-secondary,
.device-chip,
.filter-chip,
.focus-close,
.text-button {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.action-button-secondary:hover,
.action-button-secondary:focus-visible,
.device-chip:hover,
.device-chip:focus-visible,
.filter-chip:hover,
.filter-chip:focus-visible,
.focus-close:hover,
.focus-close:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  outline: none;
}

.landing-preview-strip {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 20px;
  justify-items: stretch;
  padding-right: 34px;
}

.landing-carousel-stage {
  display: grid;
  min-width: 0;
}

.landing-carousel-slide {
  grid-area: 1 / 1;
  display: block;
  border: 0;
  background: transparent;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    visibility 520ms ease;
  visibility: hidden;
}

.landing-carousel-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.landing-carousel-slide:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.landing-carousel-media {
  position: relative;
  display: grid;
  place-items: center;
}

.landing-carousel-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 22px 36px rgba(17, 17, 17, 0.12));
}

.landing-carousel-copy {
  margin-top: clamp(14px, 2vw, 20px);
  display: grid;
  gap: 10px;
  justify-items: start;
  text-align: left;
  padding-left: clamp(4px, 0.8vw, 8px);
}

.landing-carousel-eyebrow {
  margin: 0;
}

.landing-carousel-eyebrow {
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.landing-carousel-title {
  margin: 0;
  font-size: clamp(1.42rem, 2.1vw, 2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.landing-carousel-tagline {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32ch;
}

.landing-carousel-controls {
  position: absolute;
  top: clamp(76px, 31%, 188px);
  right: 0;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  z-index: 2;
}

.landing-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.landing-carousel-dot {
  width: 11px;
  height: 11px;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    width 220ms ease,
    height 220ms ease;
}

.landing-carousel-dot-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--surface-dark);
  transform-origin: top center;
  transform: scaleY(0);
  will-change: transform;
  pointer-events: none;
}

.landing-carousel-dot:hover,
.landing-carousel-dot:focus-visible {
  transform: scale(1.08);
  background: rgba(17, 17, 17, 0.36);
  outline: none;
}

.landing-carousel-dot.is-active {
  width: 12px;
  height: 33px;
  background: rgba(17, 17, 17, 0.12);
}

.collection-card:hover,
.collection-card:focus-visible,
.browse-card:hover,
.browse-card:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.landing-preview-card {
  padding: 16px 16px 14px;
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.landing-preview-card:hover,
.landing-preview-card:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.collection-card-media,
.browse-card-media {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(27, 22, 16, 0.08);
}

button.browse-card-media {
  width: 100%;
  padding: 0;
  display: block;
  cursor: pointer;
  appearance: none;
}

button.browse-card-media:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.landing-preview-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--ink);
  width: 100%;
}

.landing-preview-card-note {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 22ch;
}

.landing-phone-shell {
  position: relative;
  width: min(100%, 232px);
  margin: 0 auto;
  padding: 9px 8px 9px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(180deg, #2f2f2f 0%, #181818 30%, #090909 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 3px rgba(0, 0, 0, 0.18);
}

.landing-phone-shell::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 35%;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12));
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
  z-index: 3;
}

.landing-phone-shell::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 2;
}

.landing-phone-screen {
  position: relative;
  aspect-ratio: 23 / 50;
  border-radius: 34px;
  overflow: hidden;
  background: #111111;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.landing-phone-reference {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.landing-phone-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.landing-phone-stage.is-cover-width {
  overflow: hidden;
}

.landing-phone-stage.is-align-top {
  align-items: start;
  justify-items: center;
}

.landing-phone-slot {
  position: absolute;
  top: var(--landing-slot-top);
  left: var(--landing-slot-left);
  width: var(--landing-slot-width);
  height: var(--landing-slot-height);
  border-radius: var(--landing-slot-radius);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.landing-phone-content {
  position: relative;
  transform-origin: top center;
  will-change: transform;
  z-index: 1;
}

.landing-phone-content .ad-tag-preview {
  width: 100%;
  height: 100%;
}

.landing-phone-content .ad-tag-preview__frame {
  border-radius: 0;
}

.collection-card-media img,
.browse-card-media img,
.recommendation-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-card-copy,
.browse-card-copy {
  padding-top: 18px;
}

.collection-card-copy h3,
.browse-card-copy h3,
.preview-card h3,
.recommendation-card h4 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.collection-card-copy p,
.browse-card-copy p,
.product-tagline,
.benchmark-note,
.recommendation-card-tagline {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.view-head {
  display: block;
}

.browse-filter-bar {
  margin: 22px 0 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip,
.device-chip,
.text-button {
  min-height: 46px;
  padding: 0 16px;
  font-weight: 700;
}

.filter-chip.is-active,
.device-chip.is-active {
  background: var(--surface-dark);
  color: #fff8ee;
  border-color: transparent;
}

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

.browse-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.browse-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.meta-row {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.browse-card-button {
  margin-top: 18px;
  align-self: flex-start;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #15120f;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.browse-card-button::after,
.recommendation-open::after {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateX(-3px) rotate(45deg);
  opacity: 0;
  transition:
    transform 140ms ease,
    opacity 140ms ease;
}

.browse-card-button:hover,
.browse-card-button:focus-visible,
.recommendation-open:hover,
.recommendation-open:focus-visible {
  background: transparent;
}

.browse-card-button:hover::after,
.browse-card-button:focus-visible::after,
.recommendation-open:hover::after,
.recommendation-open:focus-visible::after {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}

.browse-card:hover .browse-card-button::after,
.browse-card:focus-within .browse-card-button::after {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}

.product-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
}

.product-intro-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.product-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.product-title-row h2 {
  min-width: 0;
}

.product-copy-button {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  margin-left: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-soft);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px) scale(0.9);
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.product-intro-copy:hover .product-copy-button,
.product-intro-copy:focus-within .product-copy-button,
.product-copy-button.is-copied {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-copy-button:hover,
.product-copy-button:focus-visible {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  outline: none;
}

.product-copy-button.is-copied {
  background: #2f80ed;
  border-color: #2f80ed;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(47, 128, 237, 0.28);
  animation: product-copy-pop 220ms ease;
}

@keyframes product-copy-pop {
  0% {
    transform: translateY(0) scale(0.92);
  }

  55% {
    transform: translateY(-1px) scale(1.14);
  }

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

@media (hover: none) {
  .product-copy-button {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.product-main-grid {
  display: grid;
  grid-template-columns: minmax(250px, 296px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 36px;
}

.product-side-column {
  min-width: 0;
  display: grid;
  gap: 30px;
  align-content: start;
}

.product-view,
.product-intro,
.product-main-grid,
.product-main-grid > *,
.product-side-column,
.preview-card,
.details-rail,
.preview-card-head > *,
.preview-card-tools,
.preview-frame,
.preview-scale-stage,
.preview-scale-content,
.preview-footer,
.preview-footer-actions,
.device-bar {
  min-width: 0;
  max-width: 100%;
}

.preview-card,
.details-rail {
  border-radius: var(--radius-xl);
}

.preview-card {
  position: relative;
  padding: 56px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.preview-card-head,
.details-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-card-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 861px) {
  .product-view {
    --product-side-offset: 52px;
    --product-preview-offset: 28px;
    --product-preview-padding-top: 56px;
  }

  .product-main-grid {
    grid-template-columns: minmax(320px, 388px) minmax(0, 1fr);
    gap: clamp(44px, 4vw, 72px);
    padding-top: 18px;
    padding-bottom: 104px;
  }

  .product-view .product-side-column {
    padding-top: var(--product-side-offset);
  }

  .product-view .preview-card {
    margin-top: var(--product-preview-offset);
    padding-top: var(--product-preview-padding-top);
  }

  .product-view.is-xl-product {
    --product-side-offset: 52px;
    --product-preview-offset: 76px;
    --product-preview-padding-top: 0;
  }
}

.frame-size,
.preview-scale-note,
.preview-scale-caption,
.focus-scale-note {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.preview-scale-note,
.focus-scale-note {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.preview-frame {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.focus-frame {
  margin-top: 0;
  border-radius: 24px;
  border: 1px solid rgba(27, 22, 16, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(244, 238, 228, 0.9)),
    #f6f1e8;
  overflow: hidden;
}

.preview-scale-stage,
.preview-scale-content,
.preview-live,
.preview-frame,
.focus-frame,
.ad-tag-preview {
  min-width: 0;
}

.preview-scale-stage {
  width: 100%;
  padding: 0;
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 0;
  overflow: visible;
}

.preview-scale-content {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  max-width: 100%;
  overflow: visible;
}

.preview-live,
.preview-image,
.preview-fallback {
  width: 100%;
}

.preview-live {
  height: 100%;
  display: block;
  overflow: hidden;
}

.preview-image,
.preview-fallback {
  border-radius: 18px;
}

.preview-fallback {
  padding: 40px 24px;
  text-align: center;
  color: var(--ink-soft);
  border: 1px dashed rgba(27, 22, 16, 0.16);
  background: rgba(255, 255, 255, 0.62);
}

.ad-tag-preview,
.ad-tag-preview__frame {
  background: transparent;
}

.ad-tag-preview {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ad-tag-preview__frame {
  width: var(--tag-target-width, 100%);
  height: var(--tag-target-height, 100%);
  display: block;
  border: 0;
  transform: scale(var(--tag-scale, 1));
  transform-origin: top left;
}

.preview-footer {
  --preview-footer-width: 100%;
  --preview-device-track-width: 294px;
  position: relative;
  margin-top: 12px;
  width: min(100%, var(--preview-footer-width));
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  gap: 12px;
  margin-left: auto;
  margin-right: auto;
}

.preview-device-stack {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.preview-device-controls {
  width: calc(var(--preview-device-track-width) + 92px);
  display: grid;
  grid-template-columns: 38px minmax(0, var(--preview-device-track-width)) 38px;
  column-gap: 16px;
  align-items: center;
}

.preview-device-controls::before {
  content: "";
  width: 38px;
  height: 38px;
}

.device-frame-readout {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.device-bar {
  --device-count: 3;
  --active-index: 0;
  --device-track-width: 294px;
  --device-segment-width: calc(100% / var(--device-count));
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--device-count), minmax(0, 1fr));
  align-items: center;
  gap: 0;
  width: min(100%, var(--device-track-width));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  overflow: hidden;
  grid-column: 2;
}

.device-bar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--active-index) * var(--device-segment-width));
  width: var(--device-segment-width);
  border-radius: 0;
  background: var(--accent);
  transition:
    left 220ms ease,
    background-color 220ms ease;
}

.device-bar .device-chip {
  position: relative;
  z-index: 1;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.52);
  display: inline-grid;
  place-items: center;
  box-shadow: none;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.device-bar .device-chip:hover,
.device-bar .device-chip:focus-visible {
  color: rgba(17, 17, 17, 0.78);
  transform: none;
  outline: none;
}

.device-bar .device-chip.is-active,
.device-bar .device-chip.is-active:hover,
.device-bar .device-chip.is-active:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #17120c;
}

.device-bar.is-single {
  justify-self: center;
}

.device-chip-art {
  display: block;
  width: auto;
  height: 15px;
  max-width: 28px;
  object-fit: contain;
  opacity: 0.68;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.device-bar .device-chip:hover .device-chip-art,
.device-bar .device-chip:focus-visible .device-chip-art {
  opacity: 0.82;
}

.device-bar .device-chip.is-active .device-chip-art {
  opacity: 1;
  transform: none;
}

.device-chip[data-device-type="mobile"] .device-chip-art {
  height: 13px;
}

.device-chip[data-device-type="tablet"] .device-chip-art {
  height: 14px;
}

.device-chip[data-device-type="desktop"] .device-chip-art {
  height: 13px;
  max-width: 24px;
}

.details-rail {
  margin-top: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  align-content: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.details-block {
  position: relative;
  width: 100%;
  max-width: none;
}

.details-block + .details-block {
  padding-top: 18px;
}

.details-block + .details-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--line);
}

.details-block-link {
  padding-top: 18px;
}

.details-block-link .action-button {
  width: auto;
}

.preview-hidden-meta {
  display: none;
}

.preview-expand-button {
  position: relative;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(17, 17, 17, 0.06);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.preview-device-controls .preview-expand-button {
  grid-column: 3;
  margin: 0;
}

.preview-expand-button::before,
.preview-expand-button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
}

.preview-expand-button::before {
  top: 11px;
  right: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.preview-expand-button::after {
  bottom: 11px;
  left: 10px;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}

.preview-expand-button:hover,
.preview-expand-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.12);
  outline: none;
}

@media (hover: hover) and (pointer: fine) {
  .preview-card .preview-expand-button {
    opacity: 0;
    pointer-events: none;
  }

  .preview-card:hover .preview-expand-button,
  .preview-card:focus-within .preview-expand-button {
    opacity: 1;
    pointer-events: auto;
  }
}

.preview-scale-caption {
  margin: 0;
  text-align: center;
  color: var(--ink-muted);
}

.details-block-meta .meta-row {
  margin-top: 10px;
}

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

.benchmark-item {
  padding: 14px 12px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.benchmark-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benchmark-label-text {
  display: inline-block;
}

.benchmark-info-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.benchmark-info {
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  font-weight: 500;
  line-height: 1;
  cursor: help;
}

.benchmark-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: min(220px, 42vw);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(27, 22, 16, 0.12);
  background: rgba(255, 251, 245, 0.98);
  box-shadow: 0 18px 36px rgba(49, 39, 27, 0.12);
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  opacity: 0;
  transform: translate(-50%, 6px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 4;
}

.benchmark-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  background: inherit;
  border-right: 1px solid rgba(27, 22, 16, 0.12);
  border-bottom: 1px solid rgba(27, 22, 16, 0.12);
  transform: translate(-50%, -55%) rotate(45deg);
}

.benchmark-info-wrap:hover .benchmark-tooltip,
.benchmark-info-wrap:focus-within .benchmark-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.benchmark-value {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #191300;
}

.benchmark-stack {
  padding: 0 0 28px;
  display: grid;
  gap: 14px;
}

.benchmark-note {
  margin: 0;
  order: 2;
  font-weight: 400;
  color: var(--ink-soft);
}

.accordion-stack {
  margin-top: 20px;
  padding-top: 24px;
  position: relative;
  z-index: 0;
}

.accordion-stack::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -80px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--section-break-surface);
  pointer-events: none;
  z-index: -1;
}

.accordion-item {
  border-radius: 0;
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
}

.accordion-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  cursor: pointer;
  font-size: 1.46rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(27, 22, 16, 0.1);
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  flex: 0 0 auto;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item[open] .accordion-icon::after {
  opacity: 0;
}

.spec-grid-v2 {
  padding-left: 12px;
  padding-bottom: 28px;
}

.spec-row-v2 {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
}

.spec-row-v2:first-child {
  border-top: 1px solid var(--line-strong);
}

.spec-label-v2 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.45;
}

.spec-detail-list,
.note-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.65;
}

.spec-detail-sublist {
  margin-top: 8px;
  padding-left: 18px;
  color: var(--ink-soft);
}

.note-list {
  padding-bottom: 28px;
}

.note-list li + li {
  margin-top: 12px;
}

.focus-modal,
.recommendation-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.focus-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 13, 0.52);
  backdrop-filter: blur(8px);
}

.focus-panel,
.recommendation-panel {
  position: relative;
  width: min(1320px, calc(100vw - 32px));
  margin: 32px auto;
  padding: 24px;
  border-radius: 28px;
}

.focus-panel {
  display: flex;
  flex-direction: column;
}

.recommendation-panel {
  max-height: min(90vh, 920px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.focus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.focus-header-copy {
  min-width: 0;
}

.focus-title-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.focus-title-line strong {
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.focus-title-separator,
#focus-frame-size {
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.focus-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.recommendation-header {
  position: relative;
  padding-bottom: 10px;
  padding-right: 72px;
  border-bottom: 1px solid rgba(27, 22, 16, 0.08);
}

.recommendation-header-main {
  min-width: 0;
  padding-right: 72px;
}

#recommendation-close {
  position: absolute;
  top: 0;
  right: 0;
}

.recommendation-title {
  margin: 0;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.recommendation-intro {
  max-width: 42rem;
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.recommendation-summary {
  width: 100%;
  display: none;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(27, 22, 16, 0.1);
  background: rgba(255, 255, 255, 0.52);
}

.recommendation-summary-copy {
  display: grid;
  gap: 6px;
}

.recommendation-summary-line {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink);
}

.recommendation-summary-label {
  font-weight: 600;
}

.recommendation-summary-value {
  font-weight: 400;
  color: var(--ink-soft);
}

.recommendation-edit {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 0;
  background: #171310;
  color: #fff8ee;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease;
}

.recommendation-edit:hover,
.recommendation-edit:focus-visible {
  background: #100e0c;
  transform: translateY(-1px);
  outline: none;
}

.focus-close {
  position: relative;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: transparent;
  display: inline-grid;
  place-items: center;
}

.focus-close::before {
  content: "\00d7";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  transform: none;
}

.preview-scale-stage-focus {
  padding: 20px 18px;
  min-height: 0;
  align-items: center;
}

.preview-scale-content-focus {
  width: 100%;
  align-items: center;
  justify-items: center;
}

.focus-frame {
  flex: 1 1 auto;
  display: grid;
  align-items: center;
  margin-top: 14px;
}

@media (min-width: 861px) {
  .focus-modal {
    display: grid;
    place-items: center;
    padding: 32px 16px;
  }

  .focus-panel {
    z-index: 1;
    margin: 0;
    max-height: calc(100dvh - 64px);
  }

  .focus-frame {
    min-height: min(76vh, 820px);
  }
}

.recommendation-layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(420px, 448px) minmax(0, 1fr);
  gap: 18px;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.recommendation-controls,
.recommendation-results-pane {
  padding: 22px;
  border-radius: 24px;
  display: grid;
  align-content: start;
  min-height: 0;
  height: 100%;
  overflow: auto;
}

.recommendation-controls {
  width: 100%;
  max-width: 448px;
  justify-self: start;
}

.recommendation-questions {
  margin-top: 0;
  display: grid;
  gap: 18px;
}

.recommendation-question h4 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.recommendation-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recommendation-option {
  min-height: 44px;
  padding: 0 12px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-weight: 400;
  font-size: 0.98rem;
  max-width: 100%;
  white-space: normal;
  text-align: left;
}

.recommendation-option.is-active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.recommendation-actions {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(27, 22, 16, 0.08);
}

.recommendation-reset-button {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(27, 22, 16, 0.12);
  border-radius: 999px;
  background: rgba(27, 22, 16, 0.03);
  color: rgba(27, 22, 16, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  box-shadow: none;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease;
}

.recommendation-reset-button::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.6 5.1h8.8' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M5.1 5.1V4.2c0-.7.6-1.3 1.3-1.3h3.2c.7 0 1.3.6 1.3 1.3v.9' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M6 7.1v4.1' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M10 7.1v4.1' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M4.7 5.1l.4 6.2c.1 1 .9 1.8 1.9 1.8h1.9c1 0 1.8-.8 1.9-1.8l.4-6.2' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.6 5.1h8.8' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M5.1 5.1V4.2c0-.7.6-1.3 1.3-1.3h3.2c.7 0 1.3.6 1.3 1.3v.9' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M6 7.1v4.1' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M10 7.1v4.1' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M4.7 5.1l.4 6.2c.1 1 .9 1.8 1.9 1.8h1.9c1 0 1.8-.8 1.9-1.8l.4-6.2' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.recommendation-reset-button:hover,
.recommendation-reset-button:focus-visible {
  color: var(--ink);
  border-color: rgba(27, 22, 16, 0.22);
  background: rgba(27, 22, 16, 0.06);
  transform: translateY(-1px);
  outline: none;
}

.recommendation-reset-button:disabled {
  color: rgba(27, 22, 16, 0.34);
  border-color: rgba(27, 22, 16, 0.08);
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.recommendation-reset-button:disabled:hover,
.recommendation-reset-button:disabled:focus-visible {
  color: rgba(27, 22, 16, 0.34);
  border-color: rgba(27, 22, 16, 0.08);
  background: transparent;
  transform: none;
}

.recommendation-results {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.recommendation-results-pane .details-block-head {
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
}

.recommendation-card,
.recommendation-empty {
  padding: 16px;
  border-radius: 22px;
}

.recommendation-card {
  display: grid;
  gap: 12px;
  align-items: stretch;
  position: relative;
}

.recommendation-card.has-mock {
  grid-template-columns: 1fr;
  padding-right: calc(clamp(220px, 28vw, 340px) + 34px);
}

.recommendation-card-layout-standard {
  padding-right: calc(clamp(176px, 17vw, 232px) + 34px);
}

.recommendation-card-layout-standard-square {
  padding-right: calc(clamp(156px, 15vw, 196px) + 34px);
}

.recommendation-card-layout-xl {
  padding-right: calc(clamp(220px, 28vw, 340px) + 34px);
}

.recommendation-card-layout-vertical-xl {
  min-height: 420px;
  padding-right: calc(clamp(180px, 14vw, 220px) + 42px);
}

.recommendation-card-copy {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
}

.recommendation-card-layout-xl .recommendation-card-copy,
.recommendation-card-layout-vertical-xl .recommendation-card-copy {
  gap: 6px;
}

.recommendation-card-media {
  min-width: 0;
  width: clamp(220px, 28vw, 340px);
  display: grid;
  place-items: center;
  align-self: auto;
  justify-self: auto;
  overflow: hidden;
  background: transparent;
  position: absolute;
  top: 50%;
  right: 18px;
  height: calc(100% - 48px);
  box-sizing: border-box;
  transform: translateY(-50%);
}

.recommendation-card-media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
}

.recommendation-card-media-standard,
.recommendation-card-media-standard-square {
  display: grid;
  place-items: center;
  width: clamp(176px, 17vw, 232px);
  height: calc(100% - 24px);
  min-height: 0;
  padding: 10px;
}

.recommendation-card-media-standard-square {
  width: clamp(156px, 15vw, 196px);
}

.recommendation-card-media-standard img,
.recommendation-card-media-standard-square img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.recommendation-card-media-xl {
  height: auto;
  padding: 0;
}

.recommendation-card-media-xl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.recommendation-card-media-vertical-xl {
  width: clamp(180px, 14vw, 220px);
  height: calc(100% - 24px);
  padding: 0;
}

.recommendation-card-media-vertical-xl img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.recommendation-card-tagline {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: #15120f;
}

.recommendation-card-description {
  margin: 0;
  max-width: 36ch;
  line-height: 1.5;
  color: rgba(27, 22, 16, 0.72);
}

.recommendation-count {
  margin: 0 0 0 auto;
  flex: 0 0 auto;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}

.recommendation-open {
  justify-self: start;
  margin-top: 8px;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #15120f;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.1;
}

.recommendation-empty {
  border: 1px solid rgba(27, 22, 16, 0.1);
  background: rgba(255, 251, 245, 0.72);
  color: rgba(27, 22, 16, 0.78);
  line-height: 1.65;
}

body.focus-open {
  overflow: hidden;
}

body[data-theme="dark"] {
  --page: #0f0d0b;
  --page-strong: #15120f;
  --surface: rgba(28, 24, 20, 0.82);
  --surface-strong: rgba(22, 19, 16, 0.92);
  --surface-dark: #fff5de;
  --section-break-surface: rgba(34, 30, 27, 0.96);
  --line: rgba(255, 248, 238, 0.1);
  --line-strong: rgba(255, 248, 238, 0.18);
  --ink: #fff8ee;
  --ink-soft: rgba(255, 248, 238, 0.76);
  --ink-muted: rgba(255, 248, 238, 0.58);
  --accent-ink: #191300;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

body[data-theme="dark"] {
  background:
    radial-gradient(circle at top left, rgba(255, 222, 59, 0.12), transparent 26%),
    linear-gradient(180deg, #120f0d 0%, #0f0d0b 60%, #17120f 100%);
}

body[data-theme="dark"] .topbar {
  background: rgba(10, 9, 8, 0.92);
}

body[data-theme="dark"] .menu-panel {
  background: rgba(22, 19, 16, 0.98);
  border-color: rgba(255, 248, 238, 0.12);
  color: var(--ink);
}

body[data-theme="dark"] .menu-panel-label,
body[data-theme="dark"] .legacy-link,
body[data-theme="dark"] .menu-product-copy {
  color: var(--ink-soft);
}

body[data-theme="dark"] .menu-product-button strong {
  color: #fff8ee;
}

body[data-theme="dark"] .menu-panel .theme-option {
  border-color: rgba(255, 248, 238, 0.12);
  background: rgba(255, 248, 238, 0.04);
  color: #fff8ee;
}

body[data-theme="dark"] .menu-panel .theme-option[aria-pressed="true"] {
  background: var(--accent);
  color: var(--accent-ink);
}

body[data-theme="dark"] .brand-strip,
body[data-theme="dark"] .topbar-button,
body[data-theme="dark"] .settings-button {
  color: #fff8ee;
}

body[data-theme="dark"] .topbar-button,
body[data-theme="dark"] .settings-button {
  background: rgba(255, 248, 238, 0.06);
}

body[data-theme="dark"] .topbar-button-secondary,
body[data-theme="dark"] .topbar-button:hover,
body[data-theme="dark"] .topbar-button:focus-visible,
body[data-theme="dark"] .settings-button:hover,
body[data-theme="dark"] .settings-button:focus-visible {
  background: rgba(255, 248, 238, 0.12);
}

body[data-theme="dark"] .topbar-button-menu:hover,
body[data-theme="dark"] .topbar-button-menu:focus-visible,
body[data-theme="dark"] .topbar-button-secondary:hover,
body[data-theme="dark"] .topbar-button-secondary:focus-visible {
  background: transparent;
  color: var(--accent);
}

body[data-theme="dark"] .topbar-button-accent,
body[data-theme="dark"] .theme-option[aria-pressed="true"] {
  background: var(--accent);
  color: var(--accent-ink);
}

body[data-theme="dark"] .topbar-button-accent:hover,
body[data-theme="dark"] .topbar-button-accent:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
}

body[data-theme="dark"] .topbar-nav .topbar-button-menu,
body[data-theme="dark"] .topbar-nav .topbar-button-secondary,
body[data-theme="dark"] .topbar-nav .settings-button {
  background: transparent;
  box-shadow: none;
}

body[data-theme="dark"] .topbar-nav .topbar-button-menu:hover,
body[data-theme="dark"] .topbar-nav .topbar-button-menu:focus-visible,
body[data-theme="dark"] .topbar-nav .topbar-button-secondary:hover,
body[data-theme="dark"] .topbar-nav .topbar-button-secondary:focus-visible,
body[data-theme="dark"] .topbar-nav .settings-button:hover,
body[data-theme="dark"] .topbar-nav .settings-button:focus-visible {
  background: transparent;
}

body[data-theme="dark"] .action-button-contrast {
  background: rgba(255, 248, 238, 0.14);
  color: #fff8ee;
  border: 1px solid rgba(255, 248, 238, 0.16);
}

body[data-theme="dark"] .action-button-contrast:hover,
body[data-theme="dark"] .action-button-contrast:focus-visible {
  background: rgba(255, 248, 238, 0.2);
  color: #fff8ee;
}

body[data-theme="dark"] .preview-frame,
body[data-theme="dark"] .focus-frame,
body[data-theme="dark"] .collection-card-media,
body[data-theme="dark"] .browse-card-media,
body[data-theme="dark"] .recommendation-card-media,
body[data-theme="dark"] .recommendation-card-media-standard,
body[data-theme="dark"] .recommendation-card-media-standard-square,
body[data-theme="dark"] .recommendation-card-media-xl,
body[data-theme="dark"] .recommendation-card-media-vertical-xl,
body[data-theme="dark"] .preview-fallback {
  background:
    linear-gradient(180deg, rgba(255, 222, 59, 0.08), rgba(255, 255, 255, 0.02)),
    #181411;
}

body[data-theme="dark"] .preview-frame {
  background: transparent;
}

body[data-theme="dark"] .recommendation-card-media,
body[data-theme="dark"] .recommendation-card-media-standard,
body[data-theme="dark"] .recommendation-card-media-standard-square,
body[data-theme="dark"] .recommendation-card-media-xl,
body[data-theme="dark"] .recommendation-card-media-vertical-xl {
  background: transparent;
}

body[data-theme="dark"] .preview-expand-button {
  background: rgba(255, 248, 238, 0.04);
  border-color: rgba(255, 248, 238, 0.12);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .preview-expand-button:hover,
body[data-theme="dark"] .preview-expand-button:focus-visible {
  background: rgba(255, 248, 238, 0.1);
  border-color: rgba(255, 248, 238, 0.2);
}

body[data-theme="dark"] .device-frame-readout {
  color: #fff8ee;
}

body[data-theme="dark"] .device-bar {
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(255, 255, 255, 0.96);
}

body[data-theme="dark"] .device-bar .device-chip {
  color: rgba(17, 17, 17, 0.52);
}

body[data-theme="dark"] .device-bar .device-chip:hover,
body[data-theme="dark"] .device-bar .device-chip:focus-visible {
  color: rgba(17, 17, 17, 0.78);
}

body[data-theme="dark"] .device-bar .device-chip.is-active,
body[data-theme="dark"] .device-bar .device-chip.is-active:hover,
body[data-theme="dark"] .device-bar .device-chip.is-active:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #17120c;
}

body[data-theme="dark"] .preview-scale-caption {
  color: #fff8ee;
}

body[data-theme="dark"] .recommendation-empty {
  border-color: rgba(255, 248, 238, 0.12);
  background: rgba(255, 248, 238, 0.08);
  color: rgba(255, 248, 238, 0.84);
}

body[data-theme="dark"] .landing-carousel-stage {
  background: transparent;
  box-shadow: none;
}

body[data-theme="dark"] .landing-carousel-dot {
  background: rgba(255, 248, 238, 0.22);
}

body[data-theme="dark"] .landing-carousel-dot:hover,
body[data-theme="dark"] .landing-carousel-dot:focus-visible {
  background: rgba(255, 248, 238, 0.42);
}

body[data-theme="dark"] .landing-carousel-dot.is-active {
  background: rgba(255, 248, 238, 0.14);
}

body[data-theme="dark"] .landing-carousel-dot-fill {
  background: #fff8ee;
}

body[data-theme="dark"] .product-copy-button {
  background: rgba(255, 248, 238, 0.04);
  border-color: rgba(255, 248, 238, 0.14);
  color: rgba(255, 248, 238, 0.72);
}

body[data-theme="dark"] .product-copy-button:hover,
body[data-theme="dark"] .product-copy-button:focus-visible {
  background: rgba(255, 248, 238, 0.1);
  border-color: rgba(255, 248, 238, 0.22);
  color: #fff8ee;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

body[data-theme="dark"] .product-copy-button.is-copied {
  background: #2f80ed;
  border-color: #2f80ed;
  color: #ffffff;
}

body[data-theme="dark"] .benchmark-info {
  border-color: rgba(255, 248, 238, 0.18);
  color: #fff8ee;
}

body[data-theme="dark"] .benchmark-label {
  color: #fff8ee;
}

body[data-theme="dark"] .benchmark-item {
  background: transparent;
  box-shadow: none;
}

body[data-theme="dark"] .benchmark-tooltip {
  border-color: rgba(255, 248, 238, 0.12);
  background: rgba(20, 17, 14, 0.98);
  color: var(--ink);
}

body[data-theme="dark"] .benchmark-tooltip::after {
  border-right-color: rgba(255, 248, 238, 0.12);
  border-bottom-color: rgba(255, 248, 238, 0.12);
}

body[data-theme="dark"] .benchmark-value {
  color: var(--accent);
  background: var(--accent);
  color: #191300;
}

body[data-theme="dark"] .benchmark-note {
  color: rgba(255, 248, 238, 0.68);
}

body[data-theme="dark"] .action-button-secondary,
body[data-theme="dark"] .device-chip,
body[data-theme="dark"] .filter-chip,
body[data-theme="dark"] .focus-close,
body[data-theme="dark"] .text-button,
body[data-theme="dark"] .theme-option,
body[data-theme="dark"] .recommendation-option {
  background: rgba(255, 248, 238, 0.04);
  color: var(--ink);
  border-color: rgba(255, 248, 238, 0.12);
}

body[data-theme="dark"] .filter-chip.is-active,
body[data-theme="dark"] .device-chip.is-active,
body[data-theme="dark"] .browse-card-button,
body[data-theme="dark"] .recommendation-open {
  background: var(--surface-dark);
  color: #191300;
}

body[data-theme="dark"] .focus-close::before {
  color: #fff8ee;
}

body[data-theme="dark"] .filter-chip.is-active,
body[data-theme="dark"] .filter-chip.is-active:hover,
body[data-theme="dark"] .filter-chip.is-active:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
}

body[data-theme="dark"] .browse-card-button,
body[data-theme="dark"] .recommendation-open {
  background: transparent;
  color: var(--accent);
}

body[data-theme="dark"] .browse-card-button:hover,
body[data-theme="dark"] .browse-card-button:focus-visible,
body[data-theme="dark"] .recommendation-open:hover,
body[data-theme="dark"] .recommendation-open:focus-visible {
  background: transparent;
  color: var(--accent);
}

body[data-theme="dark"] .action-button-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

body[data-theme="dark"] .recommendation-option.is-active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

body[data-theme="dark"] .recommendation-actions {
  border-top-color: rgba(255, 248, 238, 0.08);
}

body[data-theme="dark"] .recommendation-summary {
  border-color: rgba(255, 248, 238, 0.1);
  background: rgba(255, 248, 238, 0.04);
}

body[data-theme="dark"] .recommendation-edit {
  background: var(--surface-dark);
  color: #191300;
}

body[data-theme="dark"] .recommendation-edit:hover,
body[data-theme="dark"] .recommendation-edit:focus-visible {
  background: var(--accent);
}

body[data-theme="dark"] .recommendation-reset-button {
  color: rgba(255, 248, 238, 0.8);
  border-color: rgba(255, 248, 238, 0.14);
  background: rgba(255, 248, 238, 0.05);
  box-shadow: none;
}

body[data-theme="dark"] .recommendation-reset-button:hover,
body[data-theme="dark"] .recommendation-reset-button:focus-visible {
  color: var(--accent);
  border-color: rgba(255, 222, 59, 0.38);
  background: rgba(255, 222, 59, 0.08);
}

body[data-theme="dark"] .recommendation-reset-button:disabled {
  color: rgba(255, 248, 238, 0.34);
  border-color: rgba(255, 248, 238, 0.08);
  background: transparent;
  box-shadow: none;
}

body[data-theme="dark"] .meta-pill {
  background: transparent;
  color: #fff8ee;
  border-color: var(--accent);
}

body[data-theme="dark"] .recommendation-card-tagline {
  color: #fff8ee;
}

body[data-theme="dark"] .recommendation-card-description {
  color: rgba(255, 248, 238, 0.68);
}

@media (max-width: 1189px) {
  :root {
    --site-width: min(100vw - 72px, 1400px);
  }

  .topbar-inner {
    gap: 14px;
    padding: 14px 0;
    min-height: 80px;
  }

  .topbar-brand-row {
    align-items: center;
    justify-content: flex-end;
  }

  .mobile-nav-toggle {
    display: grid;
  }

  .topbar-brand-row .topbar-button-accent-inline {
    display: inline-flex;
    width: auto;
    min-height: 42px;
    padding: 0 16px;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.96rem;
    font-weight: 700;
  }

  .topbar-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
    padding: 14px max(36px, calc((100vw - var(--site-width)) / 2)) 18px;
    display: grid;
    gap: 12px;
    align-items: stretch;
    justify-content: stretch;
    border-top: 1px solid rgba(255, 248, 238, 0.1);
    border-bottom: 1px solid rgba(255, 248, 238, 0.1);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: rgba(10, 9, 8, 0.98);
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.34);
    z-index: 25;
  }

  .topbar-nav .topbar-button,
  .topbar-nav .settings-button {
    min-height: 48px;
    padding: 0;
    width: 100%;
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 1.02rem;
    font-weight: 700;
    text-align: left;
  }

  .topbar-nav .topbar-button:hover,
  .topbar-nav .topbar-button:focus-visible,
  .topbar-nav .settings-button:hover,
  .topbar-nav .settings-button:focus-visible {
    background: transparent;
  }

  .topbar-nav .topbar-button-menu,
  .topbar-nav .topbar-button-secondary {
    border-bottom: 1px solid rgba(255, 248, 238, 0.08);
  }

  .topbar-nav .topbar-button-secondary {
    display: none;
  }

  .topbar-button-accent-menu {
    display: none;
  }

  .topbar-nav .topbar-button-accent-menu,
  .topbar-nav .topbar-button-accent-menu:hover,
  .topbar-nav .topbar-button-accent-menu:focus-visible {
    width: auto;
    min-height: 42px;
    padding: 0 16px;
    justify-self: start;
    justify-content: flex-start;
    border-radius: 999px;
    border: 0;
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: none;
  }

  .menu-shell {
    display: block;
    width: 100%;
  }

  .menu-shell::after {
    display: none;
  }

  .menu-shell-settings {
    justify-items: start;
  }

  .topbar-nav .settings-button {
    width: auto;
    min-height: 48px;
    padding: 0;
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
  }

  .settings-button-label {
    display: none;
  }

  .menu-shell:not(.menu-shell-settings) .menu-panel,
  .menu-shell-settings .menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: auto;
    transform: none;
    min-width: min(320px, calc(100vw - 72px));
    width: min(320px, calc(100vw - 72px));
    margin-top: 0;
    box-shadow: 0 24px 48px rgba(10, 8, 6, 0.3);
    z-index: 35;
  }

  .menu-shell-settings .menu-panel {
    min-width: 220px;
    width: min(220px, calc(100vw - 72px));
  }

  body[data-theme="dark"] .topbar-nav .topbar-button:not(.topbar-button-accent),
  body[data-theme="dark"] .topbar-nav .settings-button {
    background: transparent;
  }

  body[data-theme="dark"] .topbar-nav .topbar-button:not(.topbar-button-accent):hover,
  body[data-theme="dark"] .topbar-nav .topbar-button:not(.topbar-button-accent):focus-visible,
  body[data-theme="dark"] .topbar-nav .settings-button:hover,
  body[data-theme="dark"] .topbar-nav .settings-button:focus-visible {
    background: transparent;
  }

  .product-main-grid,
  .recommendation-layout {
    grid-template-columns: 1fr;
  }

  .product-side-column {
    display: contents;
  }

  .product-intro {
    order: 1;
  }

  .preview-card {
    order: 2;
    padding-top: 0;
  }

  .details-rail {
    margin-top: 0;
    order: 3;
  }

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

  .page-shell {
    padding: 34px 0 60px;
  }

  .product-intro {
    align-items: flex-start;
  }

  .preview-card,
  .details-rail {
    padding: 20px;
  }

  .preview-card {
    padding: 0;
  }

  .details-rail {
    margin-top: 0;
    padding: 0;
    border-radius: 0;
  }

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

  .recommendation-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    overflow: visible;
    flex: 0 0 auto;
    min-height: auto;
  }

  .recommendation-panel {
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .recommendation-controls {
    max-width: none;
    justify-self: stretch;
  }

  .recommendation-controls,
  .recommendation-results-pane {
    overflow: visible;
    height: auto;
    min-height: 0;
  }

  .recommendation-summary {
    margin-top: 10px;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .recommendation-edit {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .recommendation-panel.is-condensed .recommendation-header {
    padding-top: 14px;
    padding-bottom: 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .recommendation-panel.is-condensed .recommendation-header-main {
    display: block;
    min-height: 28px;
    margin-bottom: 8px;
    padding-right: 54px;
  }

  .recommendation-panel.is-condensed .recommendation-title,
  .recommendation-panel.is-condensed .recommendation-intro {
    display: none;
  }

  .recommendation-panel.is-condensed .recommendation-summary {
    display: grid !important;
  }

  .recommendation-panel.is-condensed .recommendation-controls {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --site-width: min(100vw - 56px, 1400px);
  }

  .product-intro,
  .preview-card-head,
  .focus-header,
  .details-block-head {
    align-items: stretch;
  }

  .preview-card-tools,
  .preview-scale-note,
  .focus-scale-note {
    flex-direction: column;
  }

  .topbar-inner {
    gap: 16px;
  }

  .action-button,
  .text-button {
    width: 100%;
  }

  .browse-grid,
  .benchmark-grid {
    grid-template-columns: 1fr;
  }

  .browse-card,
  .recommendation-card {
    grid-template-columns: 1fr;
  }

  .spec-row-v2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-shell {
    padding: 28px 0 48px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
  }

  .landing-hero-copy h2,
  .product-intro h2,
  .view-head h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .landing-hero-copy h2 {
    max-width: none;
  }

  .product-intro h2 {
    max-width: 8.5ch;
  }

  .browse-card,
  .recommendation-card {
    border-radius: 22px;
  }

  .landing-carousel-slide {
    display: block;
  }

  .landing-hero-copy {
    max-width: none;
    padding: 0;
    justify-self: stretch;
  }

  .landing-hero-actions {
    width: 100%;
    margin-top: 10px;
  }

  .landing-hero-actions .action-button {
    width: 100%;
  }

  .preview-card,
  .details-rail {
    padding: 18px;
    border-radius: 24px;
    width: 100%;
  }

  .preview-card {
    padding: 0;
    border-radius: 0;
  }

  .details-rail {
    margin-top: 0;
    padding: 0;
    border-radius: 0;
  }

  .details-block {
    max-width: none;
  }

  .details-block + .details-block::before {
    width: min(100%, 248px);
  }

  .product-intro,
  .preview-card-head,
  .preview-footer {
    flex-direction: column;
  }

  .product-intro-actions,
  .preview-card-tools {
    width: 100%;
  }

  .preview-card-tools .action-button {
    width: 100%;
  }

  .preview-scale-stage {
    padding: 0;
    min-height: 0;
  }

  .preview-footer {
    justify-items: center;
    gap: 12px;
    width: 100%;
  }

  .preview-device-stack {
    grid-column: auto;
  }

  .preview-footer .preview-expand-button {
    transform: none;
  }

  .device-bar {
    width: min(100%, var(--device-track-width));
    padding: 0;
    overflow: hidden;
  }

  .device-bar .device-chip {
    min-height: 34px;
  }

  .preview-footer-actions,
  #onsite-link {
    width: 100%;
  }

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

  .accordion-item summary {
    padding: 22px 0;
    font-size: 1.24rem;
  }

  .accordion-stack {
    margin-top: 18px;
    padding-top: 18px;
  }

  .accordion-stack::before {
    top: 0;
    bottom: -52px;
  }

  .focus-panel,
  .recommendation-panel {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    border-radius: 0;
  }

  .recommendation-panel {
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .preview-scale-stage-focus {
    min-height: 0;
  }

  .recommendation-layout {
    gap: 12px;
    overflow: visible;
    flex: 0 0 auto;
    min-height: auto;
  }

  .recommendation-controls,
  .recommendation-results-pane {
    padding: 14px;
    overflow: visible;
    height: auto;
    min-height: 0;
  }

  .recommendation-controls {
    max-width: none;
    justify-self: stretch;
  }

  .recommendation-header {
    display: block;
    position: relative;
    margin: 0 0 12px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(27, 22, 16, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 20px rgba(49, 39, 27, 0.08);
  }

  .recommendation-header-main {
    padding-right: 54px;
  }

  .recommendation-title {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 0.98;
  }

  .recommendation-intro {
    margin-top: 6px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  #recommendation-close {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .focus-header {
    align-items: flex-start;
  }

  .focus-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .recommendation-questions {
    gap: 14px;
  }

  .recommendation-question {
    display: grid;
    gap: 8px;
  }

  .recommendation-option {
    min-height: 0;
    padding: 10px 12px;
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 400;
  }

  .recommendation-actions {
    margin-top: 14px;
    padding-top: 14px;
  }

  .recommendation-reset-button {
    width: 100%;
  }

  .recommendation-results-pane {
    margin-top: -2px;
  }

  .recommendation-results {
    gap: 10px;
  }

  .recommendation-card {
    padding: 13px;
    gap: 10px;
  }

  .recommendation-card,
  .recommendation-card.has-mock {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-right: 14px;
  }

  .recommendation-card-layout-standard,
  .recommendation-card-layout-standard-square,
  .recommendation-card-layout-xl,
  .recommendation-card-layout-vertical-xl {
    padding-right: 14px;
  }

  .recommendation-card-copy {
    gap: 4px;
    width: 100%;
    padding-inline: 4px;
    box-sizing: border-box;
  }

  .recommendation-card h4,
  .recommendation-card-tagline,
  .recommendation-card-description {
    max-width: none;
  }

  .recommendation-card-media,
  .recommendation-card-media-standard,
  .recommendation-card-media-standard-square,
  .recommendation-card-media-xl,
  .recommendation-card-media-vertical-xl {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    order: -1;
    width: 100%;
    height: auto;
  }

  .recommendation-card-media-standard,
  .recommendation-card-media-standard-square,
  .recommendation-card-media-xl {
    height: 180px;
  }

  .recommendation-card-media-vertical-xl {
    height: 236px;
  }

  .recommendation-summary {
    margin-top: 10px;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .recommendation-edit {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .recommendation-panel.is-condensed .recommendation-header {
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .recommendation-panel.is-condensed .recommendation-header-main {
    display: block;
    min-height: 28px;
    margin-bottom: 8px;
    padding-right: 54px;
  }

  .recommendation-panel.is-condensed .recommendation-title,
  .recommendation-panel.is-condensed .recommendation-intro {
    display: none;
  }

  .recommendation-panel.is-condensed .recommendation-summary {
    display: grid !important;
  }

  .recommendation-panel.is-condensed .recommendation-controls {
    display: none;
  }

  .recommendation-panel.is-condensed #recommendation-close {
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 248, 238, 0.12);
    border-radius: 999px;
    background: rgba(22, 19, 16, 0.94);
    color: transparent;
    display: inline-grid;
    place-items: center;
  }

  .recommendation-panel.is-condensed #recommendation-close::before {
    content: "\00d7";
    color: #fff8ee;
    font-size: 1.8rem;
    line-height: 1;
    transform: translateY(-1px);
  }

  body[data-theme="dark"] .recommendation-header {
    background: rgba(22, 19, 16, 0.94);
    border-color: rgba(255, 248, 238, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  }

  body[data-theme="dark"] .recommendation-panel.is-condensed .recommendation-header {
    border-color: transparent;
    box-shadow: none;
  }
}

@media (max-width: 710px) {
  :root {
    --site-width: min(100vw - 48px, 1400px);
  }

  .topbar {
    border-bottom: 0;
  }

  .topbar-inner {
    gap: 12px;
    padding: 12px 0 14px;
  }

  .topbar-brand-row {
    align-items: center;
    justify-content: flex-end;
  }

  .brand-strip {
    gap: 12px;
    padding: 6px 0 4px;
  }

  .brand-strip-mark {
    width: 24px;
    height: 24px;
    margin-top: 4px;
  }

  .brand-strip-copy .eyebrow {
    margin-bottom: 4px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .brand-strip h1 {
    font-size: clamp(1.18rem, 7vw, 1.5rem);
  }

  .mobile-nav-toggle {
    display: grid;
  }

  .topbar-brand-row .topbar-button-accent-inline {
    display: none;
  }

  .topbar-nav {
    padding: 14px max(24px, calc((100vw - var(--site-width)) / 2)) 18px;
    gap: 12px;
  }

  .topbar-nav .topbar-button,
  .topbar-nav .settings-button {
    min-height: 46px;
    padding: 0;
    justify-content: flex-start;
    border-radius: 0;
    background: transparent;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: left;
  }

  .topbar-nav .settings-button {
    width: auto;
    justify-self: start;
  }

  .topbar-button-accent-menu {
    display: inline-flex;
  }

  .topbar-nav .topbar-button-accent-menu {
    width: auto;
    min-height: 42px;
    padding: 0 14px 0 16px;
    justify-self: start;
    justify-content: flex-start;
    border-radius: 999px;
    border-bottom: 0;
  }

  .topbar-nav .topbar-button-accent-menu,
  .topbar-nav .topbar-button-accent-menu:hover,
  .topbar-nav .topbar-button-accent-menu:focus-visible {
    border: 0;
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: none;
  }

  .topbar-button-accent {
    min-height: 42px;
    width: auto;
    justify-self: start;
    padding: 0 14px 0 16px;
    justify-content: flex-start;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.96rem;
    text-align: left;
    border-bottom: 0;
  }

  .topbar-button-accent::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex: 0 0 auto;
  }

  .topbar-button-secondary {
    color: #fff8ee;
  }

  .topbar-button-menu::after {
    content: "";
    width: 10px;
    height: 10px;
    margin-left: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 140ms ease;
    flex: 0 0 auto;
  }

  .topbar-button-menu[aria-expanded="true"]::after {
    transform: translateY(2px) rotate(-135deg);
  }

  .settings-button-menu::after {
    display: none;
  }

  .settings-button svg {
    width: 18px;
    height: 18px;
  }

  .page-shell {
    padding: 22px 0 44px;
  }

  .landing-hero-copy h2 {
    font-size: clamp(1.42rem, 5.2vw, 1.82rem);
    max-width: none;
    line-height: 1;
    white-space: nowrap;
  }

  .product-intro h2,
  .view-head h2 {
    font-size: clamp(1.72rem, 6.2vw, 2.18rem);
  }

  .landing-hero-text,
  .product-description,
  .recommendation-card-description,
  .recommendation-intro {
    font-size: 1rem;
    line-height: 1.65;
  }

  .landing-preview-strip {
    gap: 14px;
  }

  .landing-carousel-controls {
    top: clamp(96px, 37%, 194px);
    right: 0;
    transform: translateY(-50%);
    justify-items: center;
  }

  .landing-carousel-dots {
    gap: 8px;
  }

  .browse-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .browse-filter-bar {
    margin: 18px 0 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .filter-chip {
    min-width: 0;
    min-height: 38px;
    padding: 0 4px;
    justify-content: center;
    font-size: clamp(0.64rem, 2.15vw, 0.76rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    white-space: nowrap;
  }

  .landing-hero-copy {
    max-width: none;
    padding: 0;
    justify-self: stretch;
  }

  .landing-hero-actions {
    width: 100%;
    margin-top: 10px;
  }

  .landing-hero-actions .action-button {
    width: 100%;
  }

  .landing-carousel-slide {
    display: block;
  }

  .landing-carousel-title {
    font-size: clamp(1.2rem, 5vw, 1.56rem);
  }

  .landing-carousel-tagline {
    font-size: 0.95rem;
  }

  .landing-carousel-copy {
    margin-top: 14px;
    gap: 8px;
    padding-left: 2px;
  }

  .product-intro {
    margin-bottom: 20px;
    gap: 16px;
  }

  .product-intro-copy,
  .preview-card-tools {
    min-width: 0;
  }

  .product-title-row {
    max-width: 100%;
  }

  .meta-row {
    gap: 8px;
    width: 100%;
  }

  .focus-frame {
    margin-top: 16px;
  }

  .preview-scale-stage {
    min-height: 0;
    padding: 0;
  }

  .preview-card {
    width: 100%;
  }

  .device-frame-readout {
    font-size: 0.72rem;
  }

  .preview-footer-actions,
  #onsite-link {
    min-width: 0;
    max-width: 100%;
  }

  .preview-fallback {
    min-height: 220px;
    padding: 24px;
  }

  .preview-card-head,
  .preview-card-tools,
  .preview-footer {
    gap: 14px;
  }

  .browse-view,
  .product-view {
    padding-top: 8px;
  }

  .recommendation-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .recommendation-summary-line {
    font-size: 0.98rem;
  }

  .recommendation-card,
  .recommendation-card.has-mock {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 12px;
    padding-right: 12px;
    gap: 8px;
  }

  .recommendation-card-layout-standard,
  .recommendation-card-layout-standard-square,
  .recommendation-card-layout-xl,
  .recommendation-card-layout-vertical-xl {
    padding-right: 12px;
  }

  .recommendation-card-copy {
    gap: 0;
    width: 100%;
    padding-inline: 4px;
    box-sizing: border-box;
  }

  .recommendation-card-media,
  .recommendation-card-media-standard,
  .recommendation-card-media-standard-square,
  .recommendation-card-media-xl,
  .recommendation-card-media-vertical-xl {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    order: -1;
    width: 100%;
    height: auto;
  }

  .recommendation-card-media-standard,
  .recommendation-card-media-standard-square,
  .recommendation-card-media-xl {
    height: 212px;
  }

  .recommendation-card-media-vertical-xl {
    height: 276px;
  }

  .recommendation-card-media-standard,
  .recommendation-card-media-standard-square {
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .recommendation-card .recommendation-card-media-standard img,
  .recommendation-card .recommendation-card-media-standard-square img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .recommendation-card-tagline {
    display: none;
  }

  .recommendation-card.has-mock .recommendation-open {
    margin-top: 10px;
    padding-top: 0;
  }

  .recommendation-card h4 {
    font-size: 1.18rem;
  }

  .recommendation-card-description {
    margin-top: 4px;
    max-width: none;
  }
}
