:root {
  --bg: #030303;
  --bg-soft: #080807;
  --panel: rgba(12, 12, 11, 0.76);
  --panel-border: rgba(201, 167, 106, 0.22);
  --text: #f4f1ea;
  --muted: #a9a49b;
  --muted-dark: #66605a;
  --blue: #c9a76a;
  --blue-deep: #6d5730;
  --blue-dark: #11100c;
  --accent: #e8d3a2;
  --shadow: 0 36px 120px rgba(201, 167, 106, 0.2);
}

@font-face {
  font-family: "Russo One";
  src: url("./RussoOne-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    "Russo One",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 78%, rgba(201, 167, 106, 0.14), transparent 34%),
    linear-gradient(135deg, #020202 0%, #080807 50%, #030303 100%);
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 24%, black, transparent 72%);
}

.custom-scrollbar {
  position: fixed;
  top: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 1000;
  width: 6px;
  pointer-events: none;
}

.custom-scrollbar-thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(232, 211, 162, 0.28);
  opacity: 0.9;
}

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

.page {
  width: 100%;
  padding: 4px 0 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 12px 28px;
}

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

.brand img {
  display: block;
  width: auto;
  height: 76px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav a {
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  text-shadow: 0 0 18px rgba(232, 211, 162, 0.42);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 52px;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 28px 0 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(34px, 5.3vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.subtitle {
  max-width: 650px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: clamp(10px, 1vw, 13px);
  line-height: 1.55;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-radius: 18px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

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

.button-primary {
  color: #090806;
  background: var(--accent);
  box-shadow: 0 18px 46px rgba(201, 167, 106, 0.26);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  transform: translateY(-22px);
}

.examples-carousel {
  position: relative;
  width: min(100%, 760px);
  height: min(48vw, 430px);
  min-height: 280px;
  max-height: calc(100vh - 390px);
  overflow: visible;
  contain: layout;
}

.example-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 100%;
  max-width: 48%;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: var(--shadow);
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.example-card.no-transition {
  transition: none;
}

.example-card-center {
  z-index: 3;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
}

.example-card-left {
  z-index: 2;
  opacity: 0.62;
  transform: translate3d(-118%, -50%, 0) rotate(-10deg) scale(0.86);
}

.example-card-right {
  z-index: 2;
  opacity: 0.62;
  transform: translate3d(18%, -50%, 0) rotate(10deg) scale(0.86);
}

.example-card-next {
  z-index: 1;
  opacity: 0;
  transform: translate3d(70%, -50%, 0) rotate(16deg) scale(0.78);
}

.example-card-exit-left {
  z-index: 1;
  opacity: 0;
  transform: translate3d(-148%, -50%, 0) rotate(-16deg) scale(0.78);
}

.examples-carousel:not(.carousel-revealed) .example-card {
  opacity: 0 !important;
}

.examples-carousel.carousel-revealed .example-card {
  transition:
    transform 0.62s ease,
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.examples-carousel.carousel-reveal-instant.carousel-revealed .example-card {
  transition:
    transform 0.62s ease,
    opacity 0.01ms linear !important;
}

.examples-carousel .example-card.no-transition {
  transition: none !important;
}

.marketplaces,
.process,
.why {
  width: min(1180px, calc(100% - 40px));
}

.marketplaces {
  margin: 10px auto 0;
  padding: 72px 0 30px;
}

.process {
  margin: 20px auto 0;
  padding: 72px 0 40px;
}

.why {
  margin: 20px auto 0;
  padding: 72px 0 80px;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

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

.marketplace-logo {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(232, 211, 162, 0.045), transparent 52%),
    rgba(12, 12, 11, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.marketplace-logo img {
  display: block;
  width: 190px;
  height: 190px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.marketplace-logo-yandex {
  transform: scale(1.18);
}

@media (hover: hover) and (pointer: fine) {
  .marketplace-logo:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 167, 106, 0.42);
    box-shadow:
      0 32px 88px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(232, 211, 162, 0.1);
  }

  .marketplace-logo:hover img:not(.marketplace-logo-yandex) {
    transform: scale(1.06);
  }

  .marketplace-logo:hover .marketplace-logo-yandex {
    transform: scale(1.24);
  }
}

.marketplaces-note {
  max-width: 900px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  text-align: center;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

.process-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(232, 211, 162, 0.045), transparent 52%),
    rgba(12, 12, 11, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.process-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  border: 1px solid rgba(201, 167, 106, 0.22);
  border-radius: 18px;
  background: rgba(232, 211, 162, 0.06);
  letter-spacing: 0.01em;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s ease,
    background 0.38s ease,
    color 0.38s ease;
}

.process-card h3 {
  margin: 34px 0 16px;
  color: var(--text);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  transition: color 0.35s ease;
}

.process-card-image {
  display: block;
  width: min(240px, 38vw);
  margin: 0;
  border: 1px solid rgba(201, 167, 106, 0.2);
  border-radius: 16px;
  object-fit: cover;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    border-color 0.42s ease;
}

@media (hover: hover) and (pointer: fine) {
  .process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 167, 106, 0.42);
    box-shadow:
      0 32px 88px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(232, 211, 162, 0.1);
  }

  .process-card:hover .process-number {
    transform: scale(1.06);
    border-color: rgba(201, 167, 106, 0.48);
    background: rgba(232, 211, 162, 0.14);
    color: var(--accent);
  }

  .process-card:hover h3 {
    color: var(--accent);
  }

  .process-card:hover .process-card-image {
    transform: scale(1.05) translateY(-3px);
    border-color: rgba(232, 211, 162, 0.35);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  }
}

.process-card-layout > picture {
  display: contents;
}

.process-card-image-stack {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
}

.process-card-image-stack .process-card-image {
  width: min(210px, 34vw);
}

.process-card-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.process-card-content {
  flex: 1 1 auto;
  min-width: 0;
}

.process-card-with-image h3 {
  margin-top: 14px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

.faq {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 72px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: 18px;
  background: rgba(12, 12, 11, 0.7);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 16px 64px 16px 20px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.2;
  transition: color 0.32s ease;
}

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

.faq-item summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 211, 162, 0.07);
  border: 1px solid rgba(201, 167, 106, 0.26);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%);
  transition:
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  /* центр круга: right 14px + радиус 20px; центр квадрата шеврона совпадает с центром круга */
  right: calc(14px + 20px - 4.5px);
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(232, 211, 162, 0.92);
  border-bottom: 2px solid rgba(232, 211, 162, 0.92);
  border-radius: 0 0 1px 0;
  /* геометрический центр ≠ оптический: «вниз» чуть поднять, «вверх» — чуть опустить */
  transform: translateY(calc(-50% - 1.25px)) rotate(45deg);
  transform-origin: center;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(calc(-50% + 1.25px)) rotate(-135deg);
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--muted);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 167, 106, 0.4);
    box-shadow:
      0 26px 72px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(232, 211, 162, 0.1);
  }

  .faq-item:hover summary {
    color: var(--accent);
  }

  .faq-item:hover summary::before {
    background: rgba(232, 211, 162, 0.14);
    border-color: rgba(201, 167, 106, 0.48);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.06);
  }

  .faq-item:hover summary::after {
    border-color: var(--accent);
  }
}

