:root {
  color-scheme: light;
  --bg: #faf8f5;
  --bg-soft: #f4f1ec;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #171717;
  --text-soft: #66625e;
  --muted: #918b84;
  --accent: #c89a5b;
  --accent-soft: #e8d4b8;
  --line: rgba(23, 23, 23, 0.1);
  --line-light: rgba(255, 255, 255, 0.68);
  --shadow-soft: 0 24px 80px rgba(43, 36, 30, 0.08), 0 4px 16px rgba(43, 36, 30, 0.04);
  --shadow-floating: 0 32px 100px rgba(43, 36, 30, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --max: 1320px;
  --font-body: "Segoe UI", -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, Arial, sans-serif;
  --font-display: "Segoe UI", -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, Arial, sans-serif;
  --font-ui: "Segoe UI", -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(250, 248, 245, 0.86), #faf8f5 22%),
    radial-gradient(circle at 84% 8%, rgba(200, 154, 91, 0.13), transparent 28%),
    var(--bg);
  color: var(--text);
  font: 16px/1.55 var(--font-body);
  font-weight: 400;
  letter-spacing: -0.012em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.app-loading main,
body.app-loading .footer {
  visibility: hidden;
}

body.app-splash-exit main,
body.app-splash-exit .footer {
  visibility: visible;
}

.app-splash {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92), rgba(250, 248, 245, 0.98) 42%, rgba(244, 239, 232, 1) 100%),
    linear-gradient(180deg, rgba(250, 248, 245, 0.98), rgba(244, 239, 232, 0.98));
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease, visibility 700ms ease;
}

body.app-loading .app-splash,
body.app-splash-visible .app-splash {
  opacity: 1;
  visibility: visible;
}

body.app-loaded .app-splash {
  opacity: 0;
  visibility: hidden;
}

.app-splash-inner {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  transform: translateY(8px) scale(0.985);
  transform-origin: center;
  filter: drop-shadow(0 18px 44px rgba(34, 28, 22, 0.1));
  will-change: transform, opacity;
}

.app-splash-mark {
  width: clamp(58px, 6vw, 74px);
  height: clamp(58px, 6vw, 74px);
  flex: 0 0 auto;
  opacity: 0;
  transform: scale(0.9);
  animation: splashMarkIn 740ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.app-splash-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.app-splash-wordmark {
  --splash-wordmark-width: clamp(168px, 24vw, 310px);
  width: var(--splash-wordmark-width);
  max-width: 0;
  overflow: hidden;
  opacity: 1;
  animation: splashWordSlotReveal 920ms cubic-bezier(0.22, 1, 0.36, 1) 320ms forwards;
}

.app-splash-wordmark img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateX(-34px);
  transform-origin: left center;
  opacity: 0;
  animation: splashWordReveal 920ms cubic-bezier(0.22, 1, 0.36, 1) 320ms forwards;
}

body.app-splash-exit .app-splash {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.72), rgba(250, 248, 245, 0.54) 42%, rgba(244, 239, 232, 0.36) 100%),
    linear-gradient(180deg, rgba(250, 248, 245, 0.64), rgba(244, 239, 232, 0.4));
}

body.app-splash-exit .app-splash-inner {
  animation: splashFlyToHeader 780ms cubic-bezier(0.68, -0.02, 0.22, 1) forwards;
}

body.app-splash-exit .app-splash-mark,
body.app-splash-exit .app-splash-wordmark,
body.app-splash-exit .app-splash-wordmark img {
  animation-play-state: paused;
}

body.menu-open {
  overflow: hidden;
}

@keyframes splashMarkIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes splashWordReveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-52px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes splashWordSlotReveal {
  0% {
    max-width: 0;
  }
  100% {
    max-width: var(--splash-wordmark-width);
  }
}

