:root {
  --bg: #f4f1ec;
  --paper: #fffdf9;
  --ink: #171717;
  --muted: #66625b;
  --line: #ded8cd;
  --blue: #315f7d;
  --green: #536f5d;
  --copper: #ad6b3b;
  --steel: #8b939b;
  --charcoal: #25282a;
  --lilac: #d7cfe7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

.announcement-bar {
  padding: 10px 18px;
  color: white;
  background: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(244, 241, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: var(--charcoal);
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0;
}

.brand-mark.logo-mark {
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

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

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.quote-link {
  padding: 9px 12px;
  border-radius: 8px;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--ink);
  background: #e8e0d5;
}

.quote-link {
  color: white;
  background: var(--blue);
  font-weight: 700;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  min-height: 620px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.hero-photo {
  min-height: 680px;
}

.hero-showcase {
  grid-template-columns: minmax(320px, 0.78fr) minmax(460px, 1.22fr);
  min-height: min(760px, calc(100vh - 48px));
  background: linear-gradient(135deg, #f6f1e9 0%, #efe7da 52%, #e8ded0 100%);
}

.hero-showcase .hero-copy {
  align-self: center;
}

.hero-showcase h1 {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 68px);
}

.hero-showcase .hero-actions {
  margin-bottom: 22px;
}

.hero-showcase .hero-metrics {
  grid-template-columns: 1fr;
  max-width: 650px;
}

.hero-showcase .hero-metrics div {
  padding: 14px 16px;
}

.hero-showcase-media {
  display: grid;
  gap: 12px;
  align-self: center;
}

.hero-showcase .showcase-carousel {
  min-height: clamp(390px, 44vw, 620px);
}

.hero-showcase .helper-text {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.polished-hero {
  background:
    linear-gradient(90deg, rgba(244, 241, 236, 0.98), rgba(244, 241, 236, 0.72)),
    radial-gradient(circle at 78% 20%, rgba(215, 207, 231, 0.38), transparent 32%);
}

.image-first-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--charcoal);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.92) contrast(1.02);
}

.image-first-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.08) 0%, rgba(23, 23, 23, 0.32) 42%, rgba(23, 23, 23, 0.78) 100%),
    linear-gradient(90deg, rgba(23, 23, 23, 0.74) 0%, rgba(23, 23, 23, 0.42) 54%, rgba(23, 23, 23, 0.08) 100%);
}

.image-first-hero .hero-copy {
  position: relative;
  z-index: 1;
}

.image-first-hero .eyebrow {
  color: #f1d5bd;
}