.pricing-faq {
  margin-top: 18px;
  margin-bottom: 88px;
}

.why-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 211, 162, 0.08), transparent 45%),
    rgba(12, 12, 11, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.why-card-wide {
  grid-column: 1 / -1;
  min-height: 230px;
}

.why-card-wide h3 {
  max-width: none;
  font-size: clamp(32px, 4.8vw, 54px);
  white-space: nowrap;
}

.why-card h3 {
  max-width: 780px;
  margin: 0 auto 18px;
  color: var(--text);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-align: center;
  transition: color 0.35s ease;
}

.why-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.45;
  transition: color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 167, 106, 0.42);
    box-shadow:
      0 32px 88px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(232, 211, 162, 0.1);
  }

  .why-card:hover h3 {
    color: var(--accent);
  }

  .why-card:hover p {
    color: rgba(244, 241, 234, 0.88);
  }
}

.footer {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 10px 0 0;
  padding: 26px max(28px, calc((100% - 1180px) / 2)) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 211, 162, 0.08), transparent 38%),
    #111111;
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

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

.footer-brand img {
  display: block;
  width: auto;
  height: 82px;
  object-fit: contain;
}

.footer-brand-wrap p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-docs h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.footer-docs nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.footer-docs a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.footer-docs a:hover {
  color: var(--text);
  text-shadow: 0 0 18px rgba(232, 211, 162, 0.36);
}