@keyframes splashFlyToHeader {
  0% {
    opacity: 1;
    transform: translateY(8px) scale(0.985);
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate(
        calc(-50vw + var(--splash-target-x, 132px)),
        calc(-50vh + var(--splash-target-y, 44px))
      )
      scale(var(--splash-target-scale, 0.46));
  }
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 clamp(28px, 3vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #171717;
  background: rgba(250, 246, 239, 0.58);
  border: 0;
  border-bottom: 1px solid rgba(85, 55, 30, 0.12);
  border-radius: 0;
  backdrop-filter: blur(26px) saturate(130%);
  -webkit-backdrop-filter: blur(26px) saturate(130%);
  transform: none;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.topbar.is-light {
  color: #171717;
  background: rgba(250, 246, 239, 0.76);
  border-color: rgba(85, 55, 30, 0.12);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo img {
  width: 184px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-block;
  border: 1.5px solid var(--accent);
  border-radius: 11px;
  position: relative;
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.brand-mark::after {
  transform: rotate(180deg);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 1.42rem;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.brand small {
  color: currentColor;
  opacity: 0.68;
  font-size: 0.78rem;
}

.brand.compact {
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a {
  opacity: 0.88;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.nav-login-link {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar .pill-button.secondary {
  min-height: 46px;
  padding-inline: 34px;
  color: #171717;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(120, 75, 34, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 30px rgba(120, 75, 34, 0.08);
}

.pill-button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

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

.pill-button:focus-visible,
.icon-button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(200, 154, 91, 0.38);
  outline-offset: 3px;
}

.pill-button.primary {
  color: #fff;
  background: #070707;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.pill-button.primary:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.23), 0 0 0 6px rgba(200, 154, 91, 0.08);
}

.pill-button.secondary {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  color: var(--text);
}

.pill-button.glass,
.pill-button.ghost {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.pill-button.ghost {
  color: var(--text);
  background: transparent;
  border-color: transparent;
}

.pill-button.danger {
  color: #a33b34;
  background: rgba(255, 239, 237, 0.92);
  border: 1px solid rgba(163, 59, 52, 0.22);
}

.pill-button.danger:hover {
  background: rgba(255, 231, 228, 0.98);
  border-color: rgba(163, 59, 52, 0.34);
}

.pill-button.large {
  min-height: 60px;
  padding-inline: 30px;
  font-size: 1.02rem;
}

.pill-button.small {
  min-height: 40px;
  padding-inline: 16px;
}

.icon-button {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.menu-button {
  flex-direction: column;
  gap: 5px;
}

.hero-section {
  min-height: 100svh;
  max-height: 900px;
  position: relative;
  display: grid;
  overflow: hidden;
  color: #fff7ee;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  inset: 0;
  z-index: 0;
  height: 100%;
  object-fit: cover;
  object-position: 84% 46%;
  transform: translateY(62px);
  transform-origin: center center;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(40, 28, 22, 0.16) 0%, rgba(40, 28, 22, 0.08) 44%, rgba(40, 28, 22, 0) 72%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.16) 0%, rgba(244, 224, 194, 0.02) 52%, rgba(54, 32, 20, 0.14) 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 88px;
  bottom: 0;
  left: 0;
  width: min(51vw, 760px);
  pointer-events: none;
  border-right: 1px solid rgba(255, 238, 213, 0.14);
  background:
    linear-gradient(90deg, rgba(29, 23, 20, 0.72) 0%, rgba(38, 29, 24, 0.62) 58%, rgba(38, 29, 24, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 237, 211, 0.1), rgba(171, 112, 61, 0.08));
  box-shadow:
    inset -1px 0 0 rgba(255, 255, 255, 0.08),
    34px 0 88px rgba(41, 28, 20, 0.16);
  backdrop-filter: blur(22px) saturate(118%);
  -webkit-backdrop-filter: blur(22px) saturate(118%);
}

.hero-content {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  min-height: min(900px, 100svh);
  padding: 136px 0 84px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 650px);
  align-items: center;
  justify-content: start;
  gap: 58px;
}

.hero-copy {
  max-width: 620px;
  padding-top: 0;
  display: grid;
  align-content: center;
  gap: 16px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 5.25vw, 5.55rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
  max-width: 620px;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 em {
  font-style: normal;
  color: #d7b083;
}

.hero-kicker {
  width: fit-content;
  margin: 0;
  color: rgba(236, 205, 166, 0.82);
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 0.88vw, 0.96rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.hero-title {
  color: #fff8ef;
  max-width: 610px;
  font-family: var(--font-display);
  font-size: clamp(3.32rem, 4.28vw, 4.92rem);
  line-height: 0.92;
  font-weight: 580;
  letter-spacing: -0.052em;
  text-wrap: balance;
  text-shadow:
    0 28px 72px rgba(0, 0, 0, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-title span {
  white-space: normal;
}

.hero-title .title-soft {
  margin-bottom: 10px;
  color: rgba(64, 45, 34, 0.86);
  font-size: 0.64em;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-title .title-accent {
  width: fit-content;
  margin-top: 0;
  position: relative;
  color: #6d421f;
  background: none;
  font-weight: 700;
  letter-spacing: -0.04em;
  -webkit-text-fill-color: currentColor;
  text-shadow:
    0 1px 0 rgba(255, 246, 234, 0.58),
    0 16px 34px rgba(122, 74, 34, 0.16);
}

.hero-title .title-accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.02em;
  right: -0.02em;
  bottom: 0.05em;
  height: 0.22em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 201, 145, 0.26), rgba(218, 176, 126, 0.1));
}

.hero-title .title-emphasis {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.01em 0.2em 0.08em 0.24em;
  margin: 0.1em 0.04em 0.02em 0.14em;
  border-radius: 0.28em;
  color: #fff7ef;
  font-size: 0.82em;
  letter-spacing: -0.055em;
  transform: rotate(-4.1deg) translate(0.12em, 0.16em);
  transform-origin: left center;
  background:
    linear-gradient(135deg, rgba(255, 246, 234, 0.08) 0%, rgba(255, 246, 234, 0) 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 2px, rgba(255, 255, 255, 0) 2px 6px),
    linear-gradient(180deg, rgba(83, 58, 41, 0.9), rgba(36, 25, 18, 0.92));
  box-shadow:
    0 16px 34px rgba(77, 52, 35, 0.18),
    inset 0 1px 0 rgba(255, 248, 238, 0.18),
    inset 0 -1px 0 rgba(20, 13, 9, 0.18),
    0 0 0 1px rgba(83, 58, 41, 0.14);
  text-shadow: 0 1px 0 rgba(255, 252, 245, 0.08);
}

.hero-title .title-emphasis::after {
  content: "";
  position: absolute;
  width: 0.18em;
  height: 0.18em;
  top: 0.16em;
  right: 0.18em;
  border-radius: 999px;
  background: rgba(246, 235, 219, 0.92);
  box-shadow:
    0 0 0 0.045em rgba(120, 85, 59, 0.42),
    inset 0 0 0 0.03em rgba(255, 255, 255, 0.42);
  z-index: -1;
}

.hero-title .title-emphasis::before {
  content: "";
  position: absolute;
  width: 0.94em;
  height: 0.58em;
  top: -0.25em;
  right: -0.1em;
  border-top: 0.05em solid rgba(243, 226, 204, 0.74);
  border-right: 0.05em solid rgba(243, 226, 204, 0.74);
  border-radius: 0 0.62em 0 0;
  transform: rotate(17deg);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    inset -0.05em 0 0 rgba(255, 245, 232, 0.08),
    0.1em -0.03em 0 -0.02em rgba(243, 226, 204, 0.18),
    0.24em 0.05em 0 -0.04em rgba(243, 226, 204, 0.24);
}

.hero-title .title-emphasis-warm {
  color: #4a3120;
  background:
    linear-gradient(180deg, rgba(255, 245, 230, 0.92), rgba(241, 211, 173, 0.88));
  box-shadow:
    0 18px 36px rgba(113, 76, 40, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 0 0 1px rgba(255, 239, 214, 0.22);
  text-shadow: 0 1px 0 rgba(255, 249, 241, 0.26);
}

.business-hero-copy .title-emphasis-warm {
  margin-top: 0.2em;
  transform: rotate(-4deg) translateY(0.18em);
}

.business-hero-copy .title-emphasis-warm::after {
  top: 0.15em;
  right: 0.2em;
  width: 0.17em;
  height: 0.17em;
  background: rgba(104, 75, 52, 0.2);
  box-shadow:
    0 0 0 0.05em rgba(104, 75, 52, 0.36),
    inset 0 0 0 0.025em rgba(255, 255, 255, 0.42);
  z-index: 1;
}

.business-hero-copy .title-emphasis-warm::before {
  width: 0.88em;
  height: 0.52em;
  top: -0.22em;
  right: -0.02em;
  border: 0;
  border-top: 0.045em solid rgba(116, 86, 63, 0.56);
  border-right: 0.045em solid rgba(116, 86, 63, 0.56);
  border-radius: 0 0.52em 0 0;
  transform: rotate(12deg);
  box-shadow:
    inset -0.05em 0 0 rgba(116, 86, 63, 0.06),
    0.1em -0.03em 0 -0.02em rgba(116, 86, 63, 0.18),
    0.18em 0.03em 0 -0.03em rgba(116, 86, 63, 0.2);
}

.hero-subtitle {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 245, 232, 0.66);
  font-family: var(--font-body);
  font-size: clamp(0.84rem, 0.9vw, 0.96rem);
  line-height: 1.48;
  letter-spacing: -0.018em;
  font-weight: 500;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hero-business-subtitle {
  white-space: nowrap;
}

#hero .hero-business-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  align-items: baseline;
}

.hero-business-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  color: #f0c994;
  border-bottom: 1px solid rgba(240, 201, 148, 0.44);
  font-weight: 650;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-business-link:hover {
  color: #fff1d8;
  border-color: rgba(255, 241, 216, 0.68);
  transform: translateX(2px);
}

.hero-business-link:focus-visible {
  outline: 3px solid rgba(200, 154, 91, 0.38);
  outline-offset: 5px;
  border-radius: 999px;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-steps {
  width: fit-content;
  margin-top: 28px;
  padding: 10px 18px 10px 14px;
  display: flex;
  gap: 12px;
  border: 1px solid rgba(255, 238, 213, 0.16);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 80px rgba(0, 0, 0, 0.16);
}

.hero-step {
  min-height: 88px;
  padding: 0 12px 0 0;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.hero-step span {
  width: 88px;
  height: 88px;
  overflow: visible;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 252, 245, 0.96), rgba(246, 231, 210, 0.92) 62%, rgba(226, 201, 170, 0.76)),
    #f4e6d3;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 10px 28px rgba(0, 0, 0, 0.1);
  transform: none;
  transition: transform 180ms ease;
}

.hero-step span img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.business-hero-copy .hero-step .business-hero-step-icon {
  transform: scale(var(--business-hero-step-icon-scale, 1));
  transform-origin: center;
}

.business-hero-step-icon-product {
  --business-hero-step-icon-scale: 1.04;
}

.business-hero-step-icon-model {
  --business-hero-step-icon-scale: 1.42;
}

.business-hero-step-icon-result {
  --business-hero-step-icon-scale: 0.9;
}

.hero-step:hover span {
  transform: translateY(-3px) scale(1.04);
}

.hero-step p {
  margin: 0;
  color: rgba(255, 245, 232, 0.64);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-start-button {
  width: 286px;
  min-height: 60px;
  padding: 0 28px 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  color: #231811;
  background: linear-gradient(180deg, #fff1dc 0%, #dfbd8f 100%);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 0 0 1px rgba(255, 230, 194, 0.36);
  font-family: var(--font-ui);
  font-size: 1.12rem;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-start-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 0 0 1px rgba(255, 230, 194, 0.52);
}

.hero-start-button span {
  font-size: 1.65rem;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.hero-panel {
  width: 224px;
  min-height: 0;
  justify-self: end;
  align-self: start;
  margin-top: 390px;
  margin-right: 34px;
  padding: 10px;
  transform: none;
  display: grid;
  gap: 9px;
  align-content: start;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(93, 70, 55, 0.5), rgba(20, 12, 8, 0.62)),
    rgba(35, 28, 23, 0.26);
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 28px 80px rgba(0, 0, 0, 0.3);
}

.scan-line {
  width: 168px;
  padding: 9px 12px 10px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(15, 11, 8, 0.28);
}

.scan-line span {
  width: 118px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.scan-line span::before {
  content: "";
  display: block;
  width: 32px;
  height: 100%;
  border-radius: inherit;
  background: #d6a86e;
  animation: scan 2.4s ease-in-out infinite;
}

.hero-mode-tabs {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-mode-tabs button {
  min-height: 58px;
  padding: 7px 9px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hero-mode-tabs button.active {
  color: #fff;
  border-color: rgba(226, 184, 128, 0.72);
  background:
    linear-gradient(180deg, rgba(216, 176, 131, 0.24), rgba(255, 255, 255, 0.065)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.12);
}

.hero-mode-tabs button:hover {
  transform: translateY(-1px);
  border-color: rgba(226, 184, 128, 0.45);
}

.hero-mode-tabs button > span:not(.hero-mode-icon) {
  display: grid;
  gap: 4px;
}

.hero-mode-tabs strong {
  font-size: 0.82rem;
  line-height: 1.12;
}

.hero-mode-tabs small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  line-height: 1.18;
}

.hero-mode-icon {
  width: 56px;
  height: 56px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-mode-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.hero-mode-note {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-mode-note > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  line-height: 1.35;
}

.section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  scroll-margin-top: 108px;
}

.section {
  padding: 128px 0 0;
}

.mobile-proof-section {
  display: none;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h1,
.section-heading h2,
.route-heading h1,
.empty-route h1 {
  letter-spacing: -0.045em;
}

.section-heading h2 {
  line-height: 0.98;
}

.try-section {
  position: relative;
}

.try-section::before {
  content: "";
  position: absolute;
  inset: 48px -80px auto;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(200, 154, 91, 0.12), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.9), transparent 28%);
  filter: blur(10px);
  z-index: -1;
}

.try-section .section-heading {
  margin-bottom: 32px;
}

.try-section .section-heading .eyebrow {
  margin-bottom: 8px;
  color: #b27835;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.try-section .section-heading h2 {
  max-width: 760px;
  margin: 0 auto 8px;
  font-size: clamp(2.62rem, 3.8vw, 3.78rem);
  line-height: 0.98;
}

.try-section .section-heading h2 span {
  display: block;
  color: #ad783c;
}

.try-section .section-heading p:not(.eyebrow) {
  color: #4d4843;
  font-size: 1.12rem;
  line-height: 1.52;
  letter-spacing: -0.02em;
}

.try-on-form {
  display: grid;
  gap: 22px;
}

.section-heading p:not(.eyebrow),
.faq-intro p,
.final-cta p {
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.52;
  letter-spacing: -0.02em;
}

.try-intro-panel {
  min-height: 520px;
  padding: 38px 46px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(430px, 1.18fr) minmax(250px, 0.68fr);
  gap: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 28px 90px rgba(44, 35, 27, 0.08);
  backdrop-filter: blur(22px) saturate(132%);
  -webkit-backdrop-filter: blur(22px) saturate(132%);
}

.upload-surface,
.mode-card,
.price-card,
.support-card,
.final-cta {
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.upload-surface {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.step-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 700;
}

.step-label span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
}

.local-preview-notice {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 54px;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  background: #1d1b1a;
  font-size: 14px;
}

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

.dropzone {
  position: relative;
  min-width: 0;
  min-height: 380px;
  margin-top: 18px;
  padding: 38px 28px 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  text-align: center;
  border: 1px dashed rgba(96, 77, 58, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.dropzone::before,
.mini-upload::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(22, 19, 17, 0.16), rgba(22, 19, 17, 0.44)),
    radial-gradient(circle at 50% 36%, rgba(255, 250, 242, 0.08), rgba(255, 250, 242, 0));
  transition: opacity 180ms ease;
}

.dropzone.has-file::before,
.mini-upload.has-file::before {
  opacity: 1;
}

.dropzone > :not(input):not(.inline-upload-preview),
.mini-upload > :not(input):not(.inline-upload-preview) {
  position: relative;
  z-index: 2;
}

.inline-upload-preview {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: rgba(255, 250, 242, 0.78);
}

.dropzone:hover,
.dropzone.is-dragging,
.dropzone.has-file {
  border-color: rgba(200, 154, 91, 0.58);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.drop-icon,
.price-icon,
.scenario-icon {
  width: 72px;
  height: 72px;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  border-radius: 22px;
  color: var(--accent);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.98), rgba(255, 249, 240, 0.91) 58%, rgba(239, 214, 180, 0.68)),
    #fff8ee;
  border: 1px solid rgba(196, 143, 75, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 16px 34px rgba(64, 47, 31, 0.12),
    0 0 30px rgba(232, 196, 153, 0.3);
}

.drop-icon {
  position: relative;
  width: 96px;
  height: 96px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.drop-icon img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.price-icon img,
.scenario-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.price-icon {
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.price-icon img {
  width: 88px;
  height: 88px;
}

.scenario-icon img {
  width: 66px;
  height: 66px;
}

.dropzone small {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.45;
}

.dropzone strong,
.dropzone small,
.mini-upload span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.dropzone.has-file .drop-icon {
  width: 68px;
  height: 68px;
  padding: 9px;
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 14px 32px rgba(22, 19, 17, 0.18);
}

.dropzone.has-file .drop-icon img {
  width: 50px;
  height: 50px;
}

.dropzone.has-file strong,
.dropzone.has-file small,
.mini-upload.has-file span,
.mini-upload.has-file b {
  color: #fffaf3;
  text-shadow: 0 2px 12px rgba(22, 19, 17, 0.58);
}

.dropzone small em {
  color: #ad783c;
  font-style: normal;
}

.dropzone b {
  width: fit-content;
  max-width: min(360px, 100%);
  margin: 44px auto 0;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: rgba(82, 74, 67, 0.82);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.28;
  text-align: left;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(118, 91, 61, 0.1);
}

.dropzone b img {
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.88;
}

.upload-preview {
  margin-top: 14px;
  padding: 12px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(200, 154, 91, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

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

.upload-preview img {
  width: 64px;
  height: 76px;
  object-fit: cover;
  border-radius: 14px;
}

.upload-preview strong {
  display: block;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
}

.upload-preview button {
  margin-right: 8px;
  border: 0;
  color: #ad783c;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.business-product-upload-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.business-product-upload-grid.is-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.business-product-upload-grid [hidden] {
  display: none !important;
}

.business-product-upload-grid .dropzone.compact {
  min-height: 260px;
  padding: 24px 18px;
  display: grid;
  grid-template-rows: 104px minmax(58px, auto) minmax(0, auto);
  align-content: start;
  justify-items: center;
  row-gap: 12px;
}

.business-product-upload-grid .drop-icon {
  width: 104px;
  height: 104px;
  overflow: visible;
  border-radius: 30px;
  background: transparent;
}

.business-product-upload-grid .drop-icon img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  transform: scale(var(--business-upload-icon-scale, 1));
  transform-origin: center;
}

.business-upload-previews {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.trust-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line-light);
  font-size: 0.86rem;
}

.try-example {
  height: 100%;
  display: grid;
  align-content: center;
  gap: 18px;
  text-align: center;
}

.try-example > span {
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.try-example-photos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.try-example figure {
  margin: 0;
  display: grid;
  gap: 13px;
}

.try-example img {
  width: 100%;
  aspect-ratio: 0.56;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(80, 60, 39, 0.1);
}

.try-example figcaption {
  color: var(--text);
  font-size: 1.12rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.try-example-photos > i {
  width: 58px;
  height: 58px;
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: #fff;
  box-shadow: 0 18px 42px rgba(80, 60, 39, 0.14);
  font-size: 2rem;
  font-style: normal;
  transform: translate(-50%, -50%);
}

.try-benefits {
  min-height: 420px;
  padding-left: 28px;
  display: grid;
  align-content: center;
  gap: 24px;
  border-left: 1px solid rgba(23, 23, 23, 0.16);
}

.benefit-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.benefit-item > span {
  width: 78px;
  height: 78px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: #b27835;
  background: transparent;
  box-shadow: none;
}

.benefit-item > span img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.benefit-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
}

.benefit-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.38;
}

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

.mode-step {
  margin-top: 0;
}

.mode-card {
  min-height: 310px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mode-card[data-mode-card="separate_items"] {
  background-image: url("assets/screen-03/mode-card-assemble-bg.png");
}

.mode-card[data-mode-card="ready_look"] {
  background-image: url("assets/screen-03/mode-card-ready-bg.png");
}

.mode-card:hover,
.mode-card.active {
  transform: scale(1.006);
  border-color: rgba(200, 154, 91, 0.54);
}

.mode-card.active {
  box-shadow: 0 22px 70px rgba(117, 82, 48, 0.14);
}

.mode-card p {
  max-width: 230px;
  color: var(--text-soft);
}

.mode-card > div {
  position: relative;
  z-index: 2;
  max-width: 250px;
  padding-top: 0;
}

.mode-card i {
  width: 22px;
  height: 2px;
  display: block;
  margin: 8px 0 16px;
  background: #b27835;
}

.mini-wardrobe {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-height: 130px;
}

.mini-wardrobe span {
  width: 30%;
  min-height: 90px;
  padding: 18px 10px;
  display: grid;
  place-items: end center;
  border: 1px solid var(--line);
  border-radius: 80px 80px 18px 18px;
  color: var(--text-soft);
  background: linear-gradient(180deg, #fff 0%, #eee7dd 100%);
}

.round-arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--accent);
  background: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.mode-check {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 26px;
  right: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(180, 124, 60, 0.28);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mode-card.active .mode-check {
  opacity: 1;
  transform: scale(1);
}

.garment-upload-panel {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-height: 0;
  margin-top: -22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 70px rgba(44, 35, 27, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    max-height 320ms ease,
    margin-top 320ms ease,
    opacity 220ms ease,
    transform 320ms ease;
}

.garment-upload-panel.is-open {
  max-height: 360px;
  margin-top: 0;
  border-width: 1px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.garment-upload-panel:not(.is-open) {
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  border-color: transparent;
  box-shadow: none;
}

.garment-fields {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.garment-fields.active {
  display: grid;
}

.mini-upload {
  position: relative;
  min-width: 0;
  min-height: 78px;
  padding: 14px 16px;
  display: grid;
  align-content: center;
  gap: 9px;
  border: 1px dashed rgba(96, 77, 58, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.mini-upload:hover,
.mini-upload.has-file {
  border-color: rgba(200, 154, 91, 0.58);
  background: rgba(255, 255, 255, 0.9);
}

.mini-upload span {
  display: grid;
  gap: 3px;
  font-weight: 700;
}

.mini-upload b {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 500;
}

.mini-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.mini-upload::after {
  content: "Выбрать файл";
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ad783c;
  background: rgba(200, 154, 91, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-upload.has-file::after {
  content: "Файл добавлен";
}

.mini-upload.wide {
  grid-column: 1 / -1;
}

.generation-status {
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.generation-status span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(200, 154, 91, 0.42);
}

.generation-status.is-running span {
  animation: pulseDot 920ms ease-in-out infinite;
}

.generation-status p {
  margin: 0;
}

.try-submit {
  justify-self: end;
}

@keyframes pulseDot {
  50% {
    transform: scale(1.5);
    background: var(--accent);
  }
}

.try-console {
  margin-top: 22px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  border-radius: var(--radius-xl);
}

.try-console label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

textarea,
input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 16px;
  color: var(--text);
  resize: vertical;
}

.console-actions {
  display: flex;
  gap: 10px;
}

.centered {
  margin: 24px auto 0;
}

.text-nowrap {
  white-space: nowrap;
}

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

.scenario-group-label {
  grid-column: 1 / -1;
  margin: 10px 0 -2px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.scenario-group-label span {
  color: #ad783c;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-group-label p {
  max-width: 520px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.45;
  text-align: right;
}

.scenario-group-business {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(120, 75, 34, 0.1);
}

.scenario-feature-card {
  grid-column: 1 / -1;
}

.scenario-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.scenario-card:hover,
.scenario-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(43, 30, 22, 0.15);
  filter: saturate(1.02);
  outline: none;
}

.scenario-card > img,
.scenario-card > picture {
  width: 100%;
  height: 100%;
  min-height: 330px;
}

.scenario-card > img,
.scenario-card > picture > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(0.9) brightness(1.06);
}

.scenario-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.58) 31%, rgba(255, 255, 255, 0.04) 68%);
}

.scenario-card div {
  position: absolute;
  z-index: 1;
  inset: 34px auto 34px 34px;
  width: min(320px, calc(100% - 68px));
  display: grid;
  align-content: space-between;
}

.scenario-card p {
  color: var(--text-soft);
}

.scenario-asset-card {
  min-height: auto;
  aspect-ratio: 2 / 1;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 18px 48px rgba(43, 30, 22, 0.1);
}

.scenario-asset-card > img,
.scenario-asset-card > picture,
.scenario-asset-card > picture > img {
  display: block;
  min-height: 0;
  height: 100%;
}

  .scenario-asset-card > img,
  .scenario-asset-card > picture > img {
    filter: none;
  }

  .scenario-feature-card > picture > img {
    object-position: center;
  }

.scenario-asset-card::after,
.scenario-asset-card div {
  display: block;
}

.scenario-asset-card div {
  inset: 26px auto 26px 34px;
  width: min(335px, calc(55% - 34px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.scenario-asset-card h3 {
  max-width: 320px;
  margin: 2px 0 0;
  color: #181614;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  line-height: 1.1;
}

.scenario-asset-card p {
  max-width: 285px;
  margin: 0;
  color: rgba(42, 38, 34, 0.68);
  font-size: 0.88rem;
  line-height: 1.42;
}

.scenario-asset-card .scenario-icon {
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.scenario-asset-card .scenario-icon img {
  width: 76px;
  height: 76px;
  min-height: 0;
  display: block;
  object-fit: contain;
  filter: none;
}

@media (min-width: 761px) {
  .scenario-feature-card::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.34) 55%, rgba(255, 255, 255, 0.02) 74%),
      radial-gradient(circle at 20% 48%, rgba(255, 250, 244, 0.78), rgba(255, 250, 244, 0) 42%);
  }

  .scenario-feature-card .scenario-content {
    inset: 56px auto auto 62px;
    width: min(360px, 31vw);
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "button";
    align-content: start;
    align-items: start;
    gap: 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .scenario-feature-card .scenario-icon {
    grid-area: icon;
    width: 70px;
    height: 70px;
  }

  .scenario-feature-card h3 {
    grid-area: title;
    margin: 0;
    max-width: 9.5em;
    color: #181614;
    font-size: clamp(2rem, 2.75vw, 3.05rem);
    line-height: 0.98;
    letter-spacing: 0;
  }

  .scenario-feature-card .scenario-try-button {
    grid-area: button;
    margin-top: 0;
    min-height: 48px;
    padding-inline: 22px 18px;
    box-shadow: 0 18px 42px rgba(31, 21, 14, 0.16);
  }
}

.scenario-try-button {
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  color: #fffaf3;
  background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
  box-shadow:
    0 16px 36px rgba(94, 58, 28, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.scenario-try-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 46px rgba(94, 58, 28, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.scenario-try-button span {
  font-size: 1.2rem;
  line-height: 1;
}

.try-history {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.try-history-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.try-history-head h3 {
  margin-top: 6px;
  font-size: 1.5rem;
}

.try-history-head p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 8px;
  color: var(--text-soft);
}

.history-empty {
  margin-top: 18px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
  border: 1px dashed rgba(200, 154, 91, 0.34);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
}

.history-empty strong,
.history-empty span {
  display: block;
}

.history-empty span {
  color: var(--text-soft);
}

.history-empty .pill-button {
  grid-row: 1 / 3;
  grid-column: 2;
}

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

.history-filters {
  margin-top: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(160px, 1fr));
  gap: 12px;
  border: 1px solid rgba(200, 154, 91, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 241, 0.9)),
    rgba(255, 255, 255, 0.94);
}

.history-filter-field {
  display: grid;
  gap: 8px;
}

.history-filter-field span {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.history-filter-field input,
.history-filter-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(32, 21, 14, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
}

.business-project-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.history-grid article {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line-light);
}

.business-project-archive-panel {
  padding: 18px;
  border: 1px solid rgba(200, 154, 91, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 241, 0.92)),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(67, 45, 31, 0.06);
}

.business-project-archive-head {
  margin-bottom: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.business-project-archive-head strong {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
}

.business-project-archive-head p,
.business-project-archive-head span {
  margin: 6px 0 0;
  color: var(--text-soft);
}

.business-project-archive-list {
  display: grid;
  gap: 12px;
}

.business-project-row {
  padding: 12px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(32, 21, 14, 0.08);
}

.business-project-row-media {
  position: relative;
  width: 96px;
  height: 120px;
  overflow: hidden;
  border-radius: 18px;
  background: #f3eee8;
}

.business-project-row-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.business-project-row-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.business-project-row-copy strong {
  font-size: 1rem;
  line-height: 1.2;
  color: #1c1713;
}

.business-project-row-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px;
}

.business-project-row-actions .pill-button {
  width: 100%;
  margin: 0;
}

.consumer-history-grid {
  grid-template-columns: 1fr;
}

.consumer-history-cover {
  min-height: 320px;
}

.consumer-history-card .business-history-actions,
.consumer-history-row .business-project-row-actions {
  grid-template-columns: 1fr;
}

.archive-media-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.95), rgba(243, 235, 224, 0.98)),
    rgba(255, 255, 255, 0.96);
  color: var(--text-soft);
}

.archive-media-fallback[hidden] {
  display: none !important;
}

.archive-media-fallback strong {
  color: var(--text);
  font-size: 1.05rem;
}

.archive-media-fallback span {
  max-width: 280px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.archive-media-fallback.compact {
  padding: 10px;
}

.archive-media-fallback.compact strong {
  font-size: 0.88rem;
}

[data-archive-media].is-unavailable {
  background:
    linear-gradient(180deg, rgba(250, 244, 236, 0.96), rgba(241, 232, 220, 0.98)),
    rgba(255, 255, 255, 0.94);
}

[data-archive-card].is-unavailable .business-project-cover-backdrop {
  display: none;
}

[data-archive-card] [data-archive-download].is-disabled {
  pointer-events: none;
  opacity: 0.58;
}

.business-history-card {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto;
}

.business-history-copy {
  padding: 14px 14px 8px;
  display: grid;
  gap: 10px;
  background: #fff;
}

.business-history-copy strong {
  display: block;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #1c1713;
}

.business-history-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.business-project-counter {
  margin: 8px 0 0;
  color: rgba(92, 72, 52, 0.78);
  font-size: 0.96rem;
  font-weight: 700;
}

.history-pill.compact {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 247, 238, 0.96);
  color: rgba(74, 54, 38, 0.92);
  font-size: 0.72rem;
  line-height: 1.15;
}

.history-pair {
  height: 210px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #f3eee8;
}

.history-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-pair.single-result {
  grid-template-columns: 1fr;
}

.business-project-cover {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255, 248, 240, 0.96), rgba(240, 231, 221, 0.92)),
    linear-gradient(180deg, #f7f1eb 0%, #ede3d8 100%);
}

.business-project-cover-backdrop {
  position: absolute;
  inset: 0;
  background-image: var(--project-cover-image);
  background-size: cover;
  background-position: center top;
  filter: blur(24px) saturate(0.92);
  transform: scale(1.08);
  opacity: 0.52;
}

.business-project-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.12), rgba(255, 252, 248, 0.38));
}

.business-history-card .business-project-cover img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: calc(100% - 24px);
  height: auto;
  max-height: calc(100% - 24px);
  object-fit: contain;
  object-position: center top;
  border-radius: 26px;
  box-shadow: 0 26px 54px rgba(63, 41, 21, 0.18);
}

.history-grid article .pill-button {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  min-height: 42px;
}

.business-history-actions {
  padding: 0 14px 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  background: #fff;
}

.business-history-actions .pill-button {
  width: 100%;
  margin: 0;
}

.business-history-actions .delete-action {
  grid-column: 1 / -1;
}

.business-history-card .history-pair.single-result {
  height: 320px;
}

.business-history-card .history-pair img {
  display: block;
}

.business-history-card .history-grid span,
.business-history-card span {
  margin: 0;
}

.history-pair.placeholder {
  place-items: center;
  color: rgba(23, 23, 23, 0.42);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(23, 23, 23, 0.08) calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    rgba(255, 255, 255, 0.72);
}

.history-pair.placeholder em {
  font-style: normal;
  font-weight: 700;
}

.history-grid span {
  width: fit-content;
  display: block;
  margin: 10px 12px 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(46, 39, 33, 0.78);
  background: rgba(255, 250, 242, 0.84);
  font-size: 0.78rem;
  line-height: 1.2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.business-project-workspace {
  margin-top: 24px;
}

.business-project-workspace-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.business-project-workspace-copy {
  min-width: 0;
}

.business-project-workspace-head h2 {
  margin-bottom: 8px;
}

.business-project-workspace-head p:last-child {
  margin: 0;
  color: var(--text-soft);
}

.business-project-workspace-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.business-project-workspace-source {
  padding: 10px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.business-project-workspace-source span {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.business-project-workspace-source img {
  width: 124px;
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.business-project-workspace-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
}

.business-project-editor,
.business-project-preview-panel {
  display: grid;
  gap: 14px;
}

.business-project-editor-page .section-heading {
  margin-bottom: 26px;
}

.business-project-logo-preview {
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  display: inline-grid;
  gap: 8px;
  border: 1px dashed rgba(200, 154, 91, 0.34);
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.72);
}

.business-project-logo-preview img,
.business-project-preview-logo {
  max-width: 180px;
  max-height: 72px;
}

.business-project-preview-logo {
  width: min(160px, 28%);
  height: 64px;
  max-width: min(160px, 28%);
  max-height: 64px;
  background: transparent;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  filter: drop-shadow(0 8px 18px rgba(17, 12, 8, 0.12));
}

.business-project-preview-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 28px;
  background: #f2ece4;
  box-shadow: var(--shadow-soft);
}

.business-project-preview-card > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.business-project-preview-brand {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.business-project-preview-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 28px 72px;
  display: grid;
  gap: 10px;
  color: #fffaf4;
  background: linear-gradient(180deg, rgba(17, 12, 8, 0.04), rgba(17, 12, 8, 0.84));
}

.business-project-preview-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 247, 238, 0.92);
  color: #20150e;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.business-project-preview-overlay strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.05;
}

.business-project-preview-overlay p,
.business-project-preview-overlay small {
  margin: 0;
  color: rgba(255, 250, 244, 0.88);
}

.business-project-result-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 10px;
}

.business-project-result-thumb {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 21, 14, 0.1);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.business-project-result-thumb:hover {
  transform: translateY(-2px);
}

.business-project-result-thumb.active {
  border-color: #20150e;
  box-shadow: 0 14px 30px rgba(32, 21, 14, 0.12);
}

.business-project-result-thumb img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.business-project-preview-actions {
  margin-top: 0;
}

.business-project-preview-actions .pill-button {
  width: 100%;
}

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

.pricing-stack {
  display: grid;
  gap: 28px;
}

.pricing-group {
  padding: 28px;
  border: 1px solid rgba(200, 154, 91, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.pricing-group-head {
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}

.pricing-group-head h3 {
  margin: 0;
}

.pricing-group-head p:not(.eyebrow) {
  margin: 0;
  max-width: 720px;
  color: var(--text-soft);
}

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

.pricing-section .section-heading {
  max-width: min(1320px, 100%);
}

.pricing-hero-title {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.04em 0.24em;
  font-size: clamp(4.1rem, 5.8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.pricing-hero-title span,
.pricing-hero-title b {
  white-space: nowrap;
}

.pricing-hero-title b {
  font-weight: 600;
  color: rgba(31, 23, 17, 0.72);
}

.price-card {
  min-height: 0;
  padding: 34px;
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  gap: 14px;
  align-content: start;
}

.price-card.featured {
  border-color: rgba(200, 154, 91, 0.74);
  background: rgba(255, 255, 255, 0.88);
}

.price-card .badge {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-head {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  align-self: start;
}

.price-head .price-icon {
  flex: 0 0 auto;
}

.price-head h3 {
  margin: 0;
  align-self: center;
}

.pricing-pro-card .price-head .price-icon {
  width: 72px;
  height: 72px;
}

.pricing-pro-card .price-head .price-icon img {
  width: 72px;
  height: 72px;
}

.pricing-pro-title {
  font-size: clamp(2.1rem, 2.8vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.price-card p,
.price-card small {
  color: var(--text-soft);
  font-family: var(--font-body);
  font-weight: 500;
}

.price-card p {
  align-self: start;
  margin: 0;
  line-height: 1.38;
}

.price-card strong {
  align-self: start;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.6vw, 3.35rem);
  font-weight: 700;
  line-height: 1;
}

.price-card .sale-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.price-card .sale-price s {
  color: rgba(23, 23, 23, 0.42);
  font-size: 0.54em;
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(168, 120, 67, 0.78);
}

.price-card .sale-price span {
  color: #111;
}

.price-card ul {
  margin: 12px 0 0;
  padding: 28px 0 0;
  display: grid;
  gap: 12px;
  list-style: none;
  border-top: 1px solid var(--line);
  align-content: start;
}

.price-card li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--accent);
}

.price-card .pill-button {
  align-self: end;
  margin-top: 10px;
}

.price-card .pill-button.is-current-plan {
  color: #fffaf3;
  border-color: transparent;
  background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
}

.pricing-pro-button {
  color: #fffaf3;
  border-color: transparent;
  background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
  box-shadow: 0 18px 34px rgba(31, 21, 14, 0.16);
}

.pricing-pack-panel {
  margin-top: 22px;
  padding: 24px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(200, 154, 91, 0.16);
  border-radius: 28px;
  background: rgba(255, 249, 241, 0.82);
}

.pricing-pack-panel p,
.pricing-rollover-note {
  margin: 0;
  color: var(--text-soft);
}

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

.pricing-pack-card {
  padding: 20px;
  display: grid;
  gap: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(200, 154, 91, 0.16);
}

.pricing-pack-card strong,
.pricing-pack-card span {
  display: block;
}

.pricing-rollover-note {
  margin-top: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.78fr);
  gap: 64px;
}

.faq-intro p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 24px;
  line-height: 1.42;
}

.support-card {
  margin-top: 32px;
  padding: 28px;
  display: grid;
  gap: 14px;
}

.faq-section > .support-card {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
}

.support-card span {
  color: var(--text-soft);
}

.accordion {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

summary {
  min-height: 66px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -8px 28px 24px;
  color: var(--text-soft);
}

.final-cta {
  margin-top: 64px;
  padding: clamp(34px, 6vw, 68px);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.final-cta div {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.app-route {
  display: none;
}

body.route-try-on [data-route-page="/try-on"],
body.route-business [data-route-page="/business"],
body.route-business-create [data-route-page="/business/create"],
body.route-business-projects [data-route-page="/business/projects"],
body.route-business-project-editor [data-route-page="/business/project-editor"],
body.route-dashboard [data-route-page="/dashboard"],
body.route-login [data-route-page="/login"],
body.route-pricing [data-route-page="/pricing"] {
  display: block;
}

body:not(.route-home) .landing-section {
  display: none;
}

.app-shell,
.business-layout,
.consumer-layout {
  padding-top: 118px;
}

body.route-business-create .business-layout {
  padding-top: 118px;
}

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

.business-hero-section {
  min-height: 100svh;
  max-height: 900px;
  position: relative;
  display: grid;
  overflow: hidden;
  color: #fff7ee;
}

.business-hero-picture,
.business-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.business-hero-picture {
  z-index: 0;
}

.business-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.business-hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(30, 22, 17, 0.22) 0%, rgba(30, 22, 17, 0.08) 48%, rgba(30, 22, 17, 0) 76%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.08) 0%, rgba(244, 224, 194, 0.02) 54%, rgba(54, 32, 20, 0.12) 100%);
}

.business-hero-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 88px;
  bottom: 0;
  left: 0;
  width: min(51vw, 760px);
  pointer-events: none;
  border-right: 1px solid rgba(255, 238, 213, 0.14);
  background:
    linear-gradient(90deg, rgba(29, 23, 20, 0.74) 0%, rgba(38, 29, 24, 0.64) 58%, rgba(38, 29, 24, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 237, 211, 0.1), rgba(171, 112, 61, 0.08));
  box-shadow:
    inset -1px 0 0 rgba(255, 255, 255, 0.08),
    34px 0 88px rgba(41, 28, 20, 0.16);
  backdrop-filter: blur(22px) saturate(118%);
  -webkit-backdrop-filter: blur(22px) saturate(118%);
}

.business-hero-content {
  width: min(var(--max), calc(100vw - 48px));
  min-height: min(900px, 100svh);
  margin: 0 auto;
  padding: 132px 0 72px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 650px);
  align-items: center;
  justify-content: start;
  gap: 56px;
}

.business-hero-copy {
  max-width: 620px;
  padding-top: 0;
  display: grid;
  align-content: center;
  gap: 18px;
}

.business-hero-copy .hero-title {
  max-width: 580px;
  font-size: clamp(2.86rem, 3.7vw, 4.28rem);
  line-height: 0.94;
}

.business-hero-copy .hero-subtitle {
  max-width: 620px;
  white-space: normal;
  line-height: 1.54;
}

.business-hero-copy .hero-kicker {
  margin: 0;
  opacity: 0.9;
}

.business-hero-copy .hero-steps {
  margin-top: 6px;
}

.business-hero-copy .hero-actions {
  margin-top: 10px;
}

.business-hero-secondary {
  min-height: 60px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 238, 213, 0.24);
  border-radius: 999px;
  color: rgba(255, 245, 232, 0.78);
  background: rgba(255, 248, 238, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.business-hero-secondary:hover {
  color: #fff8ef;
  border-color: rgba(255, 238, 213, 0.42);
  transform: translateY(-2px);
}

.business-content {
  padding-top: 118px;
}

.route-heading {
  margin-bottom: 34px;
}

.route-heading h1,
.business-hero h1,
.creator-rail h1,
.empty-route h1 {
  font-size: clamp(2.5rem, 4.7vw, 4.7rem);
  line-height: 0.98;
}

.flow-card,
.route-panel,
.business-preview-card,
.creator-panel,
.creator-rail {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(128%);
  -webkit-backdrop-filter: blur(18px) saturate(128%);
}

.flow-card,
.route-panel,
.creator-panel,
.creator-rail {
  padding: clamp(22px, 4vw, 38px);
}

.flow-step,
.creator-step {
  display: none;
}

.flow-step.is-active,
.creator-step.active {
  display: block;
}

@media (min-width: 761px) {
  body.route-try-on .app-shell {
    padding-top: 136px;
  }

  body.route-try-on .route-heading {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
  }

  body.route-try-on .route-heading h1 {
    max-width: 760px;
    margin: 10px auto 0;
    font-size: clamp(3.25rem, 5.2vw, 5.7rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  body.route-try-on .route-heading p:not(.eyebrow) {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(49, 45, 40, 0.68);
    font-size: clamp(1.04rem, 1.35vw, 1.24rem);
    line-height: 1.5;
    text-wrap: balance;
  }

  body.route-try-on .consumer-flow {
    max-width: 1760px;
    margin-inline: auto;
    scroll-margin-top: 120px;
    padding: clamp(34px, 3.4vw, 58px);
    border-radius: 34px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 251, 245, 0.72)),
      rgba(255, 255, 255, 0.72);
  }

  body.route-try-on .consumer-flow .flow-grid.two-columns {
    grid-template-columns: repeat(2, minmax(420px, 1fr));
    gap: clamp(28px, 3vw, 56px);
    align-items: stretch;
  }

  body.route-try-on .upload-surface {
    min-width: 0;
    display: grid;
    align-content: start;
  }

  body.route-try-on .step-label {
    width: 100%;
    justify-content: flex-start;
    font-size: 1.08rem;
  }

  body.route-try-on .dropzone {
    min-height: clamp(360px, 32vw, 500px);
    padding: clamp(34px, 3vw, 52px) 34px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 42%),
      rgba(255, 252, 247, 0.62);
  }

  body.route-try-on [data-consumer-mode-panel="ready"] .dropzone {
    min-height: calc(clamp(360px, 32vw, 500px) - 86px);
  }

  body.route-try-on .dropzone strong {
    max-width: 420px;
    margin-inline: auto;
    font-size: clamp(1.15rem, 1.35vw, 1.32rem);
    line-height: 1.18;
    text-wrap: balance;
  }

  body.route-try-on .dropzone small {
    max-width: 430px;
    margin-inline: auto;
    line-height: 1.5;
  }

  body.route-try-on .consumer-mode-switch {
    margin-top: 18px;
    min-height: 68px;
    padding: 7px;
    border-radius: 24px;
  }

  body.route-try-on .consumer-mode-switch button {
    min-height: 54px;
    border-radius: 18px;
    font-size: 1rem;
  }

  body.route-try-on .consumer-mode-panel .route-field {
    margin-top: 16px;
  }

  body.route-try-on .preview-strip {
    margin-top: 28px;
    padding: 20px;
    border-radius: 26px;
  }
}

.flow-grid {
  min-width: 0;
  display: grid;
  gap: 18px;
}

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

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

.route-upload {
  min-width: 0;
  padding: 0;
}

.consumer-mode-switch {
  margin-top: 18px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(120, 75, 34, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.68);
}

.consumer-mode-switch button {
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 800;
  cursor: pointer;
}

.consumer-mode-switch button.active {
  color: #fffaf3;
  background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
  box-shadow: 0 12px 28px rgba(94, 58, 28, 0.18);
}

.consumer-mode-panel {
  display: none;
}

.consumer-mode-panel.active {
  display: block;
}

.consumer-kit-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.route-history {
  margin-top: 28px;
}

.route-field {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-weight: 700;
}

select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
}

.preview-strip {
  margin-top: 20px;
  padding: 18px;
  display: grid;
  gap: 12px;
  border: 1px dashed rgba(200, 154, 91, 0.34);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.66);
}

.preview-strip div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preview-strip span {
  min-height: 112px;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  place-items: center;
  border-radius: 18px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.preview-strip span.has-file {
  color: #7b4d21;
  border: 1px solid rgba(200, 154, 91, 0.28);
}

.preview-strip img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  display: block;
  object-fit: cover;
}

.preview-strip b {
  padding: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.preview-strip span.has-file b {
  display: none;
}

.generation-options {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(120, 75, 34, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.generation-options strong,
.generation-options span {
  display: block;
}

.generation-status.has-error {
  color: #8e342d;
}

.generation-status.has-error span {
  background: #c94d42;
}

.business-loading-view p {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.5;
}

.generation-options span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.quality-impact-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(148, 103, 53, 0.08);
  color: #6a4420;
  font-size: 0.88rem;
  line-height: 1.45;
}

.quality-impact-note.is-highlighted {
  background: rgba(201, 77, 66, 0.12);
  color: #8e342d;
}

.quality-switch {
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 5px;
  border: 1px solid rgba(120, 75, 34, 0.12);
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.72);
}

.quality-switch button {
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 800;
  cursor: pointer;
}

.quality-switch button.active {
  color: #fffaf3;
  background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
}

.quality-switch button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.route-actions,
.creator-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.creator-actions[hidden] {
  display: none !important;
}

.centered-actions {
  justify-content: center;
}

.generation-view,
.result-view,
.empty-view,
.empty-route {
  text-align: center;
}

.tryna-loader {
  --loader-progress-angle: 28.8deg;
  width: 240px;
  height: 240px;
  margin: 4px auto 30px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 36px;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 222, 199, 0.58), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(255, 246, 232, 0.9), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(247, 239, 228, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 28px 56px rgba(123, 79, 48, 0.14);
  overflow: hidden;
}

.tryna-loader::before,
.tryna-loader::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tryna-loader::before {
  inset: 18px 34px 22px 26px;
  z-index: 0;
  background:
    radial-gradient(circle at 32% 58%, rgba(208, 63, 49, 0.42), transparent 30%),
    radial-gradient(circle at 70% 66%, rgba(22, 22, 22, 0.18), transparent 24%),
    radial-gradient(circle at 54% 42%, rgba(255, 255, 255, 0.58), transparent 38%);
  filter: blur(2px);
  animation: trynaOpticFloat 8s ease-in-out infinite;
}

.tryna-loader::after {
  inset: 34px 44px 40px;
  z-index: 1;
  background:
    radial-gradient(circle at 26% 74%, rgba(208, 63, 49, 0.88) 0 7px, transparent 8px),
    radial-gradient(circle at 72% 26%, rgba(28, 28, 28, 0.92) 0 3px, transparent 4px),
    radial-gradient(circle at 82% 64%, rgba(208, 63, 49, 0.78) 0 10px, transparent 11px),
    linear-gradient(90deg, transparent 0 10%, rgba(212, 194, 171, 0.68) 10.5% 11.2%, transparent 11.7% 100%),
    linear-gradient(0deg, transparent 0 24%, rgba(212, 194, 171, 0.58) 24.4% 25.1%, transparent 25.6% 100%);
  opacity: 0.88;
}

.tryna-loader-orbit {
  position: absolute;
  inset: 22px;
  z-index: 2;
  border-radius: 34px;
  animation: trynaOrbitCounter 12s linear infinite;
  filter: blur(0.12px);
}

.tryna-loader-orbit span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 122px;
  height: 158px;
  margin-left: -61px;
  margin-top: -79px;
  border-radius: 50% 50% 48% 52% / 60% 42% 58% 40%;
  transform-origin: center center;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.tryna-loader-orbit span:nth-child(1) {
  background:
    radial-gradient(circle at 68% 18%, rgba(208, 63, 49, 0.72) 0 4px, transparent 5px),
    linear-gradient(180deg, rgba(22, 22, 22, 0.78), rgba(22, 22, 22, 0.04) 76%);
  clip-path: path("M61 0 C96 24 113 74 98 116 C87 146 64 158 46 150 C18 138 9 101 18 66 C25 39 39 16 61 0Z");
  transform: translate(-8px, -18px) rotate(-26deg);
}

.tryna-loader-orbit span:nth-child(2) {
  background:
    radial-gradient(circle at 74% 36%, rgba(208, 63, 49, 0.88) 0 10px, transparent 11px),
    linear-gradient(180deg, rgba(231, 112, 96, 0.68), rgba(231, 112, 96, 0.06) 82%);
  clip-path: path("M40 8 C78 0 118 35 120 70 C122 103 93 124 63 130 C30 136 5 122 1 93 C-2 67 10 28 40 8Z");
  transform: translate(16px, 8px) rotate(34deg);
}

.tryna-loader-orbit span:nth-child(3) {
  background:
    radial-gradient(circle at 44% 84%, rgba(208, 63, 49, 0.78) 0 6px, transparent 7px),
    linear-gradient(180deg, rgba(18, 18, 18, 0.52), rgba(18, 18, 18, 0.02) 80%);
  clip-path: path("M56 0 C82 22 91 58 78 94 C67 124 44 150 25 156 C8 160 -4 146 2 122 C12 84 30 26 56 0Z");
  transform: translate(-16px, 22px) rotate(12deg);
}

.tryna-loader-orbit span:nth-child(4) {
  width: 184px;
  height: 184px;
  margin-left: -92px;
  margin-top: -92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 22% 72%, rgba(18, 18, 18, 0.84) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 28%, rgba(208, 63, 49, 0.84) 0 4px, transparent 5px),
    conic-gradient(from 40deg, transparent 0 18%, rgba(213, 188, 157, 0.82) 18.5% 19.5%, transparent 20% 47%, rgba(213, 188, 157, 0.74) 47.5% 48.5%, transparent 49% 100%);
  mask: radial-gradient(circle, transparent 0 63%, #000 64%);
  opacity: 0.72;
  transform: rotate(-12deg);
}

.tryna-loader-mark {
  position: relative;
  z-index: 3;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: rgba(255, 252, 247, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 16px 34px rgba(91, 59, 35, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: trynaMarkMorph 5.2s cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}

.tryna-loader-mark span {
  position: relative;
  z-index: 2;
  color: rgba(28, 28, 28, 0.92);
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 10px 24px rgba(255, 255, 255, 0.3);
}

.tryna-loader-mark::before,
.tryna-loader-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.tryna-loader-mark::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.54), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08));
}

.tryna-loader-mark::after {
  inset: 10px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.tryna-loader-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  min-width: 58px;
  padding: 9px 12px;
  border: 1px solid rgba(64, 44, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.94);
  color: #171717;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(73, 48, 24, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tryna-loader.is-complete {
  --loader-progress-angle: 360deg;
}

.tryna-loader.is-complete::before,
.tryna-loader.is-complete::after,
.tryna-loader.is-complete .tryna-loader-orbit,
.tryna-loader.is-complete .tryna-loader-mark {
  animation-play-state: paused;
}

.generation-view h2 {
  max-width: 560px;
  min-height: 2.25em;
  margin: 0 auto;
  font-size: clamp(1.15rem, 2.7vw, 2.35rem);
  line-height: 1.12;
  text-wrap: balance;
}

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

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

@keyframes trynaOpticFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(0.98); opacity: 0.72; }
  35% { transform: translate3d(6px, -8px, 0) rotate(8deg) scale(1.04); opacity: 0.9; }
  68% { transform: translate3d(-8px, 10px, 0) rotate(-10deg) scale(1); opacity: 0.82; }
}

@keyframes trynaMarkMorph {
  0%, 100% { transform: scale(0.96) rotate(0deg); border-radius: 26px; }
  48%, 68% { transform: scale(1.03) rotate(8deg); border-radius: 30px; }
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  text-align: left;
}

.result-view .result-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: start;
  overflow: hidden;
}

.consumer-result-pair {
  gap: 0;
  background: transparent;
  border: 1px solid rgba(223, 212, 200, 0.82);
  box-shadow: 0 18px 42px rgba(67, 45, 31, 0.08);
}

.result-view .history-pair {
  width: 100%;
  height: auto;
  max-height: min(62vh, 620px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px;
}

.result-view .history-pair img {
  object-fit: contain;
  background: linear-gradient(180deg, #f9f5ef 0%, #f1e9df 100%);
}

.consumer-result-pair img + img {
  border-left: 1px solid rgba(223, 212, 200, 0.9);
}

[data-consumer-result-meta] {
  overflow-wrap: anywhere;
}

.business-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.business-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 1.16rem;
  line-height: 1.58;
}

.business-preview-card {
  overflow: hidden;
  padding: 10px;
}

.business-preview-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border-radius: 24px;
}

.feature-grid,
.business-example-grid,
.model-grid,
.result-grid,
.summary-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  margin-top: 54px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid article,
.summary-grid article {
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.result-grid {
  align-items: start;
}

.feature-grid span {
  display: block;
  margin-bottom: 18px;
  color: #ad783c;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 800;
}

.route-section-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.route-steps {
  margin: 22px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 14px;
  color: var(--text-soft);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(200, 154, 91, 0.1);
  color: #7b4d21;
  font-weight: 700;
}

.examples-panel {
  margin-top: 28px;
}

.business-example-grid,
.model-grid,
.result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-filter-row {
  margin: 22px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-filter-row button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.model-filter-row button.active {
  border-color: #20150e;
  background: #20150e;
  color: #fff;
}

.model-current-choice {
  margin-top: 18px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(200, 154, 91, 0.32);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.86);
}

.model-current-choice strong,
.model-current-choice span {
  font-weight: 900;
}

.model-current-choice span {
  color: #8d5c24;
  text-align: right;
}

.model-angle-choice {
  margin-top: 14px;
  padding: 16px 18px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(200, 154, 91, 0.22);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.9);
}

.model-angle-choice strong {
  color: var(--text);
  font-size: 0.98rem;
}

.model-angle-choice p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.model-angle-choice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-angle-choice-buttons button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(32, 21, 14, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-soft);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.model-angle-choice-buttons button:hover {
  transform: translateY(-1px);
}

.model-angle-choice-buttons button.active {
  border-color: rgba(200, 154, 91, 0.7);
  background: linear-gradient(180deg, rgba(44, 33, 24, 0.98), rgba(20, 16, 12, 0.98));
  color: #fffaf3;
}

.creator-step-head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.creator-step-head h2 {
  margin: 0;
}

.business-example-grid article,
.model-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: #fff;
}

.model-card {
  position: relative;
  padding: 12px;
  display: grid;
  gap: 12px;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.model-card-stack {
  display: grid;
  gap: 12px;
  align-content: start;
}

.model-card.active {
  border-color: #20150e;
  box-shadow: 0 18px 42px rgba(32, 21, 14, 0.12);
}

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

.model-card-check {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32, 21, 14, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(67, 45, 31, 0.08);
}

.model-card-check-dot {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease;
}

.business-example-grid article {
  padding: 12px;
  position: relative;
  display: grid;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 242, 0.72)),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 46px rgba(67, 45, 31, 0.08);
}

.business-example-grid article::before {
  content: "";
  width: 44px;
  height: 6px;
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 16px 0 0 rgba(255, 255, 255, 0.48), 32px 0 0 rgba(255, 255, 255, 0.32);
}

.business-example-grid img,
.model-card-preview > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.model-card-preview > img {
  aspect-ratio: auto;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

.business-example-grid span {
  width: fit-content;
  display: block;
  margin: 0 4px 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.86);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.9rem;
}

.model-card-preview,
.model-card-body,
.model-card-title,
.model-card-meta,
.model-angle-strip {
  display: block;
}

.model-card-title {
  color: var(--text);
  font-weight: 900;
  font-size: 1.02rem;
}

.model-card-meta {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.model-angle-strip {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.model-angle-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  background: transparent;
}

.creator-shell {
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
}

.creator-rail {
  align-self: start;
  position: sticky;
  top: 110px;
}

.creator-rail h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.creator-rail ol {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.creator-rail li {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.58);
}

.creator-rail li.active {
  color: #fff;
  background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
}

.creator-step h2 {
  margin-bottom: 18px;
}

.dropzone.compact {
  min-height: 230px;
}

.model-card {
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.model-card.active {
  border-color: rgba(200, 154, 91, 0.74);
  box-shadow: 0 18px 50px rgba(117, 82, 48, 0.13);
}

.model-card.active .model-card-check {
  border-color: rgba(200, 154, 91, 0.62);
  background: rgba(255, 247, 236, 0.96);
}

.model-card.active .model-card-check-dot {
  background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
  color: #fffaf3;
}

.model-card-inline-cta {
  padding: 16px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(200, 154, 91, 0.32);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 236, 0.92)),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(67, 45, 31, 0.08);
}

.model-card-inline-cta strong {
  color: var(--text);
  font-size: 1rem;
}

.model-card-inline-cta span {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.model-card-inline-actions {
  display: grid;
  gap: 10px;
}

.model-card-inline-actions .pill-button {
  width: 100%;
}

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

.business-final-summary {
  margin-top: 18px;
}

.summary-grid span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}

.business-result-stage {
  margin: 0;
  display: grid;
  gap: 14px;
}

.business-result-media {
  overflow: hidden;
  min-height: min(72vh, 720px);
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #fffdf9 0%, #f7f0e8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 24px 70px rgba(67, 45, 31, 0.1);
}

.business-result-media img {
  width: 100%;
  max-height: min(72vh, 720px);
  display: block;
  object-fit: contain;
}

.business-result-stage figcaption {
  text-align: center;
}

.result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.result-actions button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.step-copy {
  max-width: 680px;
  margin: -6px 0 22px;
  color: var(--text-soft);
  line-height: 1.52;
}

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

.business-goal-grid .route-choice-card {
  position: relative;
  min-height: 190px;
  appearance: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.business-goal-grid .route-choice-card span {
  width: 88px;
  height: 88px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.business-goal-grid .route-choice-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.route-choice-card.active {
  border-color: rgba(200, 154, 91, 0.62);
  box-shadow: 0 18px 50px rgba(117, 82, 48, 0.12);
}

.business-goal-grid .route-choice-card.active {
  color: #fffaf3;
  border-color: rgba(212, 164, 95, 0.86);
  background:
    linear-gradient(180deg, rgba(50, 37, 27, 0.98), rgba(22, 17, 13, 0.98)),
    #211913;
  box-shadow:
    0 22px 54px rgba(38, 27, 19, 0.24),
    0 0 0 4px rgba(212, 164, 95, 0.18);
  transform: translateY(-2px);
}

.business-goal-grid .route-choice-card.active::after {
  content: "✓";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1d1510;
  background: #d9ab68;
  font-size: 1rem;
  font-weight: 900;
}

.business-goal-grid .route-choice-card.active small {
  color: rgba(255, 250, 243, 0.74);
}

.business-goal-grid .route-choice-card.active span {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.business-background-upload[hidden] {
  display: none !important;
}

.save-account-card {
  margin: 18px 0 20px;
  padding: 18px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(200, 154, 91, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.8), rgba(255, 247, 235, 0.64)),
    rgba(255, 255, 255, 0.72);
}

.save-account-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.save-account-card span {
  color: var(--text-soft);
  line-height: 1.42;
}

.save-account-card .pill-button {
  width: fit-content;
  margin-top: 2px;
}

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

.seller-structure-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.seller-structure-card span {
  width: fit-content;
  color: #ad783c;
  font-family: var(--font-ui);
  font-weight: 800;
}

.seller-structure-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.seller-structure-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.52;
}

.product-schema-card {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.product-schema {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-schema strong,
.product-schema span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.86);
  color: var(--text-soft);
  font-weight: 800;
}

.product-schema strong {
  color: #fff;
  background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
}

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

.auth-route-panel {
  max-width: 980px;
  margin-inline: auto;
  text-align: left;
}

.auth-route-copy {
  max-width: 620px;
}

.auth-route-copy h1 {
  margin-top: 10px;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
}

.auth-route-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.48;
}

.auth-route-panel .auth-method-grid {
  margin-top: 32px;
}

.auth-field {
  padding: 16px;
  border: 1px solid rgba(120, 75, 34, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.64);
}

.auth-field span {
  color: var(--text);
  font-weight: 800;
}

.auth-field input {
  min-height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 650;
}

.auth-field input::placeholder {
  color: rgba(35, 31, 27, 0.42);
}

.auth-note {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.auth-consents {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.auth-checkbox {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.42;
  text-align: left;
}

.auth-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: #1b140f;
}

.auth-checkbox a {
  color: #9a642b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-error {
  margin: 2px 0 0;
  color: #9f2f24;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.auth-route-actions {
  justify-content: flex-start;
}

.route-choice-block {
  margin-top: 64px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.route-choice-block h2 {
  max-width: 720px;
  margin: 8px auto 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.route-choice-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quota-card {
  margin-top: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  text-align: left;
  border: 1px solid rgba(200, 154, 91, 0.26);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.72);
}

.quota-card strong,
.quota-card span {
  display: block;
}

.quota-card small {
  display: block;
  margin-top: 8px;
  color: rgba(61, 48, 38, 0.72);
  font-size: 0.88rem;
  line-height: 1.42;
}

.quota-card span {
  margin-top: 4px;
  color: var(--text-soft);
}

.quota-card b {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fffaf3;
  background: #211913;
  font-size: 0.95rem;
}

.dashboard-choice {
  max-width: 1240px;
  margin-inline: auto;
  padding: clamp(44px, 5vw, 76px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.dashboard-choice h1 {
  max-width: 920px;
  margin: 18px auto 0;
  text-align: center;
  text-wrap: balance;
}

.dashboard-choice > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.5;
  text-align: center;
}

.dashboard-choice .quota-card,
.dashboard-choice .route-choice-grid {
  width: 100%;
}

.dashboard-quota-grid {
  width: 100%;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.route-choice-card {
  min-height: 220px;
  padding: 24px;
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 12px;
  text-align: left;
  border: 1px solid rgba(120, 75, 34, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.route-choice-card:hover,
.route-choice-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 154, 91, 0.45);
  box-shadow: 0 18px 50px rgba(117, 82, 48, 0.12);
  outline: none;
}

.route-choice-card.primary {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.86), rgba(255, 247, 235, 0.7)),
    rgba(255, 255, 255, 0.72);
  border-color: rgba(200, 154, 91, 0.34);
}

.route-choice-card span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.route-choice-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.route-choice-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.16;
}

.route-choice-card small {
  max-width: 360px;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.48;
}

.footer {
  width: min(var(--max), calc(100vw - 48px));
  margin: 112px auto 40px;
  padding-top: 44px;
  display: grid;
  grid-template-columns: minmax(320px, 1.3fr) minmax(280px, 1fr) minmax(220px, 0.8fr);
  gap: 72px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 360px;
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.56;
  letter-spacing: -0.016em;
}

.footer-lockup {
  width: clamp(148px, 13vw, 184px);
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer nav strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer nav a,
.footer-bottom {
  color: var(--text-soft);
  font-size: 0.92rem;
  letter-spacing: -0.015em;
}

.footer nav a:hover,
.footer-bottom a:hover {
  color: var(--accent);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 80% 0%, rgba(200, 154, 91, 0.16), transparent 30%),
    linear-gradient(180deg, #fbf8f3 0%, #f7f1e8 100%);
}

.legal-topbar {
  width: min(1080px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 30px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-document {
  width: min(960px, calc(100vw - 48px));
  margin: 36px auto 96px;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(120, 75, 34, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.legal-document h1 {
  max-width: 760px;
  margin-bottom: 12px;
  color: #3c2b20;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.04;
  white-space: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-document h2 {
  margin: 46px 0 14px;
  color: #4b3424;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
}

.legal-document p,
.legal-document li {
  color: #4f4943;
  font-size: 1.02rem;
  line-height: 1.78;
}

.legal-document section:first-of-type h2 {
  margin-top: 34px;
}

.legal-document a {
  color: #9a642d;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 640px) {
  .legal-topbar {
    width: min(1080px, calc(100% - 28px));
    gap: 14px;
  }

  .legal-document {
    width: min(960px, calc(100% - 28px));
    margin-top: 28px;
    padding: 34px 28px;
    border-radius: 28px;
  }

  .legal-document h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.8rem);
    line-height: 1.08;
  }
}

.auth-modal {
  width: min(460px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 32px;
  background: transparent;
}

.auth-modal::backdrop {
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(8px);
}

.auth-card {
  padding: 34px;
  display: grid;
  gap: 14px;
  border-radius: 32px;
}

.auth-card h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.auth-card p:not(.eyebrow) {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.46;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
}

.modal-close {
  width: 38px;
  height: 38px;
  justify-self: end;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 28px;
  max-width: min(520px, calc(100vw - 32px));
  padding: 14px 18px;
  color: #fff;
  background: rgba(23, 23, 23, 0.88);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 520ms ease var(--delay, 0ms), transform 520ms ease var(--delay, 0ms);
}

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

@keyframes scan {
  0% {
    transform: translateX(-36px);
  }
  50% {
    transform: translateX(124px);
  }
  100% {
    transform: translateX(-36px);
  }
}

@media (max-width: 1100px) {
  .hero-image {
    object-position: 82% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(33, 24, 20, 0.12) 0%, rgba(33, 24, 20, 0.05) 58%, rgba(40, 22, 12, 0.04) 100%),
      linear-gradient(180deg, rgba(255, 252, 246, 0.18) 0%, rgba(244, 224, 194, 0.02) 52%, rgba(54, 32, 20, 0.12) 100%);
  }

  .hero-section::before {
    top: 88px;
    width: min(78vw, 760px);
    background:
      linear-gradient(90deg, rgba(29, 23, 20, 0.76) 0%, rgba(38, 29, 24, 0.62) 68%, rgba(38, 29, 24, 0.22) 100%),
      linear-gradient(180deg, rgba(255, 237, 211, 0.1), rgba(171, 112, 61, 0.08));
  }

  .nav {
    position: fixed;
    inset: 102px 20px auto;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 26px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-floating);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav-login-link {
    min-height: 50px;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(120, 75, 34, 0.18);
    border-radius: 999px;
    color: #fffaf3;
    background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
    box-shadow: 0 16px 30px rgba(24, 17, 12, 0.12);
    opacity: 1;
    font-weight: 800;
  }

  .icon-button {
    display: inline-flex;
  }

  .hero-content,
  .try-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 160px;
  }

  .hero-copy {
    max-width: 640px;
    padding-top: 26px;
  }

  h1 {
    max-width: 520px;
    font-size: 3.9rem;
    line-height: 1.05;
  }

  .hero-title {
    max-width: 720px;
    font-size: clamp(3rem, 6vw, 4.15rem);
  }

  .hero-business-subtitle {
    white-space: normal;
  }

  .pricing-grid,
  .pricing-grid-two,
  .pricing-pack-grid,
  .dashboard-quota-grid {
    grid-template-columns: 1fr;
  }

  .pricing-group {
    padding: 22px;
  }

  .hero-title .title-accent {
    margin-top: 10px;
  }

  .hero-steps {
    margin-top: 40px;
    gap: 20px;
  }

  .hero-actions {
    margin-top: 36px;
  }

  .hero-panel {
    display: none;
  }

  .business-hero-image {
    object-position: 72% center;
  }

  .business-hero-section::before {
    top: 88px;
    width: min(78vw, 760px);
    background:
      linear-gradient(90deg, rgba(29, 23, 20, 0.76) 0%, rgba(38, 29, 24, 0.62) 68%, rgba(38, 29, 24, 0.22) 100%),
      linear-gradient(180deg, rgba(255, 237, 211, 0.1), rgba(171, 112, 61, 0.08));
  }

  .business-hero-content {
    padding-top: 160px;
  }

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

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

  .try-intro-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }

  .try-benefits {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 18px 0 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 0;
    border-top: 1px solid rgba(23, 23, 23, 0.12);
  }

  .benefit-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }

  .benefit-item > span {
    width: 78px;
    height: 78px;
  }

  .mode-card {
    min-height: 280px;
  }

  .garment-upload-panel {
    grid-template-columns: 1fr;
  }

  .try-submit {
    justify-self: stretch;
  }

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .app-splash-inner {
    gap: 18px;
  }

  .app-splash-mark {
    width: 60px;
    height: 60px;
  }

  .app-splash-wordmark {
    --splash-wordmark-width: min(52vw, 230px);
  }

  html,
  body {
    overflow-x: hidden;
  }

  .topbar {
    top: 12px;
    width: calc(100vw - 24px);
    height: 64px;
    padding-inline: 16px;
  }

  .brand-logo img {
    width: 156px;
    height: 38px;
  }

  .header-actions > .pill-button {
    min-height: 40px;
    padding-inline: 18px;
    display: inline-flex;
    font-size: 0.9rem;
  }

  .hero-content,
  .section,
  .footer {
    width: min(100vw - 28px, 100%);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    min-height: 100svh;
    padding: 104px 0 24px;
    align-items: end;
    justify-content: stretch;
    gap: 26px;
  }

  .hero-image {
    object-position: 100% center;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(250, 242, 230, 0.92) 0%, rgba(250, 242, 230, 0.66) 44%, rgba(250, 242, 230, 0.1) 78%),
      linear-gradient(180deg, rgba(255, 252, 246, 0.2) 0%, rgba(255, 248, 236, 0.12) 48%, rgba(250, 242, 230, 0.9) 100%);
  }

  .hero-section::before {
    display: none;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-top: 0;
    gap: 12px;
  }

  .hero-kicker {
    margin-bottom: 0;
    color: rgba(93, 59, 33, 0.8);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
  }

  h1 {
    font-size: clamp(2.26rem, 9.8vw, 3.05rem);
  }

  .hero-title {
    max-width: 100%;
    color: #34251e;
    font-size: clamp(2.26rem, 9.8vw, 3.05rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-shadow:
      0 16px 46px rgba(255, 248, 236, 0.72),
      0 1px 0 rgba(255, 255, 255, 0.52);
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 10px;
    color: rgba(54, 39, 29, 0.72);
    font-size: 0.78rem;
    line-height: 1.42;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.46);
  }

  .hero-business-subtitle {
    white-space: normal;
  }

  .hero-business-link {
    color: #6d421f;
    border-color: rgba(109, 66, 31, 0.36);
  }

  .hero-actions,
  .console-actions,
  .final-cta div {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-steps {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border-radius: 26px;
    background: rgba(255, 248, 238, 0.58);
    border-color: rgba(120, 75, 34, 0.12);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.48),
      0 18px 50px rgba(66, 42, 27, 0.1);
  }

  .hero-step {
    min-height: 82px;
    padding: 0;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 6px;
    text-align: center;
  }

  .hero-step span {
    width: 56px;
    height: 56px;
    border-radius: 17px;
  }

  .hero-step span img {
    width: 50px;
    height: 50px;
  }

  .hero-step p {
    color: rgba(54, 39, 29, 0.7);
    font-size: 0.68rem;
    line-height: 1.16;
    white-space: normal;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-start-button {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
    padding-inline: 28px;
    color: #fffaf3;
    background: linear-gradient(180deg, #2c2118 0%, #14100c 100%);
    box-shadow:
      0 18px 42px rgba(94, 58, 28, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 0 0 1px rgba(80, 50, 24, 0.22);
  }

  .pill-button {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .business-hero-section {
    min-height: calc(100svh - 92px);
    max-height: none;
    background: #211711;
  }

  .business-hero-picture {
    height: 56%;
    bottom: auto;
  }

  .business-hero-image {
    object-position: center top;
  }

  .business-hero-overlay {
    background:
      linear-gradient(180deg, rgba(30, 22, 17, 0.06) 0%, rgba(30, 22, 17, 0.14) 36%, rgba(33, 23, 17, 0.9) 58%, rgba(33, 23, 17, 1) 100%),
      linear-gradient(90deg, rgba(27, 19, 14, 0.34) 0%, rgba(27, 19, 14, 0.08) 58%, rgba(27, 19, 14, 0.14) 100%);
  }

  .business-hero-section::before {
    display: none;
  }

  .business-hero-content {
    width: min(100vw - 28px, 100%);
    min-height: calc(100svh - 92px);
    padding: 214px 0 22px;
    align-items: end;
  }

  .business-hero-copy {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    gap: 14px;
  }

  .business-hero-copy .hero-title {
    max-width: 430px;
    color: #fff8ef;
    font-size: clamp(2rem, 7.35vw, 2.46rem);
    line-height: 0.99;
    font-weight: 650;
    letter-spacing: -0.046em;
    text-shadow:
      0 18px 42px rgba(0, 0, 0, 0.36),
      0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .business-hero-copy .hero-subtitle {
    max-width: 420px;
    margin-top: 12px;
    color: rgba(255, 246, 235, 0.82);
    font-size: 0.82rem;
    line-height: 1.42;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  }

  .business-hero-copy .hero-kicker {
    margin-bottom: 14px;
    color: rgba(236, 205, 166, 0.9);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .business-hero-copy .hero-steps {
    margin-top: 16px;
    padding: 8px;
    gap: 6px;
    border-radius: 24px;
    background: rgba(255, 249, 238, 0.76);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.64),
      0 18px 48px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(118%);
    -webkit-backdrop-filter: blur(18px) saturate(118%);
  }

  .business-hero-copy .hero-step {
    min-height: 74px;
    padding: 6px 4px;
  }

  .business-hero-copy .hero-step span {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .business-hero-copy .hero-step span img {
    width: 42px;
    height: 42px;
  }

  .business-hero-copy .hero-step p {
    color: rgba(55, 40, 30, 0.72);
    font-size: 0.62rem;
  }

  .business-hero-secondary {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  .business-content {
    padding-top: 52px;
  }

  .business-content .feature-grid {
    margin-top: 0;
    padding: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 18px 52px rgba(44, 35, 27, 0.08);
    backdrop-filter: blur(16px) saturate(124%);
    -webkit-backdrop-filter: blur(16px) saturate(124%);
  }

  .business-content .feature-grid article {
    min-height: 70px;
    padding: 10px;
    display: grid;
    align-content: start;
    gap: 7px;
    border-radius: 16px;
    background: rgba(255, 250, 242, 0.72);
    box-shadow: none;
  }

  .business-content .feature-grid article:nth-child(n + 5) {
    min-height: 64px;
  }

  .business-content .feature-grid span {
    margin-bottom: 0;
    font-size: 0.62rem;
    line-height: 1;
  }

  .business-content .feature-grid strong {
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .business-content .feature-grid::before {
    content: "8 возможностей для бизнеса";
    grid-column: 1 / -1;
    padding: 2px 4px 6px;
    color: #9a642d;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .section {
    padding-top: 86px;
  }

  .mobile-proof-section {
    width: min(100vw - 28px, 100%);
    margin: 22px auto 0;
    display: block;
  }

  .mobile-proof-panel {
    padding: 18px;
    display: grid;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 24px 70px rgba(44, 35, 27, 0.08);
    backdrop-filter: blur(18px) saturate(126%);
    -webkit-backdrop-filter: blur(18px) saturate(126%);
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .try-section .section-heading {
    margin-bottom: 38px;
  }

  .try-section .section-heading .eyebrow {
    margin-bottom: 16px;
  }

  .try-section .section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(2.08rem, 8.5vw, 2.72rem);
    line-height: 1.02;
  }

  .try-section .section-heading p:not(.eyebrow) {
    font-size: 1.02rem;
    line-height: 1.42;
  }

  .mode-grid,
  .scenario-grid,
  .history-grid {
    width: auto;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
    grid-template-columns: 1fr;
  }

  .business-project-featured {
    grid-template-columns: 1fr;
  }

  .history-filters {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .business-project-archive-head {
    display: grid;
    gap: 8px;
    align-items: start;
  }

  .business-project-row {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
  }

  .business-project-row-media {
    width: 82px;
    height: 104px;
  }

  .business-project-row-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-project-workspace-head,
  .business-project-workspace-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .business-project-workspace-actions {
    justify-content: stretch;
  }

  .business-project-workspace-source {
    width: fit-content;
  }

  .business-project-preview-card,
  .business-project-preview-card > img {
    min-height: 420px;
  }

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

  .scenario-group-label p {
    max-width: 100%;
    text-align: left;
    font-size: 0.88rem;
  }

  .scenario-group-business {
    margin-top: 10px;
    padding-top: 18px;
  }

  .try-intro-panel {
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 24px;
  }

  .try-intro-panel > .try-example,
  .try-intro-panel > .try-benefits {
    display: none;
  }

  .dropzone {
    min-height: 214px;
    padding: 30px 18px 18px;
  }

  .dropzone b {
    max-width: 330px;
    margin-top: 32px;
    padding: 8px 12px;
    font-size: 0.78rem;
    line-height: 1.26;
  }

  .try-example-photos {
    gap: 16px;
  }

  .try-example-photos > i {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .try-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mobile-proof-panel .try-benefits {
    min-height: auto;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(23, 23, 23, 0.1);
  }

  .consumer-mode-switch {
    grid-template-columns: 1fr;
  }

  .mode-card {
    min-height: 330px;
    padding: 24px;
  }

  .mode-card[data-mode-card="separate_items"] {
    background-image:
      linear-gradient(90deg, rgba(244, 250, 255, 0.92) 0%, rgba(244, 250, 255, 0.66) 42%, rgba(244, 250, 255, 0.08) 100%),
      url("assets/screen-03/mode-card-assemble-mobile-bg.png");
    background-position: center;
  }

  .mode-card[data-mode-card="ready_look"] {
    background-image:
      linear-gradient(90deg, rgba(255, 249, 240, 0.9) 0%, rgba(255, 249, 240, 0.64) 42%, rgba(255, 249, 240, 0.06) 100%),
      url("assets/screen-03/mode-card-ready-mobile-bg.png");
    background-position: center;
  }

  .mode-card p {
    max-width: 230px;
    color: rgba(31, 53, 75, 0.68);
    font-size: 1rem;
    line-height: 1.36;
  }

  .garment-fields,
  .garment-fields.active {
    grid-template-columns: 1fr;
  }

  .garment-upload-panel {
    padding: 16px;
  }

  .generation-status {
    min-width: 0;
  }

  .history-empty {
    grid-template-columns: 1fr;
  }

  .history-empty .pill-button {
    grid-row: auto;
    grid-column: auto;
  }

  .try-console {
    grid-template-columns: 1fr;
  }

  .try-history {
    padding: 18px;
  }

  .try-history-head {
    display: grid;
    gap: 14px;
  }

  .try-history-head h3 {
    margin-top: 4px;
    font-size: 1.28rem;
  }

  .try-history-head p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .history-grid span {
    width: fit-content;
    margin: 10px 12px 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: rgba(46, 39, 33, 0.78);
    background: rgba(255, 250, 242, 0.84);
    font-size: 0.78rem;
    line-height: 1.2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .scenario-card div {
    inset: 24px auto 24px 24px;
    width: calc(100% - 48px);
  }

  .scenario-asset-card {
    min-height: 470px;
    aspect-ratio: auto;
    border-radius: 24px;
  }

  .scenario-feature-card {
    height: 330px;
    min-height: 0;
  }

  .scenario-feature-card > picture > img {
    object-position: center center;
  }

  .scenario-consumer-card > picture > img {
    object-position: 58% center;
  }

  .scenario-business-card > picture > img {
    object-position: 62% center;
  }

  .scenario-asset-card::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0) 0%, rgba(255, 250, 244, 0.04) 54%, rgba(255, 250, 244, 0.32) 79%, rgba(255, 250, 244, 0.58) 100%),
      linear-gradient(90deg, rgba(255, 250, 244, 0.08) 0%, rgba(255, 250, 244, 0.02) 58%, rgba(255, 250, 244, 0) 100%);
  }

  .scenario-asset-card .scenario-content {
    inset: auto 18px 14px;
    width: auto;
    min-height: 0;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon button";
    align-items: center;
    column-gap: 13px;
    row-gap: 10px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.58), rgba(255, 247, 235, 0.74));
    border: 1px solid rgba(180, 132, 78, 0.12);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.76),
      0 14px 28px rgba(58, 41, 29, 0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .scenario-asset-card .scenario-icon {
    grid-area: icon;
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    align-self: start;
    margin: 0;
    overflow: visible;
  }

  .scenario-asset-card .scenario-icon img {
    width: 54px;
    height: 54px;
  }

  .scenario-asset-card h3 {
    grid-area: title;
    max-width: 100%;
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .scenario-asset-card p {
    grid-area: copy;
    max-width: 100%;
    color: rgba(42, 38, 34, 0.82);
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .scenario-try-button {
    grid-area: button;
    min-height: 42px;
    margin-top: 0;
  }

  @media (max-width: 430px) {
    .scenario-feature-card {
      height: 316px;
    }

    .scenario-asset-card .scenario-content {
      grid-template-columns: 58px minmax(0, 1fr);
      grid-template-areas:
        "icon title"
        "icon button";
      column-gap: 12px;
      row-gap: 8px;
      padding: 11px 12px;
    }

    .scenario-asset-card .scenario-icon {
      width: 58px;
      height: 58px;
    }

    .scenario-asset-card .scenario-icon img {
      width: 50px;
      height: 50px;
    }

    .scenario-asset-card h3 {
      font-size: 1.06rem;
    }

    .scenario-asset-card p {
      font-size: 0.76rem;
    }

    .scenario-try-button {
      min-height: 38px;
      padding: 0 13px 0 16px;
      gap: 10px;
      font-size: 0.78rem;
    }
  }

  .price-card {
    min-height: auto;
    padding: 26px;
    grid-template-rows: none;
    gap: 16px;
  }

  .price-head {
    margin-bottom: 6px;
    gap: 16px;
  }

  .price-card p {
    margin: 0 0 4px;
    line-height: 1.38;
  }

  .footer {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  body:not(.force-desktop) .footer {
    width: min(100vw - 28px, 100%);
    margin: 54px auto 24px;
    padding-top: 28px;
    gap: 28px;
  }

  body:not(.force-desktop) .footer p {
    max-width: 300px;
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  body:not(.force-desktop) .footer-brand {
    gap: 10px;
  }

  body:not(.force-desktop) .footer-lockup {
    width: 152px;
  }

  body:not(.force-desktop) .footer nav {
    gap: 8px;
  }

  body:not(.force-desktop) .footer nav strong {
    margin-bottom: 2px;
    font-size: 1rem;
  }

  body:not(.force-desktop) .footer nav a {
    font-size: 0.95rem;
    line-height: 1.28;
  }

  body:not(.force-desktop) .footer-bottom {
    margin-top: 0;
    padding-top: 18px;
    gap: 8px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .app-shell,
  .business-layout,
  .consumer-layout,
  .creator-shell {
    padding-top: 92px;
  }

  body.route-business-create .creator-shell {
    padding-top: 0;
  }

  .route-heading h1,
  .business-hero h1,
  .empty-route h1 {
    font-size: clamp(2.2rem, 10vw, 3.05rem);
  }

  .two-columns,
  .three-columns,
  .business-hero,
  .feature-grid,
  .route-section-grid,
  .business-example-grid,
  .model-grid,
  .result-grid,
  .summary-grid,
  .creator-shell,
  .result-layout {
    grid-template-columns: 1fr;
  }

  .result-view .result-layout {
    grid-template-columns: 1fr;
  }

  .generation-options {
    grid-template-columns: 1fr;
  }

  .model-current-choice {
    display: grid;
    gap: 6px;
  }

  .model-angle-choice {
    padding: 14px;
  }

  .model-angle-choice-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .model-angle-choice-buttons button {
    width: 100%;
    padding: 0 10px;
  }

  .creator-step-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .model-current-choice span {
    text-align: left;
  }

  .model-card-inline-cta {
    padding: 14px;
  }

  .business-project-workspace-actions .pill-button,
  .business-project-result-thumb {
    width: 100%;
  }

  .flow-card,
  .route-panel,
  .creator-panel,
  .creator-rail {
    padding: 18px;
    border-radius: 24px;
  }

  .auth-route-panel {
    padding: 24px 18px;
    text-align: left;
  }

  .auth-route-copy h1 {
    max-width: 420px;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .auth-route-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .auth-route-panel .auth-method-grid {
    margin-top: 24px;
    gap: 12px;
  }

  .auth-field {
    padding: 12px;
    border-radius: 20px;
  }

  .auth-route-actions .pill-button {
    width: 100%;
  }

  .business-product-upload-grid,
  .business-upload-previews {
    grid-template-columns: 1fr;
  }

  .business-product-upload-grid .dropzone.compact {
    min-height: 210px;
  }

  .preview-strip div {
    grid-template-columns: 1fr;
  }

  .route-actions,
  .creator-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .creator-rail {
    position: static;
  }

  .creator-rail ol {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .creator-rail li {
    padding: 9px 4px;
    text-align: center;
    font-size: 0.68rem;
  }

  .business-preview-card img {
    aspect-ratio: 4 / 3;
  }

  .model-card-preview > img,
  .model-angle-strip img {
    object-fit: contain;
    object-position: center center;
  }

  .model-card-preview > img {
    aspect-ratio: auto;
  }

  .model-angle-strip img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .examples-panel {
    padding: 18px;
  }

  .business-example-grid {
    gap: 14px;
  }

  .business-example-grid article {
    padding: 12px;
    gap: 10px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 238, 0.86)),
      rgba(255, 255, 255, 0.84);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      0 18px 48px rgba(55, 40, 28, 0.08);
  }

  .business-example-grid article::before {
    width: 36px;
    height: 5px;
    top: 20px;
    left: 22px;
    opacity: 0.72;
  }

  .business-example-grid img {
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center center;
    padding: 10px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 72% 8%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 34%),
      linear-gradient(145deg, #f5ede4 0%, #fffaf4 50%, #efe4d8 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  }

  .business-example-grid .example-source img {
    background:
      radial-gradient(circle at 70% 8%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 34%),
      linear-gradient(145deg, #efe7de 0%, #fff7ee 55%, #eaded1 100%);
  }

  .business-example-grid .example-model img {
    padding: 12px;
    background:
      radial-gradient(circle at 64% 12%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 38%),
      linear-gradient(145deg, #efe5dc 0%, #fff9f1 54%, #eadccc 100%);
  }

  .business-example-grid .example-result img {
    padding: 8px;
    background:
      radial-gradient(circle at 58% 12%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 36%),
      linear-gradient(145deg, #f0e1d0 0%, #fff5e8 52%, #ead4bd 100%);
  }

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

  .route-choice-grid {
    grid-template-columns: 1fr;
  }

  .quota-card {
    grid-template-columns: 1fr;
  }

  .route-choice-card {
    min-height: 0;
    padding: 20px;
  }

  .business-goal-grid,
  .seller-structure-grid,
  .auth-method-grid {
    grid-template-columns: 1fr;
  }

  .save-account-card .pill-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .app-splash,
  .app-splash-mark,
  .app-splash-wordmark,
  .app-splash-wordmark img {
    animation: none !important;
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .app-splash-wordmark {
    max-width: var(--splash-wordmark-width);
  }
}

body.force-desktop {
  width: var(--desktop-preview-width, 1280px);
  min-width: var(--desktop-preview-width, 1280px);
  transform: scale(var(--desktop-preview-scale, 1));
  transform-origin: 0 0;
}

body.force-desktop .topbar {
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  transform: none;
}

body.force-desktop .nav {
  position: static;
  inset: auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

body.force-desktop .icon-button {
  display: none;
}

body.force-desktop .header-actions > .pill-button {
  display: inline-flex;
}

body.force-desktop .hero-content {
  width: 1232px;
  min-height: min(900px, 100svh);
  padding: 112px 40px 72px;
  display: grid;
  grid-template-columns: 650px minmax(410px, 1fr);
  align-items: center;
  gap: 28px;
}

body.force-desktop h1 {
  font-size: clamp(4.1rem, 5.25vw, 5.55rem);
  line-height: 1.04;
}

body.force-desktop .dashboard-choice h1 {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

body.force-desktop .hero-actions,
body.force-desktop .console-actions,
body.force-desktop .final-cta div {
  flex-direction: row;
  align-items: center;
}

body.force-desktop .pill-button {
  width: auto;
}

body.force-desktop .hero-panel {
  width: 224px;
  min-height: 0;
  border-radius: 26px;
}

body.force-desktop .section,
body.force-desktop .footer {
  width: 1232px;
}

body.force-desktop .section {
  padding-top: 128px;
}

body.force-desktop .section-heading {
  margin: 0 auto 54px;
  text-align: center;
}

body.force-desktop .try-intro-panel {
  grid-template-columns: minmax(320px, 0.9fr) minmax(430px, 1.18fr) minmax(250px, 0.68fr);
  min-height: 520px;
  padding: 38px 46px;
}

body.force-desktop .try-benefits {
  grid-column: auto;
  min-height: 420px;
  padding: 0 0 0 28px;
  grid-template-columns: 1fr;
  gap: 24px;
  border-top: 0;
  border-left: 1px solid rgba(23, 23, 23, 0.16);
}

body.force-desktop .benefit-item {
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
}

body.force-desktop .benefit-item > span {
  width: 78px;
  height: 78px;
}

body.force-desktop .try-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.45fr);
}

body.force-desktop .mode-grid,
body.force-desktop .scenario-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.force-desktop .pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.force-desktop .history-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.force-desktop .try-console {
  grid-template-columns: minmax(0, 1fr) auto;
}

body.force-desktop .faq-layout {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.78fr);
}

body.force-desktop .footer {
  grid-template-columns: minmax(320px, 1.3fr) minmax(280px, 1fr) minmax(220px, 0.8fr);
  margin-top: 112px;
}

body.force-desktop .footer-bottom {
  flex-direction: row;
}

.hero-steps.hero-steps-clean {
  padding: 0;
  gap: 24px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-steps.hero-steps-clean .hero-step {
  min-height: 128px;
  padding: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
}

.hero-steps.hero-steps-clean .hero-step span {
  width: 112px;
  height: 112px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-steps.hero-steps-clean .hero-step span img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.scenario-asset-card .scenario-icon.scenario-icon-clean {
  width: 96px;
  height: 96px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.scenario-asset-card .scenario-icon.scenario-icon-clean img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.scenario-asset-card .scenario-icon.scenario-icon-product-card {
  overflow: visible;
}

.scenario-asset-card .scenario-icon.scenario-icon-product-card img {
  width: 78px;
  height: 78px;
  max-width: none;
  object-fit: contain;
}

@media (max-width: 760px) {
  .hero-steps.hero-steps-clean {
    width: 100%;
    padding: 0;
    gap: 10px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-steps.hero-steps-clean .hero-step {
    min-height: 100px;
    gap: 5px;
  }

  .hero-steps.hero-steps-clean .hero-step span,
  .hero-steps.hero-steps-clean .hero-step span img {
    width: 78px;
    height: 78px;
  }

  .scenario-asset-card .scenario-icon.scenario-icon-clean {
    width: 82px;
    height: 82px;
  }

  .scenario-asset-card .scenario-icon.scenario-icon-clean img {
    width: 82px;
    height: 82px;
  }

  .scenario-business-card .scenario-content {
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 14px;
  }

  .scenario-business-card .scenario-icon.scenario-icon-product-card {
    width: 86px;
    height: 86px;
    align-self: center;
  }

  .scenario-business-card .scenario-icon.scenario-icon-product-card img {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 430px) {
  .hero-steps.hero-steps-clean .hero-step span,
  .hero-steps.hero-steps-clean .hero-step span img {
    width: 70px;
    height: 70px;
  }

  .scenario-asset-card .scenario-icon.scenario-icon-clean,
  .scenario-asset-card .scenario-icon.scenario-icon-clean img {
    width: 76px;
    height: 76px;
  }

  .scenario-business-card .scenario-content {
    grid-template-columns: 76px minmax(0, 1fr);
    column-gap: 12px;
  }

  .scenario-business-card .scenario-icon.scenario-icon-product-card {
    width: 76px;
    height: 76px;
  }

  .scenario-business-card .scenario-icon.scenario-icon-product-card img {
    width: 70px;
    height: 70px;
  }
}

.business-hero-copy .hero-steps.business-hero-steps-clean {
  padding: 0;
  gap: 28px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.business-hero-copy .hero-steps.business-hero-steps-clean .hero-step {
  min-height: 128px;
  padding: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
}

.business-hero-copy .hero-steps.business-hero-steps-clean .hero-step span {
  width: 112px;
  height: 112px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.business-hero-copy .hero-steps.business-hero-steps-clean .hero-step span img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  transform: none;
}

.business-hero-copy .hero-steps.business-hero-steps-clean .hero-step p {
  color: rgba(255, 248, 236, 0.82);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

@media (max-width: 760px) {
  .business-hero-copy .hero-steps.business-hero-steps-clean {
    width: 100%;
    padding: 0;
    gap: 10px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .business-hero-copy .hero-steps.business-hero-steps-clean .hero-step {
    min-height: 104px;
    padding: 0;
    gap: 5px;
  }

  .business-hero-copy .hero-steps.business-hero-steps-clean .hero-step span,
  .business-hero-copy .hero-steps.business-hero-steps-clean .hero-step span img {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 430px) {
  .business-hero-copy .hero-steps.business-hero-steps-clean .hero-step span,
  .business-hero-copy .hero-steps.business-hero-steps-clean .hero-step span img {
    width: 74px;
    height: 74px;
  }
}
