:root {
  --paper: #f5f1e9;
  --paper-deep: #ebe4d8;
  --ink: #171a19;
  --muted: #656a66;
  --line: rgba(23, 26, 25, .14);
  --teal: #175c58;
  --orange: #d97745;
  --white: #fffdfa;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.product-page {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.surface-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.surface-skip {
  position: fixed;
  z-index: 100;
  left: 18px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.surface-skip:focus { transform: translateY(0); }

.surface-header {
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 233, .94);
}

.surface-header--transparent { background: transparent; }

.surface-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.surface-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.03em;
  text-decoration: none;
}

.surface-brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 3px 8px 3px 8px;
  background: var(--orange);
  transform: rotate(-10deg);
}

.surface-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.surface-nav a,
.surface-back { text-decoration: none; }

.surface-nav a:hover,
.surface-nav a:focus-visible,
.surface-back:hover,
.surface-back:focus-visible { color: var(--teal); }

.surface-nav__accent {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 9px;
}

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

.hub-hero { padding: 100px 0 80px; }

.hub-hero__inner { text-align: center; }

.hub-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -.065em;
}

.hub-hero h1 span { color: var(--teal); }

.hub-hero__lead {
  max-width: 680px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.family-line {
  width: min(390px, 70%);
  height: 26px;
  margin: 58px auto 0;
  display: flex;
  align-items: center;
}

.family-line span { height: 1px; flex: 1; background: var(--line); }

.family-line i {
  width: 9px;
  height: 9px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 96px;
}

.product-card {
  min-height: 540px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  overflow: hidden;
}

.product-card--design {
  border: 1px solid rgba(23, 26, 25, .12);
  background:
    linear-gradient(135deg, transparent 62%, rgba(23, 26, 25, .04) 62% 63%, transparent 63%),
    var(--white);
}

.product-card--audit { color: var(--white); background: var(--teal); }

.product-card__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.product-monogram {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 15px;
  font-size: 19px;
  font-weight: 800;
}

.product-state {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-state--live { color: var(--white); border-color: rgba(255, 255, 255, .25); }

.product-state--live i {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #a8d4b7;
}

.product-card__family {
  margin: 0 0 10px;
  color: inherit;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  opacity: .65;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 0 0 22px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.06em;
}

.product-card h2 span { color: var(--orange); }

.product-card p:not(.product-card__family) {
  max-width: 520px;
  margin: 0;
  font-size: 17px;
  line-height: 1.68;
  opacity: .76;
}

.surface-button {
  width: fit-content;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease;
}

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

.surface-button:focus-visible,
.surface-brand:focus-visible,
.surface-nav a:focus-visible,
.surface-back:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.surface-button--light { color: var(--ink); background: var(--paper); }
.surface-button--dark { color: var(--white); background: var(--ink); }
.surface-button--outline { color: var(--ink); border-color: var(--ink); }
.surface-button--text { padding-inline: 4px; color: var(--ink); }

.tools-band {
  margin-bottom: 96px;
  padding: clamp(28px, 5vw, 52px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.tools-band h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 44px); letter-spacing: -.045em; }
.tools-band p:not(.surface-eyebrow) { max-width: 690px; margin: 0; color: var(--muted); line-height: 1.65; }

.surface-footer { border-top: 1px solid var(--line); }

.surface-footer__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  .surface-container { width: min(100% - 32px, 680px); }
  .hub-hero { padding: 72px 0 60px; }
  .product-grid { grid-template-columns: 1fr; padding-bottom: 68px; }
  .product-card { min-height: 460px; }
  .tools-band { align-items: flex-start; flex-direction: column; margin-bottom: 68px; }
}

@media (max-width: 560px) {
  .surface-header__inner { min-height: 68px; }
  .surface-nav { gap: 14px; }
  .surface-nav > a:first-child { display: none; }
  .surface-nav__accent { padding: 9px 12px; }
  .hub-hero h1 { font-size: clamp(44px, 14vw, 62px); }
  .hub-hero__lead { font-size: 16px; }
  .product-card { min-height: 430px; border-radius: 18px; }
  .surface-footer__inner { padding-block: 24px; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .surface-button { transition: none; }
}

/* TasarımX — arşivlenen Mimari.ai Stitch tasarım dilinin güvenli uyarlaması */
.product-page--design {
  --design-bg: #f9f9f8;
  --design-surface: #ffffff;
  --design-ink: #171717;
  --design-muted: #6b7280;
  --design-soft: #f3f4f6;
  --design-border: #e5e7eb;
  --design-accent: #955a00;
  --design-accent-dark: #7a4a00;
  display: block;
  min-height: 100vh;
  color: var(--design-ink);
  background: var(--design-bg);
}

.product-page--design main { overflow: hidden; }

.legacy-design-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.legacy-design-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--design-border);
  background: rgba(249, 249, 248, .94);
  backdrop-filter: blur(14px);
}