.pricing-page {
  min-height: 100vh;
  padding-bottom: 0;
}

.pricing {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.pricing-heading {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.pricing-heading h1 {
  margin: 0;
  font-size: clamp(58px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.pricing-heading p {
  max-width: 840px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.45;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 211, 162, 0.06), transparent 45%),
    rgba(12, 12, 11, 0.68);
}

.pricing-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 22px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 167, 106, 0.12);
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  width: 28%;
  text-align: left;
}

.pricing-table th {
  color: var(--text);
  font-weight: 400;
  vertical-align: top;
}

.pricing-table th span {
  display: block;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
}

.pricing-table th strong {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
}

.pricing-table td {
  color: var(--muted);
  font-size: 17px;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 1px solid rgba(201, 167, 106, 0.12);
}

.pricing-table tfoot td {
  border-bottom: 0;
}

.pricing-table .button {
  min-height: 48px;
  width: 100%;
  padding: 0 18px;
  font-size: 13px;
}

.yes {
  color: var(--accent);
}

.no {
  color: var(--muted);
  opacity: 0.7;
}

.workspace-page {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.workspace {
  display: grid;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
  place-items: center;
}

.workspace-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 0;
  width: 100%;
  min-height: 100vh;
  transition: grid-template-columns 0.24s ease;
}

.workspace-editor.is-sidebar-collapsed {
  grid-template-columns: minmax(0, 1fr) 0;
}

.workspace-editor.is-sidebar-hidden {
  grid-template-columns: minmax(0, 1fr) 0;
}

.workspace-canvas {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.045), transparent 38%),
    linear-gradient(135deg, #090a0c 0%, #111317 52%, #07080a 100%);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.32);
}

.workspace-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 400vmax;
  height: 400vmax;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  will-change: transform;
}

.workspace-canvas.is-panning {
  cursor: grabbing;
}

.workspace-canvas.is-selecting {
  cursor: crosshair;
}

.workspace-canvas.is-generating .result-frame,
.workspace-canvas.is-generating .workspace-toolbar {
  opacity: 0;
  pointer-events: none;
}