.image-first-hero h1 {
  color: white;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.image-first-hero .hero-copy > p:not(.eyebrow) {
  color: #f3eee7;
}

.image-first-hero .button.primary {
  color: var(--charcoal);
  background: white;
  border-color: white;
}

.image-first-hero .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.image-first-hero .hero-metrics div {
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(8px);
}

.image-first-hero .hero-metrics dt {
  color: var(--ink);
}

.image-first-hero .hero-metrics dd {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.hero-copy > p:not(.eyebrow),
.page-title p,
.split-band p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-copy h1 {
  text-wrap: balance;
}

.hero-image-panel {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 28px 80px rgba(37, 40, 42, 0.18);
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.shop-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}

.shop-strip a {
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: 22px clamp(18px, 3vw, 34px);
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.shop-strip a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.shop-strip strong {
  font-size: 17px;
}

.shop-strip span {
  color: #d7d1c8;
  font-size: 14px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero-proof-list span {
  padding: 8px 11px;
  color: var(--muted);
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--charcoal);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: white;
  background: var(--charcoal);
}

.button.secondary {
  background: transparent;
}

.hero-metrics {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.hero-metrics div,
.category-card,
.info-grid div,
.recommend-card,
.filter-panel,
.product-card,
.service-steps article,
.quote-form,
.faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-metrics div {
  padding: 16px;
}

.hero-metrics dt {
  font-weight: 900;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.keyboard-visual {
  display: grid;
  gap: 18px;
}

.keyboard-shell {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, #c9d0d3, #656c70 48%, #2b2f31 52%, #b4bdc2);
  border: 1px solid #70777b;
  border-radius: 26px;
  box-shadow: 0 38px 70px rgba(37, 40, 42, 0.22), inset 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.key-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(28px, 1fr));
  gap: 10px;
}

.key-row span {
  aspect-ratio: 1 / 0.86;
  background: #f2efe8;
  border: 1px solid rgba(37, 40, 42, 0.18);
  border-radius: 7px;
  box-shadow: inset 0 -5px 0 rgba(37, 40, 42, 0.12);
}

.key-row .wide {
  grid-column: span 2;
}

.key-row .space {
  grid-column: span 4;
}

.visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.visual-caption strong {
  color: var(--ink);
}

.section,
.page {
  padding: clamp(40px, 6vw, 78px) clamp(20px, 5vw, 64px);
}

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

.section-heading.inline h2 {
  margin-bottom: 0;
}

.section-heading a {
  color: var(--blue);
  font-weight: 800;
}

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

.category-card,
.info-grid div,
.product-card {
  padding: 22px;
}

.service-offer-grid .category-card {
  min-height: 245px;
}

.service-offer-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.customer-paths .product-card,
.path-card {
  display: flex;
  flex-direction: column;
}

.path-card .button,
.product-card .button {
  width: 100%;
  margin-top: auto;
}

.offer-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--blue);
  background: #e6eee9;
  border: 1px solid rgba(49, 95, 125, 0.16);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.category-card p,
.info-grid p,
.product-card p,
.recommend-card p,
.service-steps p,
.faq p,
.process-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.split-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  background: #e9e1d4;
  border-block: 1px solid var(--line);
}

.seo-landing .page-title {
  display: grid;
  min-height: 520px;
  align-content: end;
  overflow: hidden;
  position: relative;
  margin: calc(clamp(40px, 6vw, 78px) * -1) calc(clamp(20px, 5vw, 64px) * -1) clamp(34px, 5vw, 56px);
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 64px) clamp(44px, 7vw, 86px);
  color: white;
  background: var(--charcoal);
}

.seo-landing .page-title::before,
.seo-landing .page-title::after {
  position: absolute;
  inset: 0;
  content: "";
}

.seo-landing .page-title::before {
  background: var(--landing-image, url("assets/soft-desk-keyboard-build.jpg")) center / cover;
  filter: saturate(0.92) contrast(1.02);
}

.seo-landing .page-title::after {
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.12), rgba(23, 23, 23, 0.78)),
    linear-gradient(90deg, rgba(23, 23, 23, 0.78), rgba(23, 23, 23, 0.16));
}

.seo-landing .page-title > * {
  position: relative;
  z-index: 1;
}

.seo-landing .page-title p {
  color: #f3eee7;
}

.seo-landing .page-title .eyebrow {
  color: #f1d5bd;
}

.landing-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.landing-panel,
.landing-checklist,
.landing-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.landing-panel,
.landing-checklist {
  padding: 24px;
}

.landing-panel img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
}

.landing-checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.landing-faq {
  display: grid;
  gap: 12px;
}

.landing-faq details {
  padding: 18px 20px;
}

.landing-search-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-search-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--paper);
  font-weight: 800;
}

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

.media-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.media-grid figure:nth-child(1) img {
  object-position: 44% 54%;
}

.media-grid figure:nth-child(2) img {
  object-position: 50% 45%;
}

.media-grid figure:nth-child(3) img {
  object-position: 50% 58%;
}

.media-grid figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.latest-showcase {
  padding-top: clamp(34px, 5vw, 64px);
}

.showcase-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  grid-template-rows: repeat(3, minmax(150px, 1fr));
  gap: 14px;
}

.showcase-mosaic figure {
  position: relative;
  min-height: 170px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
}

.showcase-mosaic .showcase-large {
  grid-row: span 3;
  min-height: 540px;
}

.showcase-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
}

.showcase-mosaic figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #f8f4ed;
  background: rgba(23, 23, 23, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.showcase-carousel {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 58vw, 680px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 24px 70px rgba(38, 36, 32, 0.16);
}

.showcase-carousel::after {
  position: absolute;
  z-index: 2;
  content: "";
}

.showcase-carousel::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #c56d3b, #f3d9bf, #315f7d);
  transform: scaleX(0);
  transform-origin: left;
}

.showcase-carousel.is-animating::after {
  animation: showcaseProgress 6000ms linear forwards;
}

.showcase-track,
.showcase-slide {
  position: absolute;
  inset: 0;
}

.showcase-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 980ms ease, visibility 980ms ease;
}

.showcase-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.showcase-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.showcase-slide.is-active img {
  transform: scale(1.035);
}