.legacy-design-header__inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.legacy-design-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--design-ink);
  font-size: 20px;
  font-style: italic;
  letter-spacing: -.045em;
  text-decoration: none;
}

.legacy-design-brand span {
  color: var(--design-ink);
  font-size: 22px;
  font-style: normal;
}

.legacy-design-nav,
.legacy-design-header__actions {
  display: flex;
  align-items: center;
}

.legacy-design-nav { gap: clamp(22px, 3vw, 38px); }
.legacy-design-header__actions { justify-content: flex-end; gap: 14px; }

.legacy-design-nav a,
.legacy-design-quiet-link {
  color: #726d68;
  font-size: 14px;
  font-weight: 520;
  text-decoration: none;
  transition: color .18s ease;
}

.legacy-design-nav a:hover,
.legacy-design-nav a:focus-visible,
.legacy-design-quiet-link:hover,
.legacy-design-quiet-link:focus-visible { color: var(--design-accent); }

.legacy-design-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease;
}

.legacy-design-button:hover { transform: translateY(-2px); }
.legacy-design-button--dark { color: #fff; background: #1d1b19; }
.legacy-design-button--dark:hover { background: var(--design-accent-dark); }
.legacy-design-button--light { color: #1d1b19; background: #fff; }

.legacy-design-brand:focus-visible,
.legacy-design-button:focus-visible,
.legacy-product-switcher__item:focus-visible,
.legacy-design-footer a:focus-visible {
  outline: 3px solid #d3a15e;
  outline-offset: 4px;
}

.legacy-design-hero {
  position: relative;
  min-height: 760px;
  padding: 96px 0 106px;
  isolation: isolate;
}

.legacy-design-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.legacy-design-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}

.legacy-design-glow--one {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 80px;
  background: rgba(149, 90, 0, .08);
  animation: legacy-design-drift-one 20s ease-in-out infinite;
}

.legacy-design-glow--two {
  width: 620px;
  height: 620px;
  right: -260px;
  top: 150px;
  background: rgba(255, 200, 100, .08);
  animation: legacy-design-drift-two 25s ease-in-out infinite reverse;
}

.legacy-design-glow--three {
  width: 520px;
  height: 520px;
  left: 28%;
  bottom: -260px;
  background: rgba(149, 90, 0, .05);
  animation: legacy-design-drift-three 22s ease-in-out infinite;
}

@keyframes legacy-design-drift-one {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(58px, 24px) scale(1.08); }
}

@keyframes legacy-design-drift-two {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-42px, 34px) scale(.94); }
}

@keyframes legacy-design-drift-three {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(28px, -32px); }
}

.legacy-design-building-mark {
  position: relative;
  width: 46px;
  height: 48px;
  margin-bottom: 24px;
  border: 3px solid var(--design-accent);
  border-radius: 7px 7px 4px 4px;
}

.legacy-design-building-mark::before,
.legacy-design-building-mark::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 10px;
  height: 24px;
  border: 3px solid var(--design-accent);
}

.legacy-design-building-mark::before { left: -10px; border-radius: 5px 0 0 4px; }
.legacy-design-building-mark::after { right: -10px; border-radius: 0 5px 4px 0; }

.legacy-design-building-mark span,
.legacy-design-building-mark i {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 3px;
  border-radius: 3px;
  background: var(--design-accent);
}

.legacy-design-building-mark span { top: 9px; }
.legacy-design-building-mark i:nth-of-type(1) { top: 18px; }
.legacy-design-building-mark i:nth-of-type(2) { top: 27px; }
.legacy-design-building-mark i:nth-of-type(3) { top: 36px; }