.workspace-generation-loader {
  position: absolute;
  z-index: 4;
  display: grid;
  width: min(420px, calc(100% - 40px));
  justify-items: center;
  padding: 34px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(10, 11, 13, 0.78);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.workspace-generation-loader[hidden] {
  display: none;
}

.workspace-loader-orbit {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border: 1px solid rgba(232, 211, 162, 0.28);
  border-top-color: var(--accent);
  border-right-color: rgba(232, 211, 162, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(232, 211, 162, 0.08);
  animation: loader-spin 0.9s linear infinite;
}

.workspace-generation-loader h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.workspace-generation-loader p {
  max-width: 330px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.selection-box {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(245, 245, 245, 0.92);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(3, 3, 3, 0.55);
}

.selection-box[hidden] {
  display: none;
}

.result-frame {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 34px;
  transform-origin: center;
  will-change: transform;
}

.result-frame.is-updating .generation-preview {
  animation: result-pulse 0.5s ease;
}

.slides-track {
  display: flex;
  align-items: center;
  gap: 34px;
}

.generation-preview {
  display: block;
  flex: 0 0 auto;
  width: min(390px, 46vw);
  max-height: min(650px, calc(100vh - 150px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  object-fit: contain;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  user-select: none;
}

.generation-placeholder {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: min(390px, 46vw);
  aspect-ratio: 3 / 4;
  max-height: min(650px, calc(100vh - 150px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 11, 13, 0.62);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.generation-placeholder .workspace-loader-orbit {
  width: 58px;
  height: 58px;
  margin: 0;
}

.generation-preview.is-selected {
  border-color: rgba(255, 255, 255, 0.72);
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 6px;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.07),
    0 0 28px rgba(255, 255, 255, 0.18),
    0 26px 80px rgba(0, 0, 0, 0.42);
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: calc(100% + 12px);
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  color: var(--text);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  content: attr(data-tooltip);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(10, 11, 13, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

[data-tooltip][data-tooltip-placement="bottom"]::after {
  top: calc(100% + 12px);
  bottom: auto;
  transform: translateX(-50%) translateY(-4px);
}

[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.canvas-add {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #090806;
  background: var(--accent);
  box-shadow: 0 18px 45px rgba(201, 167, 106, 0.34);
  font-family: Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: scale(var(--button-scale, 1));
  transform-origin: center;
}

.canvas-add.is-hidden {
  display: none !important;
}

.workspace-next-inline {
  display: grid;
  position: relative;
  flex: 0 0 360px;
  width: 360px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}

.workspace-next-inline[hidden] {
  display: none !important;
}

.workspace-next-inline h3 {
  margin: 0 28px 8px 0;
  color: #f4f1ea;
  font-size: 14px;
  line-height: 1.35;
}

.workspace-next-inline textarea {
  width: 100%;
  min-height: 98px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text);
  background: rgba(6, 6, 7, 0.78);
  font-family: inherit;
  font-size: 14px;
  resize: none;
}

.workspace-next-inline__actions {
  display: grid;
  margin-top: 10px;
}

.workspace-next-inline__submit {
  min-height: 42px;
  color: #090806 !important;
  background: var(--accent) !important;
  box-shadow: none;
}

.workspace-next-inline__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  color: rgba(244, 241, 234, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.workspace-next-inline__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.result-frame.is-empty {
  background: transparent;
  box-shadow: none;
}

.result-frame.is-empty .generation-preview {
  opacity: 0;
  pointer-events: none;
}

.workspace-toolbar {
  position: absolute;
  right: 50%;
  bottom: 24px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(18, 18, 20, 0.88);
  transform: translateX(50%);
}

.history-controls {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(8, 9, 11, 0.76);
  backdrop-filter: blur(12px);
}

.history-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: rgba(244, 241, 234, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.history-button:disabled {
  cursor: default;
  opacity: 0.42;
}

.history-home img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.history-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.14);
}

.toolbar-button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: #f4f1ea;
  background: rgba(255, 255, 255, 0.08);
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
}

.download-button {
  color: #090806;
  background: var(--accent);
}

.edit-card-button {
  width: 100%;
  min-height: 42px;
  margin-top: 2px;
  color: #090806;
  background: var(--accent);
}

.edit-card-button:disabled {
  cursor: default;
}

.toolbar-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.toolbar-button.regenerate-button:disabled {
  cursor: default;
  box-shadow: none;
}

.zoom-controls {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(18, 18, 20, 0.88);
}

.zoom-controls button,
.sidebar-title-row button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-family: Arial, sans-serif;
  cursor: pointer;
}

.sidebar-title-row .filter-button {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: transparent;
}

.filter-button img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.filter-button:disabled {
  cursor: default;
  opacity: 0.38;
}

.correction-panel {
  display: grid;
  gap: 14px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(15, 14, 16, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
}

.correction-panel[hidden] {
  display: none;
}

.correction-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.correction-heading h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}

.correction-close {
  width: 28px;
  height: 28px;
  border: 0;
  color: var(--text);
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.correction-control {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-size: 14px;
}

.correction-control input {
  width: 100%;
  accent-color: #f4f4f5;
  cursor: pointer;
}

.correction-reset {
  min-height: 36px;
  border: 0;
  border-radius: 9px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  font-family: inherit;
  cursor: pointer;
}

.zoom-controls span {
  min-width: 42px;
  color: var(--text);
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-align: center;
}

.editor-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.045), transparent 42%),
    linear-gradient(180deg, #14161a 0%, #0c0d10 100%);
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.workspace-editor.is-sidebar-collapsed .editor-sidebar,
.workspace-editor.is-sidebar-hidden .editor-sidebar {
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
}

.sidebar-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-block {
  display: grid;
  gap: 8px;
}

.sidebar-block h2,
.sidebar-block h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}

.sidebar-block p {
  margin: 0;
  color: rgba(244, 241, 234, 0.58);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.35;
}

.sidebar-block textarea {
  min-height: 150px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text);
  background: rgba(12, 12, 14, 0.72);
  font-family: inherit;
  font-size: 14px;
  resize: none;
}

.sidebar-submit {
  width: 100%;
  margin-top: auto;
  border: 0;
  cursor: pointer;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes result-pulse {
  0% {
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  }

  45% {
    box-shadow:
      0 0 0 8px rgba(232, 211, 162, 0.16),
      0 26px 80px rgba(0, 0, 0, 0.42);
  }

  100% {
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  }
}

.create-page {
  min-height: 100vh;
  padding-bottom: 70px;
}

.creator {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 20px;
}

.creator-heading {
  max-width: 920px;
  margin: 0 auto 38px;
  text-align: center;
}

.creator-heading span {
  color: var(--blue);
  font-size: 18px;
}

.creator-heading h1 {
  margin: 0;
  font-size: clamp(50px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.creator-heading p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.45;
}

.creator-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 28px;
  padding: 18px;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 211, 162, 0.08), transparent 44%),
    rgba(12, 12, 11, 0.7);
  box-shadow: 0 36px 120px rgba(201, 167, 106, 0.12);
}

.creator-form::before {
  position: absolute;
  z-index: -1;
  inset: 12% 14% -8%;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 167, 106, 0.18), transparent 68%);
  filter: blur(44px);
}

.creator-column {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 16px;
}

.creator-column-title {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}

.upload-panel {
  display: flex;
  min-height: 430px;
  height: 430px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  border: 1px dashed rgba(232, 211, 162, 0.34);
  border-radius: 26px;
  background: rgba(3, 3, 3, 0.46);
}

.upload-panel.has-files {
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  padding: 0;
}

.upload-panel.has-files .upload-icon,
.upload-panel.has-files .upload-help {
  display: none;
}

.upload-panel input {
  display: none;
}

.upload-icon {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #090806;
  font-size: 52px;
  border-radius: 24px;
  background: var(--accent);
}

.upload-panel strong {
  color: var(--text);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.upload-panel small {
  max-width: 360px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.upload-preview {
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
  gap: 2px;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
}

.upload-panel.has-files .upload-preview {
  display: grid;
}

.upload-preview-item {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.upload-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
}

.upload-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #090806;
  font: inherit;
  font-size: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

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

.field {
  display: grid;
  min-height: 430px;
}

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

.field span {
  color: var(--text);
}

.field small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  border: 1px solid rgba(201, 167, 106, 0.18);
  border-radius: 18px;
  outline: none;
  background: rgba(3, 3, 3, 0.58);
}

.field input,
.field select {
  min-height: 58px;
  padding: 0 18px;
}

.field textarea {
  min-height: 430px;
  height: 100%;
  overflow: hidden;
  resize: none;
  padding: 18px;
  font-size: 19px;
  line-height: 1.45;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(169, 164, 155, 0.72);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(232, 211, 162, 0.58);
  box-shadow: 0 0 0 4px rgba(232, 211, 162, 0.08);
}

.creator-submit {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 520px;
  margin: 8px auto 0;
  border: 0;
  cursor: pointer;
}

.tools-page .tools-section {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.tools-heading {
  margin-bottom: 36px;
  text-align: center;
}

.tools-heading h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.tools-lead {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.45;
}

.tools-grid {
  display: grid;
  gap: 16px;
}

.tools-card {
  display: grid;
  gap: 10px;
  padding: 26px 28px;
  border: 1px solid rgba(201, 167, 106, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(232, 211, 162, 0.06), transparent 48%),
    rgba(12, 12, 11, 0.65);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.tools-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.tools-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.tools-card-cta {
  margin-top: 4px;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.04em;
}

@media (hover: hover) and (pointer: fine) {
  .tools-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 167, 106, 0.42);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(232, 211, 162, 0.1);
  }

  .tools-card:hover h2 {
    color: var(--accent);
  }
}

.background-remover {
  display: grid;
  width: min(980px, calc(100% - 40px));
  min-height: calc(100vh - 100px);
  align-content: center;
  gap: 30px;
  margin: 0 auto;
  padding: 64px 0;
}

.background-heading {
  text-align: center;
}

.background-heading h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.94;
}

.background-heading p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.background-dropzone {
  position: relative;
  display: grid;
  min-height: 520px;
  cursor: pointer;
  place-items: center;
  overflow: hidden;
  padding: 36px;
  text-align: center;
  border: 1px dashed rgba(232, 211, 162, 0.34);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 211, 162, 0.1), transparent 42%),
    rgba(12, 12, 11, 0.68);
  box-shadow: 0 36px 120px rgba(201, 167, 106, 0.12);
}