.showcase-slide figcaption {
  position: absolute;
  top: clamp(14px, 2vw, 24px);
  right: auto;
  bottom: auto;
  left: clamp(14px, 2vw, 24px);
  max-width: calc(100% - 48px);
  padding: 12px 14px;
  color: #f8f4ed;
  background: rgba(23, 23, 23, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.showcase-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: rgba(23, 23, 23, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.showcase-nav:hover {
  background: rgba(23, 23, 23, 0.82);
  transform: translateY(-50%) scale(1.04);
}

.showcase-prev {
  left: 16px;
}

.showcase-next {
  right: 16px;
}

.showcase-dots {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.showcase-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.52);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.showcase-dots button.is-active {
  width: 26px;
  background: #fff;
}

@keyframes showcaseProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-carousel.is-animating::after {
    animation: none;
  }

  .showcase-slide,
  .showcase-slide img {
    transition: none;
  }
}

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

.watermark-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.watermark-card img,
.watermark-card video {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.watermark-card figcaption {
  min-height: 56px;
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.bundle-list {
  display: grid;
  gap: 12px;
}

.bundle-list article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #d4c8b8;
}

.bundle-list span,
.pill {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-title {
  margin-bottom: 36px;
}

.page-title h1 {
  font-size: clamp(36px, 5vw, 62px);
}

.preview-page {
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.preview-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 28px;
  align-items: end;
  max-width: none;
  margin-bottom: 18px;
}

.preview-title .eyebrow,
.preview-title h1,
.preview-title > p {
  grid-column: 1;
}

.preview-title h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
}

.preview-title > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
}

.preview-title .hero-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  justify-content: end;
}

.simulator-shell {
  overflow: hidden;
  min-height: min(760px, calc(100vh - 210px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #202024;
  box-shadow: 0 28px 80px rgba(37, 40, 42, 0.18);
}

.simulator-frame {
  display: block;
  width: 100%;
  height: min(82vh, 860px);
  min-height: min(760px, calc(100vh - 210px));
  border: 0;
  background: #202024;
}

.config-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
}

.filter-panel {
  align-self: start;
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

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

.recommend-card {
  padding: 24px;
}

.recommend-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.spec-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
}

.spec-list span {
  color: var(--muted);
}

.product-section {
  margin-top: 46px;
}

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

.product-media {
  display: block;
  height: 145px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid rgba(37, 40, 42, 0.1);
}

.product-photo {
  display: block;
  width: 100%;
  height: 190px;
  margin-bottom: 18px;
  object-fit: cover;
  border: 1px solid rgba(37, 40, 42, 0.1);
  border-radius: 8px;
}

.curated-build-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.curated-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.curated-card .product-photo {
  height: 230px;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.curated-card.featured-build {
  grid-column: span 2;
}

.curated-card.featured-build .product-photo {
  height: 315px;
}

.curated-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.curated-card-body h3 {
  font-size: 21px;
}

.curated-card-body strong {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
}

.curated-card-body .button {
  width: 100%;
  margin-top: auto;
}

.reference-enquiry-grid {
  align-items: stretch;
}

.reference-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.reference-card > img {
  display: block;
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.reference-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.reference-card-body h3 {
  margin-bottom: 8px;
}

.reference-card-body .button {
  width: 100%;
  margin-top: auto;
}

.reference-card-plain {
  color: white;
  background:
    linear-gradient(135deg, rgba(37, 40, 42, 0.98), rgba(49, 95, 125, 0.92)),
    var(--charcoal);
  border-color: rgba(255, 255, 255, 0.14);
}

.reference-card-plain .offer-tag {
  color: white;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.2);
}

.reference-card-plain p {
  color: rgba(255, 255, 255, 0.78);
}

.reference-card-plain .button.primary {
  color: var(--charcoal);
  background: white;
  border-color: white;
}

.reference-helper {
  max-width: 980px;
  margin: 16px 0 0;
}

.media-blue { background: linear-gradient(135deg, #263d4e, #9fb4bf); }
.media-green { background: linear-gradient(135deg, #384a3e, #bdc7b7); }
.media-silver { background: linear-gradient(135deg, #3b3e40, #d9dddf); }
.cap-neutral { background: repeating-linear-gradient(90deg, #efe9dd 0 38px, #d6cbbd 38px 76px); }
.cap-accent { background: repeating-linear-gradient(90deg, #efe9dd 0 38px, #ad6b3b 38px 76px, #315f7d 76px 114px); }
.cap-premium { background: repeating-linear-gradient(90deg, #25282a 0 38px, #f7f4ef 38px 76px); }
.switch-linear { background: radial-gradient(circle at 50% 45%, #d7e0e5 0 18%, #315f7d 19% 38%, #f7f4ef 39%); }
.switch-tactile { background: radial-gradient(circle at 50% 45%, #e4d5c6 0 18%, #ad6b3b 19% 38%, #f7f4ef 39%); }
.switch-silent { background: radial-gradient(circle at 50% 45%, #dbe3d8 0 18%, #536f5d 19% 38%, #f7f4ef 39%); }
.deskmat { background: linear-gradient(135deg, #495051, #a8b1ae); }
.cable { background: repeating-linear-gradient(135deg, #25282a 0 12px, #f7f4ef 12px 24px); }
.wrist { background: linear-gradient(135deg, #8a6a4c, #d7c3a9); }

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

.service-steps article {
  padding: 24px;
}

.service-steps span {
  color: var(--blue);
  font-weight: 900;
}

.price-table {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  margin-top: 48px;
}

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

.process-grid div {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid span {
  color: var(--blue);
  font-weight: 900;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: #e8e0d5;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}

.checkout-layout .page-title {
  max-width: 900px;
}

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

.payment-builder {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  margin-bottom: 24px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-builder p {
  color: var(--muted);
  line-height: 1.6;
}

.payment-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 700;
}

.payment-card {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-card dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.payment-card dl div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.payment-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-card dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.muted-card {
  color: var(--muted);
}

.muted-card h2 {
  color: var(--ink);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.designer-page .page-title {
  max-width: 900px;
}

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

.workflow-steps div {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.workflow-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.designer-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.designer-controls {
  position: sticky;
  top: 92px;
}

.designer-controls input[type="color"] {
  height: 46px;
  padding: 4px;
}

.designer-controls input[type="range"] {
  accent-color: var(--blue);
}

.helper-text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.asset-list {
  display: grid;
  gap: 8px;
  max-height: 170px;
  margin-top: 14px;
  overflow: auto;
}

.asset-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.selection-chip {
  display: inline-flex;
  max-width: 100%;
  margin: 10px 0 0;
  padding: 8px 10px;
  color: var(--ink);
  background: #efe8df;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.asset-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 8px;
  color: var(--ink);
  background: #f5f0e8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.asset-item.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(49, 95, 125, 0.14);
}

.asset-item img {
  width: 46px;
  height: 34px;
  object-fit: cover;
  border-radius: 6px;
}

.error-text {
  color: #a12d2d;
  font-weight: 800;
}

.designer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.designer-actions.order-actions {
  grid-template-columns: 1fr;
}

.order-status {
  padding: 12px;
  background: #f5f0e8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.per-key-panel .designer-actions {
  grid-template-columns: 1fr;
}

.submission-fields,
.per-key-panel,
.production-guidelines {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.submission-fields h3,
.per-key-panel h3,
.production-guidelines summary {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.usage-guide {
  margin-top: 12px;
  padding: 12px;
  background: #efe8df;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.usage-guide summary {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.usage-guide ol {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.usage-guide label {
  margin-top: 12px;
}

.fine-tune {
  margin-top: 12px;
  padding: 12px;
  background: #f5f0e8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fine-tune summary {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.production-guidelines ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.full-width-button {
  width: 100%;
  margin: 12px 0 4px;
}

.submission-fields textarea {
  min-height: 110px;
}

.factory-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 16px 0;
}

.canvas-panel {
  display: grid;
  gap: 16px;
}

.sticky-preview {
  position: sticky;
  top: 96px;
  width: 100%;
  overflow-x: auto;
  z-index: 1;
}

.preview-dragbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--paper);
  background: rgba(37, 40, 42, 0.92);
  border: 1px solid rgba(37, 40, 42, 0.18);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  font-size: 12px;
  font-weight: 900;
  user-select: none;
}

.preview-zoom {
  display: inline-grid;
  grid-template-columns: 28px 48px 28px;
  gap: 6px;
  align-items: center;
}

.preview-zoom button {
  min-height: 26px;
  padding: 0;
  color: var(--paper);
  background: rgba(255, 253, 249, 0.14);
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.preview-zoom span {
  color: rgba(255, 253, 249, 0.86);
  font-size: 11px;
  text-align: center;
}

.canvas-panel {
  min-height: 620px;
}

#keycapCanvas {
  width: 100%;
  height: auto;
  background: #e8e0d5;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 22px 54px rgba(37, 40, 42, 0.12);
  cursor: crosshair;
  touch-action: manipulation;
}

.preview-notes {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.summary-details {
  margin-top: 14px;
}

.summary-details summary {
  display: inline-flex;
  padding: 10px 12px;
  color: var(--ink);
  background: #efe8df;
  border: 1px solid #d4c8b8;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.locked-note {
  padding: 14px;
  background: #efe8df;
  border: 1px solid #d4c8b8;
  border-radius: 8px;
}

.locked-note strong {
  display: block;
  margin-bottom: 6px;
}

.locked-note p {
  margin: 0;
}

.tester-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.tester-controls {
  position: sticky;
  top: 92px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: auto;
  font-weight: 800;
}

.checkbox-row input {
  width: auto;
}

.tester-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.tester-stats div {
  padding: 12px;
  background: #f7f1e8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tester-stats span {
  display: block;
  overflow: hidden;
  font-size: 22px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tester-stats small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tester-stage {
  display: grid;
  gap: 16px;
}

.test-surface {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.test-surface:focus {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 3px rgba(37, 40, 42, 0.12);
}

.test-surface span {
  color: var(--muted);
}

.keyboard-preview-shell {
  overflow-x: auto;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(135deg, var(--case-a), var(--case-b));
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(37, 40, 42, 0.16);
}

.keyboard-preview-shell[data-theme="butterfly"] {
  --case-a: #2d2932;
  --case-b: #161518;
  --key-a: #f2eaf0;
  --key-b: #d8cce3;
  --accent-a: #17151a;
  --accent-b: #312c35;
  --legend: #7d6b96;
  --active: rgba(205, 184, 244, 0.36);
}

.keyboard-preview-shell[data-theme="pastel"] {
  --case-a: #e8edf0;
  --case-b: #cfd9dd;
  --key-a: #fff9fb;
  --key-b: #e8d5df;
  --accent-a: #f0cfd8;
  --accent-b: #d9edf0;
  --legend: #66737a;
  --active: rgba(255, 217, 230, 0.48);
}

.keyboard-preview-shell[data-theme="cyber"] {
  --case-a: #202526;
  --case-b: #101313;
  --key-a: #252032;
  --key-b: #15121f;
  --accent-a: #74e86c;
  --accent-b: #d9d1bd;
  --legend: #86ff7c;
  --active: rgba(116, 232, 108, 0.42);
}

.keyboard-preview-shell[data-theme="translucent"] {
  --case-a: #e8e5de;
  --case-b: #c8c3b7;
  --key-a: rgba(255, 255, 255, 0.9);
  --key-b: rgba(216, 211, 200, 0.82);
  --accent-a: #f0d58c;
  --accent-b: #fff9e8;
  --legend: #ab8445;
  --active: rgba(244, 217, 135, 0.5);
}

.keyboard-preview-shell[data-theme="minimal"] {
  --case-a: #f4f2ed;
  --case-b: #d9d4c9;
  --key-a: #fffdf9;
  --key-b: #e9e4da;
  --accent-a: #25282a;
  --accent-b: #8b939b;
  --legend: #25282a;
  --active: rgba(49, 95, 125, 0.32);
}

.keyboard-screen {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-width: max-content;
  margin-bottom: 16px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.sim-keyboard {
  position: relative;
  display: block;
  min-width: max-content;
  padding: 16px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.sim-key {
  position: absolute;
  min-width: 0;
  overflow: hidden;
  color: var(--legend);
  background: linear-gradient(145deg, var(--key-a), var(--key-b));
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 7px;
  box-shadow:
    inset 0 -5px 8px rgba(0, 0, 0, 0.12),
    inset 0 3px 7px rgba(255, 255, 255, 0.55),
    0 5px 0 rgba(0, 0, 0, 0.2);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transform: rotate(var(--key-rotate, 0deg));
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.sim-key.modifier,
.sim-key.spacebar {
  background: linear-gradient(145deg, var(--accent-b), var(--accent-a));
}

.sim-key.is-tested {
  outline: 2px solid rgba(255, 255, 255, 0.56);
  outline-offset: -4px;
}

.sim-key.is-active {
  filter: brightness(1.16) saturate(1.1);
  transform: translateY(4px) rotate(var(--key-rotate, 0deg));
  box-shadow:
    inset 0 -2px 7px rgba(0, 0, 0, 0.18),
    inset 0 2px 8px rgba(255, 255, 255, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.22);
}

.sim-key.is-active::after {
  position: absolute;
  inset: 0;
  background: var(--active);
  content: "";
}

.tester-summary textarea {
  min-height: 180px;
}

#designSummary {
  min-height: 180px;
  margin-top: 14px;
  color: var(--ink);
  background: #f5f0e8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

.quote-form,
.faq {
  padding: 28px;
}

.quote-form form {
  margin-top: 18px;
}

details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 64px);
  color: white;
  background: var(--charcoal);
}

.site-footer p {
  margin: 8px 0 0;
  color: #d1d4d5;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-legal {
  flex: 0 0 100%;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aeb5b8;
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .hero,
  .split-band,
  .landing-grid,
  .config-layout,
  .price-table,
  .two-column,
  .payment-builder,
  .recommend-card.featured,
  .designer-layout,
  .tester-layout {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .info-grid,
  .product-grid,
  .service-steps,
  .recommendations,
  .payment-grid,
  .media-grid,
  .portfolio-grid,
  .showcase-mosaic,
  .process-grid,
  .shop-strip,
  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-paths .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .curated-card.featured-build {
    grid-column: span 2;
  }

  .showcase-mosaic .showcase-large {
    grid-column: span 2;
    min-height: 430px;
  }

  .showcase-mosaic figure:nth-child(4) {
    grid-column: span 2;
  }

  .hero-image-panel,
  .hero-image-panel img {
    min-height: 420px;
  }

  .designer-controls {
    position: static;
    order: 1;
  }

  .tester-controls {
    position: static;
  }

  .canvas-panel {
    order: 2;
  }

  .sticky-preview {
    position: static;
    width: auto;
  }

  .preview-dragbar {
    display: none;
  }

  .simulator-shell,
  .simulator-frame {
    min-height: 620px;
  }

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

  .hero-showcase-media {
    order: -1;
  }

  .hero-showcase .showcase-carousel {
    min-height: clamp(280px, 45vw, 390px);
  }

  .hero-showcase .helper-text {
    display: none;
  }
}

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

  .site-header {
    gap: 14px;
    padding: 14px 20px;
  }

  .brand {
    width: 100%;
  }

  .quote-link {
    order: 2;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    order: 3;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav a:nth-child(3),
  .nav a:nth-child(4),
  .nav a:nth-child(5) {
    display: none;
  }

  .nav a {
    display: grid;
    min-height: 44px;
    place-items: center;
    padding: 8px 6px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }

  .preview-page {
    padding: 18px 14px 28px;
  }

  .preview-title {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  .preview-title .eyebrow,
  .preview-title h1,
  .preview-title > p,
  .preview-title .hero-actions {
    grid-column: 1;
    grid-row: auto;
  }

  .preview-title h1 {
    width: 100%;
    max-width: 100%;
    font-size: 26px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .preview-title > p:not(.eyebrow) {
    display: none;
  }

  .preview-title .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
  }

  .preview-title .button {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 28px 18px 34px;
  }

  .hero-image-panel {
    order: -1;
  }

  .hero-showcase h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-showcase .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-showcase .showcase-carousel {
    min-height: 270px;
  }

  .showcase-slide figcaption {
    top: 12px;
    right: auto;
    bottom: auto;
    left: 12px;
    padding: 10px;
    font-size: 12px;
  }

  .showcase-nav {
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .hero-metrics,
  .category-grid,
  .info-grid,
  .product-grid,
  .curated-build-grid,
  .customer-paths .product-grid,
  .service-steps,
  .recommendations,
  .payment-grid,
  .media-grid,
  .portfolio-grid,
  .showcase-mosaic,
  .process-grid,
  .shop-strip,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .showcase-mosaic {
    grid-template-rows: none;
  }

  .showcase-mosaic .showcase-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .showcase-mosaic figure:nth-child(4) {
    grid-column: auto;
  }

  .curated-card.featured-build {
    grid-column: auto;
  }

  .curated-card.featured-build .product-photo,
  .curated-card .product-photo {
    height: 235px;
  }

  .showcase-mosaic figure {
    min-height: 220px;
  }

  .quote-link {
    width: 100%;
    text-align: center;
  }

  .keyboard-shell {
    border-radius: 18px;
  }

  .key-row {
    gap: 6px;
  }

  .visual-caption,
  .site-footer,
  .section-heading {
    display: grid;
  }

  .hero-image-panel,
  .hero-image-panel img {
    min-height: 280px;
  }

  .seo-landing .page-title {
    min-height: 560px;
  }

  .landing-panel img {
    height: 260px;
  }

  .test-surface,
  .keyboard-screen {
    display: grid;
  }

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

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

  h1 {
    font-size: 40px;
  }

  .simulator-shell,
  .simulator-frame {
    min-height: 620px;
  }
}