.legacy-design-hero h1 {
  margin: 0;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(48px, 6.25vw, 78px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.legacy-design-hero h1 span,
.legacy-design-hero h1 strong { display: block; font-weight: 400; }
.legacy-design-hero h1 span { color: var(--design-accent); }
.legacy-design-hero h1 strong { margin-top: 9px; color: #111827; }

.legacy-design-hero__lead {
  max-width: 750px;
  margin: 27px auto 0;
  color: #596271;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 25px);
  font-style: italic;
  line-height: 1.45;
}

.legacy-product-switcher {
  max-width: 100%;
  margin-top: 43px;
  padding: 4px;
  border: 1px solid #dde1e7;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  color: #667085;
  background: rgba(243, 244, 246, .88);
  box-shadow: 0 2px 8px rgba(17, 24, 39, .06);
  scrollbar-width: none;
}

.legacy-product-switcher::-webkit-scrollbar { display: none; }

.legacy-product-switcher__item {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  color: inherit;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

a.legacy-product-switcher__item:hover { color: var(--design-accent); background: #fff; }

.legacy-product-switcher__item.is-active {
  border-color: #dde1e7;
  color: #1f2937;
  background: #fff;
  box-shadow: 0 1px 4px rgba(17, 24, 39, .08);
}

.legacy-product-switcher__item.is-archived { color: #9ca3af; }

.legacy-product-switcher__item small {
  padding: 3px 5px;
  border-radius: 999px;
  color: #8a6a3c;
  background: #f7ecdc;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.legacy-prompt {
  width: min(770px, 100%);
  min-height: 100px;
  margin-top: 31px;
  padding: 14px 14px 14px 10px;
  border: 2px solid #e1e5eb;
  border-radius: 25px;
  display: grid;
  grid-template-columns: 48px 20px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 7px;
  color: #a3adbd;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 3px 0 rgba(17, 24, 39, .04), 0 18px 45px rgba(17, 24, 39, .04);
  text-align: left;
}

.legacy-prompt__add,
.legacy-prompt__send {
  width: 46px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 29px;
  line-height: 1;
}

.legacy-prompt__add {
  border: 2px solid #a7edc2;
  color: #079447;
  background: #ecfdf3;
}

.legacy-prompt__spark { color: #99a4b5; font-size: 25px; }
.legacy-prompt__placeholder { font-size: 16px; font-weight: 650; line-height: 1.4; }

.legacy-prompt__send {
  justify-self: end;
  color: #fff;
  background: #aeb4bf;
  font-size: 26px;
}

.legacy-design-availability {
  margin: 13px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7c746c;
  font-size: 12px;
  font-weight: 650;
}

.legacy-design-availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d19a53;
  box-shadow: 0 0 0 4px rgba(209, 154, 83, .14);
}

.legacy-design-chips {
  margin-top: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
}

.legacy-design-chips span {
  padding: 9px 17px;
  border: 1px solid #e1e5eb;
  border-radius: 999px;
  color: #647084;
  background: rgba(248, 250, 252, .75);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.legacy-design-section { padding: 110px 0; border-top: 1px solid var(--design-border); }
.legacy-design-section--warm { background: #f5f1ea; }

.legacy-design-section__heading { max-width: 760px; margin-bottom: 55px; }
.legacy-design-section__heading > p,
.legacy-design-feature__copy > p:first-child,
.legacy-design-cta p {
  margin: 0 0 13px;
  color: var(--design-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legacy-design-section__heading h2,
.legacy-design-feature__copy h2,
.legacy-design-cta h2 {
  margin: 0;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.legacy-design-section__heading > span {
  max-width: 680px;
  margin-top: 20px;
  display: block;
  color: var(--design-muted);
  font-size: 17px;
  line-height: 1.75;
}

.legacy-design-section__heading--row {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 70px;
}

.legacy-design-section__heading--row > span { margin: 0; }

.legacy-design-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.legacy-design-steps li {
  min-height: 285px;
  padding: 29px;
  border: 1px solid var(--design-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.legacy-design-steps li > span {
  width: 42px;
  height: 42px;
  border: 1px solid #d9c2a5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--design-accent);
  font-family: Georgia, Cambria, serif;
  font-size: 13px;
}

.legacy-design-steps h3 {
  margin: auto 0 12px;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.legacy-design-steps p { margin: 0; color: var(--design-muted); font-size: 14px; line-height: 1.7; }

.legacy-design-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.legacy-design-feature__image {
  position: relative;
  overflow: hidden;
  border-radius: 28px 6px 28px 6px;
  box-shadow: 0 28px 70px rgba(66, 50, 31, .13);
}

.legacy-design-feature__image::after {
  content: "TasarımX · 01";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 10px;
  border-radius: 7px;
  color: #fff;
  background: rgba(24, 22, 20, .76);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legacy-design-feature__image img {
  width: 100%;
  min-height: 490px;
  display: block;
  object-fit: cover;
}

.legacy-design-feature__copy > p:not(:first-child) {
  margin: 24px 0 0;
  color: var(--design-muted);
  font-size: 16px;
  line-height: 1.75;
}

.legacy-design-feature__copy ul { margin: 28px 0 0; padding: 0; list-style: none; }
.legacy-design-feature__copy li { padding: 13px 0; border-top: 1px solid rgba(23, 23, 23, .12); font-size: 14px; font-weight: 680; }
.legacy-design-feature__copy li:last-child { border-bottom: 1px solid rgba(23, 23, 23, .12); }

.legacy-design-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legacy-design-gallery figure { margin: 0; overflow: hidden; border-radius: 18px; background: #f0ede8; }
.legacy-design-gallery__wide { grid-column: 1 / -1; }

.legacy-design-gallery img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}

.legacy-design-gallery__wide img { height: 570px; }
.legacy-design-gallery figure:hover img { transform: scale(1.018); }

.legacy-design-gallery figcaption {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4b5563;
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.legacy-design-gallery figcaption span { color: var(--design-accent); font-family: Georgia, Cambria, serif; }

.legacy-design-cta { padding: 88px 0; color: #fff; background: #1d1b19; }

.legacy-design-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.legacy-design-cta p { color: #d7aa70; }
.legacy-design-cta h2 { max-width: 760px; font-size: clamp(38px, 5vw, 58px); }

.legacy-design-footer { border-top: 1px solid var(--design-border); background: #fff; }

.legacy-design-footer__inner {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--design-muted);
  font-size: 12px;
}

.legacy-design-footer__inner p { margin: 0; text-align: center; }
.legacy-design-footer__inner > div { display: flex; justify-content: flex-end; gap: 18px; }
.legacy-design-footer__inner > div a { color: inherit; text-decoration: none; }

@media (max-width: 980px) {
  .legacy-design-header__inner { grid-template-columns: 1fr auto; }
  .legacy-design-nav { display: none; }
  .legacy-design-feature { grid-template-columns: 1fr; }
  .legacy-design-feature__copy { max-width: 720px; }
}

@media (max-width: 760px) {
  .legacy-design-shell { width: min(100% - 32px, 640px); }
  .legacy-design-quiet-link { display: none; }
  .legacy-design-hero { min-height: auto; padding: 72px 0 78px; }
  .legacy-design-building-mark { transform: scale(.85); margin-bottom: 17px; }
  .legacy-design-hero h1 { font-size: clamp(43px, 13vw, 64px); }
  .legacy-design-hero__lead { font-size: 19px; }
  .legacy-product-switcher { width: 100%; justify-content: flex-start; }
  .legacy-prompt { min-height: 88px; grid-template-columns: 42px 16px minmax(0, 1fr) 42px; border-radius: 21px; }
  .legacy-prompt__add, .legacy-prompt__send { width: 40px; height: 42px; border-radius: 12px; }
  .legacy-prompt__placeholder { font-size: 14px; }
  .legacy-design-section { padding: 78px 0; }
  .legacy-design-section__heading--row { grid-template-columns: 1fr; gap: 22px; }
  .legacy-design-steps { grid-template-columns: 1fr; }
  .legacy-design-steps li { min-height: 225px; }
  .legacy-design-feature__image img { min-height: 360px; }
  .legacy-design-gallery { grid-template-columns: 1fr; }
  .legacy-design-gallery__wide { grid-column: auto; }
  .legacy-design-gallery img, .legacy-design-gallery__wide img { height: 360px; }
  .legacy-design-cta__inner { grid-template-columns: 1fr; gap: 34px; }
  .legacy-design-footer__inner { padding: 30px 0; grid-template-columns: 1fr; justify-items: start; }
  .legacy-design-footer__inner p { text-align: left; }
  .legacy-design-footer__inner > div { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .legacy-design-header__inner { min-height: 70px; }
  .legacy-design-brand { font-size: 18px; }
  .legacy-design-header__actions .legacy-design-button { min-height: 40px; padding-inline: 13px; font-size: 12px; }
  .legacy-design-hero { padding-top: 58px; }
  .legacy-prompt { padding: 10px; grid-template-columns: 39px minmax(0, 1fr) 39px; gap: 8px; }
  .legacy-prompt__spark { display: none; }
  .legacy-prompt__placeholder { font-size: 12px; }
  .legacy-design-availability { align-items: flex-start; text-align: left; line-height: 1.5; }
  .legacy-design-section__heading h2, .legacy-design-feature__copy h2, .legacy-design-cta h2 { font-size: 38px; }
  .legacy-design-feature__image { border-radius: 20px 5px 20px 5px; }
  .legacy-design-feature__image img { min-height: 290px; }
  .legacy-design-gallery img, .legacy-design-gallery__wide img { height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  .legacy-design-glow,
  .legacy-design-gallery img { animation: none; transition: none; }
  .legacy-design-button { transition: none; }
}