.background-dropzone input {
  display: none;
}

.background-upload-icon {
  display: inline-flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #090806;
  font-size: 56px;
  border-radius: 26px;
  background: var(--accent);
}

.background-dropzone strong {
  color: var(--text);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
}

.background-dropzone small {
  margin-top: 14px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.background-preview {
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.04);
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%);
  background-position:
    0 0,
    0 12px,
    12px -12px,
    -12px 0;
  background-size: 24px 24px;
}

.background-preview[hidden] {
  display: none;
}

.background-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.26));
}

.background-dropzone.has-result .background-upload-icon,
.background-dropzone.has-result strong,
.background-dropzone.has-result small {
  display: none;
}

.background-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: rgba(3, 3, 3, 0.58);
  backdrop-filter: blur(10px);
}

.background-loader[hidden] {
  display: none;
}

.background-loader span {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(232, 211, 162, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: loader-spin 0.9s linear infinite;
}

.background-loader p {
  margin: 0;
  color: var(--text);
  font-size: 22px;
}

.background-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.background-actions[hidden] {
  display: none;
}

.background-reset {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
  }

  .workspace {
    min-height: 100vh;
  }

  .workspace-editor {
    grid-template-columns: 1fr;
  }

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

  .editor-sidebar {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 1180px);
    padding-top: 18px;
  }

  .workspace-page {
    width: 100%;
    padding-top: 0;
  }

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

  .nav {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .subtitle {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .workspace-canvas {
    min-height: 560px;
  }

  .generation-preview {
    width: min(320px, 82vw);
  }

  .canvas-add {
    top: 50%;
    right: -54px;
    bottom: auto;
  }

  .workspace-toolbar {
    right: 14px;
    left: 14px;
    justify-content: center;
    transform: none;
  }

  .toolbar-button {
    padding: 0 10px;
    font-size: 11px;
  }

  .marketplaces,
  .process,
  .why,
  .pricing,
  .workspace {
    width: min(100% - 28px, 1180px);
  }

  .workspace-page .workspace {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    padding-right: 28px;
    padding-left: 28px;
  }

  .footer-docs nav {
    grid-template-columns: 1fr;
  }

  .marketplaces {
    padding-top: 44px;
  }

  .marketplaces-list {
    grid-template-columns: 1fr;
  }

  .marketplace-logo {
    min-height: 130px;
  }

  .process,
  .why {
    padding-top: 44px;
  }

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

  .process-card,
  .why-card {
    min-height: auto;
  }

  .process-card-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .process-card-image {
    width: 100%;
  }

  .process-card-image-stack {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card-image-stack .process-card-image {
    width: 100%;
  }

  .creator {
    width: min(100% - 28px, 1280px);
    padding-top: 44px;
  }

  .creator-form {
    grid-template-columns: 1fr;
  }

  .creator-column {
    min-height: auto;
  }

  .upload-panel {
    min-height: 360px;
    height: 360px;
  }

  .creator-submit {
    grid-column: auto;
  }

  .creator-fields {
    grid-template-columns: 1fr;
  }

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

  .why-card-wide {
    grid-column: auto;
  }
}

