:root {
  color-scheme: light;
  --bg: #eef5ff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(48, 96, 170, 0.12);
  --line-strong: rgba(48, 96, 170, 0.24);
  --text: #122033;
  --muted: #5f7187;
  --accent: #2d6cff;
  --accent-strong: #1f4fcf;
  --accent-soft: #e9f0ff;
  --shadow: 0 24px 70px rgba(34, 77, 148, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 24%),
    radial-gradient(circle at top right, rgba(112, 168, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
  color: var(--text);
}

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

.shell {
  width: 100%;
  margin: 0;
  padding: 0 0 0;
}

.topbar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-announcement {
  display: none;
}

.topbar-announcement-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #f2f5f8;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.announcement-close {
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
}

.topbar-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 52px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-actions a {
  font-size: 13px;
  color: var(--muted);
}

.topbar-workspace-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(94, 90, 84, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.footer-policy-links a:hover,
.footer-socials a:hover,
.footer-menu-column a:hover,
.footer-support-link:hover {
  color: var(--accent-strong);
}

.site-footer {
  width: 100vw;
  margin: 88px 0 0 calc(50% - 50vw);
  overflow: hidden;
  background: linear-gradient(180deg, #14394b 0%, #102f40 100%);
  border-top: 1px solid rgba(182, 220, 255, 0.12);
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  color: #dfeaf7;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.95fr 1fr 0.95fr;
  gap: 56px;
  align-items: start;
  padding: 92px 0 88px;
  min-height: 360px;
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-column,
.footer-brand-block {
  min-height: 100%;
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-kicker {
  color: rgba(224, 238, 252, 0.74);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-menu-column a {
  width: fit-content;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.footer-brand-block {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  padding-top: 20px;
}

.footer-brand {
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-brand-mark {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid rgba(223, 234, 247, 0.22);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(223, 234, 247, 0.1), rgba(223, 234, 247, 0.03));
}

.footer-brand-block p,
.footer-note-column p {
  margin: 0;
  color: rgba(223, 234, 247, 0.82);
  line-height: 1.8;
}

.footer-note-column {
  gap: 16px;
}

.footer-subscribe-placeholder {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(223, 234, 247, 0.18);
  background: rgba(12, 35, 49, 0.35);
  color: rgba(223, 234, 247, 0.72);
}

.footer-support-text {
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  border-top: 1px solid rgba(182, 220, 255, 0.12);
  background: rgba(7, 22, 35, 0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 18px 0 22px;
}

.footer-copyright {
  color: rgba(223, 234, 247, 0.74);
  font-size: 13px;
}

.footer-policy-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-policy-links a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

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

#app {
  margin-top: 0;
}

.hero,
.section,
.workspace {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero,
.workspace,
.section {
  margin-top: 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 48px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(228, 240, 255, 0.92));
}

.hero-bleed {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  display: block;
  min-height: 0;
  padding: 0;
}

.hero-showcase {
  background: #ded9d1;
}

.hero-showcase-frame {
  width: 100%;
}

.hero-scene {
  position: relative;
  min-height: clamp(540px, 62vh, 760px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(22, 29, 35, 0.1), rgba(22, 29, 35, 0.22)),
    url("./assets/landing/hero-living-room.jpg");
  background-position: center 58%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-scene-window {
  position: absolute;
  top: 42px;
  width: 22%;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(240, 240, 240, 0.3)),
    linear-gradient(90deg, rgba(94, 88, 82, 0.18) 0 2%, transparent 2% 98%, rgba(94, 88, 82, 0.18) 98% 100%);
  border: 1px solid rgba(86, 77, 69, 0.22);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.16);
}

.hero-scene-window,
.hero-scene-console,
.hero-scene-sofa,
.hero-scene-table,
.hero-scene-accessory {
  display: none;
}

.hero-window-left {
  left: 5%;
}

.hero-window-center {
  left: 39%;
}

.hero-window-right {
  right: 5%;
}

.hero-scene-console {
  position: absolute;
  left: 5%;
  bottom: 34%;
  width: 20%;
  height: 15%;
  background: linear-gradient(180deg, #8b735f 0%, #6f5d4f 100%);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(44, 33, 27, 0.18);
}

.hero-scene-console::before,
.hero-scene-console::after {
  content: "";
  position: absolute;
  top: -36px;
  width: 22px;
  height: 54px;
  background: linear-gradient(180deg, #443a32 0%, #6e655d 100%);
}

.hero-scene-console::before {
  left: 22%;
}

.hero-scene-console::after {
  left: 56%;
}

.hero-scene-sofa {
  position: absolute;
  left: 12%;
  bottom: 12%;
  width: 48%;
  height: 24%;
  border-radius: 110px 110px 64px 64px;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.6), transparent 20%),
    linear-gradient(180deg, #d8d0c5 0%, #c9c0b3 100%);
  box-shadow: 0 28px 54px rgba(69, 55, 40, 0.16);
}

.hero-scene-sofa::before,
.hero-scene-sofa::after {
  content: "";
  position: absolute;
  top: 16%;
  width: 14%;
  height: 24%;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8d0c5 0%, #c9c0b3 100%);
}

.hero-scene-sofa::before {
  left: 18%;
}

.hero-scene-sofa::after {
  right: 18%;
}

.hero-scene-table {
  position: absolute;
  right: 19%;
  bottom: 7%;
  width: 16%;
  height: 13%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22) 40%, rgba(27, 27, 27, 0.18) 100%),
    linear-gradient(180deg, rgba(92, 99, 108, 0.2), rgba(32, 38, 44, 0.24));
  box-shadow: 0 14px 34px rgba(28, 26, 25, 0.18);
}

.hero-scene-table::before {
  content: "";
  position: absolute;
  left: 40%;
  top: 70%;
  width: 18%;
  height: 62%;
  background: linear-gradient(180deg, #2d3033 0%, #151719 100%);
  transform: skew(-14deg);
}

.hero-scene-accessory {
  position: absolute;
  right: 24%;
  top: 23%;
  width: 4.5%;
  height: 16%;
  background:
    linear-gradient(180deg, rgba(31, 30, 28, 0.86), rgba(31, 30, 28, 0.62)),
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.18) 42% 58%, transparent 58%);
}

.hero-scene-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(12, 20, 26, 0.36), rgba(12, 20, 26, 0.08) 30%, rgba(12, 20, 26, 0.42) 100%),
    linear-gradient(90deg, rgba(16, 22, 27, 0.34), transparent 24%, transparent 76%, rgba(16, 22, 27, 0.34));
}

.hero-scene-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-showcase-copy {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1;
  width: 100%;
  padding: 0 32px;
  transform: translateY(-42%);
  display: grid;
  justify-items: center;
  text-align: center;
  color: #ffffff;
}

.hero-copy-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.hero-showcase-copy h1 {
  max-width: 11ch;
  display: grid;
  justify-items: center;
  gap: 2px;
  margin: 0 auto 20px;
  color: #ffffff;
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  font-size: clamp(66px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.hero-showcase-copy h1 span {
  display: block;
  width: 100%;
  text-align: center;
}

.hero-showcase-copy p {
  max-width: 42rem;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-wrap: balance;
}

.hero-copy-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-showcase-copy .btn {
  min-height: 50px;
  min-width: 316px;
  padding: 0 76px;
  border-radius: 0;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-copy-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.hero-copy-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.hero-endorsement-band {
  overflow: hidden;
  background: #ddd5ce;
  border-top: 1px solid rgba(110, 100, 90, 0.18);
  min-height: 60px;
}

.hero-endorsement-marquee {
  width: 100%;
  overflow: hidden;
}

.hero-endorsement-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: hero-marquee 28s linear infinite;
}

.hero-endorsement-track span {
  flex: 0 0 auto;
  padding: 17px 44px;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 600;
  color: #5d6b75;
}

.hero-endorsement-track span:nth-child(3n + 2) {
  color: #f2f0eb;
}

.hero-endorsement-track span:nth-child(3n) {
  color: #c97d44;
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-endorsement-track {
    animation: none;
  }
}

.hero-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  padding: 52px 0 64px;
}

.hero h1,
.section h2,
.panel h2 {
  margin: 0 0 12px;
  line-height: 1.08;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(40px, 6vw, 72px);
}

.hero-bright {
  align-items: stretch;
}

.hero-copy-bright h1 {
  max-width: 8ch;
}

.hero-text,
.section p,
.feature-card p,
.pricing-card p,
.auth-card span,
.status-list,
.product-card p,
.product-story-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 680px;
  font-size: 17px;
}

.hero-slider-card {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 245, 255, 0.92));
  box-shadow: var(--shadow);
}

.hero-slider-track,
.testimonial-carousel-track {
  position: relative;
}

.hero-slide,
.step-panel,
.testimonial-card[data-testimonial-slide] {
  display: none;
}

.hero-slide.is-active,
.step-panel.is-active,
.testimonial-card[data-testimonial-slide].is-active {
  display: block;
}

.hero-slide-visual {
  min-height: 410px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.room-scene {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 49, 92, 0.08));
}

.room-scene-one {
  background-color: #dbe8ff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(20, 63, 122, 0.08)),
    linear-gradient(135deg, #cfe0ff, #f4f8ff 34%, #adc7ff 100%);
}

.room-scene-two {
  background-color: #dff2ff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(17, 74, 100, 0.08)),
    linear-gradient(135deg, #d9f0ff, #f8fcff 34%, #b7dfff 100%);
}

.room-scene-three {
  background-color: #e5e9ff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(61, 66, 126, 0.08)),
    linear-gradient(135deg, #dfe3ff, #fafbff 34%, #c6cffd 100%);
}

.hero-slide-copy {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.hero-slide-copy span,
.results-card span,
.step-panel-copy span {
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-slide-copy strong {
  font-size: 28px;
  line-height: 1.2;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-strong);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.slider-prev {
  left: 12px;
}

.slider-next {
  right: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 79, 207, 0.18);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(79, 54, 35, 0.08);
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(125, 77, 43, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
}

.editorial-intro-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(180deg, #fbfbf9 0%, #f7f7f4 100%);
  border-top: 1px solid rgba(108, 116, 128, 0.08);
  border-bottom: 1px solid rgba(108, 116, 128, 0.08);
}

.editorial-intro-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 58px;
  text-align: center;
}

.editorial-lead,
.editorial-copy,
.editorial-cta-copy {
  margin: 0 auto;
  color: #4f463d;
}

.editorial-lead {
  max-width: 16ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.1vw, 40px);
  line-height: 1.42;
  letter-spacing: 0.01em;
}

.editorial-lead.secondary {
  max-width: 22ch;
  margin-top: 12px;
  font-size: clamp(22px, 2.4vw, 32px);
  color: #5e544a;
}

.editorial-copy {
  max-width: 700px;
  margin-top: 24px;
  color: #5f584f;
  font-size: 17px;
  line-height: 1.85;
}

.editorial-cta-copy {
  max-width: 34ch;
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.65;
  color: #4a4138;
}

.editorial-intro-action {
  margin-top: 18px;
}

.btn-dark {
  background: #5f7a8a;
  color: #fdfbf8;
  border-color: #5f7a8a;
  box-shadow: none;
}

.btn-dark:hover {
  background: #526c7b;
  border-color: #526c7b;
}

.editorial-kicker-block {
  margin-top: 44px;
}

.editorial-kicker {
  display: inline-block;
  color: #8a7d70;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.editorial-kicker-block h2 {
  max-width: 20ch;
  margin: 10px auto 0;
  color: #433c35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.24;
  font-weight: 500;
}

.route-home .topbar-inner {
  min-height: 52px;
}

.route-home .brand,
.route-home .topbar-actions a {
  color: var(--text);
}

.route-home .topbar-actions {
  display: flex;
}

.route-home .topbar-workspace-link {
  border-color: rgba(94, 90, 84, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

.route-home .topbar-actions a {
  font-size: 13px;
}

.route-home .topbar .brand {
  font-size: 24px;
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-pill-row,
.workspace-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-proof-grid,
.feature-grid,
.pricing-grid,
.product-grid,
.legal-link-grid,
.step-grid,
.product-story-grid {
  display: grid;
  gap: 16px;
}

.pricing-legal-links {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.pricing-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.pricing-card-actions .btn {
  min-width: 180px;
}

.pricing-feedback {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  line-height: 1.65;
}

.pricing-feedback.is-error {
  border-color: rgba(173, 64, 47, 0.22);
  background: rgba(255, 244, 241, 0.95);
  color: #8f3328;
}

.pricing-feedback.is-success {
  border-color: rgba(83, 126, 67, 0.22);
  background: rgba(245, 251, 242, 0.95);
  color: #345f28;
}

.pricing-legal-links p {
  margin: 0;
  color: var(--muted);
}

.pricing-legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pricing-legal-actions .btn {
  min-width: 188px;
}

.pricing-legal-support {
  margin-top: 16px;
  font-size: 14px;
}

.pricing-legal-support a {
  color: var(--accent-strong);
}

.landing-legal-section {
  padding-top: 16px;
}

.landing-legal-section .pricing-legal-links {
  margin-top: 0;
}

.hero-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.proof-item {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-card,
.panel,
.auth-card,
.feature-card,
.pricing-card,
.product-card,
.legal-link-card,
.step-card,
.product-story-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.hero-card,
.feature-card,
.pricing-card,
.product-card,
.panel,
.legal-link-card,
.step-card,
.product-story-card {
  padding: 24px;
}

.hero-visual-card {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.95), rgba(248, 239, 229, 0.95));
}

.hero-visual-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.hero-card-label,
.stage-mini-label,
.product-story-label,
.hero-status {
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card-title {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.16;
}

.hero-status {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.hero-stage-grid {
  display: grid;
  gap: 14px;
}

.stage-mini {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.stage-mini-box {
  margin-top: 12px;
  min-height: 112px;
  padding: 20px;
  border-radius: 22px;
  border: 1px dashed rgba(125, 77, 43, 0.18);
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #efe2d2 0%, #f8f1e8 100%);
  color: rgba(125, 77, 43, 0.82);
  font-weight: 700;
}

.stage-mini-box.accent {
  background: linear-gradient(135deg, #ddc3a8 0%, #f0e2d3 100%);
}

.constraint-list,
.story-list,
.plan-list,
.status-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.constraint-list {
  margin-top: 12px;
}

.hero-product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-product-card {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.mini-product-card span {
  display: block;
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-product-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

.section,
.workspace {
  padding: 36px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tight {
  padding: 30px;
}

.narrow {
  width: min(700px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 780px;
}

.brand-proof-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 255, 0.88));
}

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

.proof-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.proof-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.proof-card p {
  margin: 0;
}

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

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

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

.editorial-step-grid {
  margin-top: 28px;
}

.step-card {
  background: rgba(255, 255, 255, 0.72);
}

.editorial-step-card {
  text-align: center;
  min-height: 100%;
}

.step-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.step-card h3,
.feature-card h3,
.product-story-card h3 {
  margin: 18px 0 10px;
  line-height: 1.25;
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(250, 244, 237, 0.96), rgba(255, 252, 247, 0.92));
}

.process-shell-section,
.results-showcase-section,
.testimonials-section {
  background: rgba(255, 255, 255, 0.9);
}

.process-shell-section {
  background: #fbfbf8;
}

.tutorial-head {
  max-width: 860px;
}

.tutorial-head .eyebrow {
  color: #8c7b6d;
}

.tutorial-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.2;
  font-weight: 500;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 18px;
  margin-top: 34px;
  width: min(1100px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.tutorial-card {
  background: transparent;
}

.tutorial-visual {
  position: relative;
  width: min(100%, 250px);
  margin: 0 auto;
  aspect-ratio: 0.98 / 1;
  overflow: hidden;
  border: 1px solid rgba(95, 95, 95, 0.06);
  background-color: #dedad4;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 20px 34px rgba(47, 42, 36, 0.08);
}

.tutorial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 29, 0.04), rgba(17, 24, 29, 0.12));
}

.tutorial-visual > * {
  display: none;
}

.tutorial-copy {
  max-width: 270px;
  padding: 16px 0 0;
  margin: 0 auto;
  text-align: center;
}

.tutorial-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.tutorial-copy strong {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #2f3135;
}

.tutorial-copy p {
  margin: 12px 0 0;
  color: #60666d;
  font-size: 14px;
  line-height: 1.7;
}

.tutorial-action {
  margin-top: 34px;
  text-align: center;
}

.tutorial-visual-capture {
  background-image:
    linear-gradient(180deg, rgba(17, 24, 29, 0.04), rgba(17, 24, 29, 0.12)),
    url("./assets/landing/tutorial-upload-room.jpg");
  background-position: center center;
}

.tutorial-phone {
  position: absolute;
  left: 50%;
  top: 10%;
  width: 46%;
  height: 74%;
  transform: translateX(-50%);
  border-radius: 26px;
  background: linear-gradient(180deg, #1f2429 0%, #101215 100%);
  box-shadow: 0 18px 32px rgba(15, 15, 15, 0.2);
}

.tutorial-phone-notch {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 34%;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tutorial-phone-room {
  position: absolute;
  inset: 24px 12px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(231, 231, 231, 0.18)),
    linear-gradient(180deg, #d9d8d6 0%, #eceae5 58%, #816a53 58%, #8e785f 100%);
}

.tutorial-phone-room::before,
.tutorial-phone-room::after {
  content: "";
  position: absolute;
  top: 16%;
  width: 18%;
  height: 30%;
  background: rgba(208, 226, 244, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.48);
}

.tutorial-phone-room::before {
  left: 6%;
}

.tutorial-phone-room::after {
  right: 6%;
}

.tutorial-phone-scan {
  position: absolute;
  left: 50%;
  bottom: 28%;
  width: 34%;
  height: 8%;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  clip-path: polygon(0 100%, 18% 20%, 82% 20%, 100% 100%);
}

.tutorial-visual-connect {
  background-image:
    linear-gradient(180deg, rgba(17, 24, 29, 0.04), rgba(17, 24, 29, 0.12)),
    url("./assets/landing/tutorial-connect-moodboard.jpg");
  background-position: center center;
}

.swatch-card {
  position: absolute;
  border-radius: 6px;
  background: #f7f4ef;
  box-shadow: 0 14px 30px rgba(71, 57, 44, 0.12);
}

.swatch-one {
  left: 10%;
  top: 10%;
  width: 54%;
  height: 38%;
}

.swatch-two {
  right: 10%;
  top: 12%;
  width: 32%;
  height: 28%;
}

.swatch-strip {
  position: absolute;
  left: 24%;
  bottom: 16%;
  width: 52%;
  height: 26%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #c9d8e1 0%, #adc0cb 100%);
  box-shadow: 0 10px 24px rgba(71, 57, 44, 0.16);
}

.swatch-strip::before,
.swatch-strip::after {
  content: "";
  position: absolute;
  width: 46%;
  height: 70%;
  top: 15%;
  border-radius: 999px;
  background: #d9d8d4;
}

.swatch-strip::before {
  left: -18%;
}

.swatch-strip::after {
  right: -18%;
}

.swatch-hand {
  position: absolute;
  left: 8%;
  bottom: 26%;
  width: 24%;
  height: 16%;
  background: linear-gradient(180deg, #efc2b3 0%, #d79a86 100%);
  clip-path: polygon(0 42%, 72% 0, 100% 52%, 42% 100%);
}

.tutorial-visual-select {
  background-image:
    linear-gradient(180deg, rgba(17, 24, 29, 0.05), rgba(17, 24, 29, 0.12)),
    url("./assets/landing/tutorial-confirm-desk.jpg");
  background-position: center center;
}

.desk-sheet {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(88, 81, 74, 0.1);
}

.desk-sheet-main {
  left: 14%;
  top: 12%;
  width: 44%;
  height: 54%;
  transform: rotate(-8deg);
}

.desk-sheet-side {
  right: 14%;
  top: 16%;
  width: 26%;
  height: 42%;
  transform: rotate(8deg);
}

.desk-note {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 28%;
  height: 18%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
}

.desk-fabric {
  position: absolute;
  width: 18%;
  height: 16%;
  bottom: 18%;
}

.fabric-blue {
  left: 16%;
  background: #8aa2b7;
}

.fabric-sand {
  right: 16%;
  background: #d5c7b5;
}

.desk-tool {
  position: absolute;
  right: 18%;
  top: 14%;
  width: 14%;
  height: 5px;
  background: #25292d;
  transform: rotate(48deg);
  box-shadow: 0 10px 0 #25292d;
}

.tutorial-visual-enjoy {
  background-image:
    linear-gradient(180deg, rgba(17, 24, 29, 0.03), rgba(17, 24, 29, 0.14)),
    url("./assets/landing/tutorial-enjoy-bedroom.jpg");
  background-position: center center;
}

.enjoy-room {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, transparent 0 64%, #a7937f 64% 100%);
}

.enjoy-room::before,
.enjoy-room::after {
  content: "";
  position: absolute;
  top: 12%;
  width: 28%;
  height: 42%;
  background: rgba(212, 230, 245, 0.65);
  border: 4px solid rgba(255, 255, 255, 0.48);
}

.enjoy-room::before {
  left: 14%;
}

.enjoy-room::after {
  right: 14%;
}

.enjoy-chair {
  position: absolute;
  left: 16%;
  bottom: 12%;
  width: 38%;
  height: 26%;
  border-radius: 38px 38px 18px 18px;
  background: linear-gradient(180deg, #d3c9bf 0%, #c1b3a4 100%);
}

.enjoy-lamp {
  position: absolute;
  right: 30%;
  top: 14%;
  width: 16%;
  height: 28%;
  background:
    radial-gradient(circle at 50% 18%, #61737c 0 34%, transparent 36%),
    linear-gradient(180deg, transparent 0 26%, #59646d 26% 92%, transparent 92%),
    linear-gradient(90deg, transparent 0 46%, #495056 46% 54%, transparent 54%);
}

.enjoy-curtain {
  position: absolute;
  right: 12%;
  top: 10%;
  width: 16%;
  height: 52%;
  background: linear-gradient(180deg, rgba(80, 87, 100, 0.68), rgba(171, 174, 179, 0.3));
}

.tutorial-visual-adjust {
  background-image:
    linear-gradient(180deg, rgba(17, 24, 29, 0.04), rgba(17, 24, 29, 0.12)),
    url("./assets/landing/tutorial-adjust-board.jpg");
  background-position: center center;
}

.adjust-board {
  position: absolute;
  inset: 14% 16%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 28px rgba(77, 70, 61, 0.12);
}

.adjust-chip {
  position: absolute;
  left: 50%;
  width: 44%;
  height: 13%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f2ee 0%, #e7e2da 100%);
}

.chip-one {
  top: 22%;
}

.chip-two {
  top: 40%;
}

.chip-three {
  top: 58%;
}

.adjust-slider {
  position: absolute;
  left: 24%;
  bottom: 18%;
  width: 52%;
  height: 4px;
  background: rgba(79, 92, 111, 0.18);
}

.adjust-slider::before,
.adjust-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
}

.adjust-slider::before {
  left: 0;
  width: 62%;
  height: 100%;
  background: #7388a3;
}

.adjust-slider::after {
  left: 56%;
  width: 18px;
  height: 18px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(52, 59, 67, 0.18);
}

.tutorial-visual-shop {
  background-image:
    linear-gradient(180deg, rgba(17, 24, 29, 0.04), rgba(17, 24, 29, 0.12)),
    url("./assets/landing/tutorial-shop-bag.jpg");
  background-position: center center;
}

.shop-bag {
  position: absolute;
  left: 34%;
  top: 20%;
  width: 34%;
  height: 42%;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(180deg, #c6d0d8 0%, #99a8b6 100%);
  box-shadow: 0 18px 28px rgba(77, 70, 61, 0.14);
}

.shop-bag::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18%;
  width: 44%;
  height: 28%;
  transform: translateX(-50%);
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.shop-box {
  position: absolute;
  background: linear-gradient(180deg, #efe8dd 0%, #dccdb9 100%);
  box-shadow: 0 12px 24px rgba(77, 70, 61, 0.1);
}

.shop-box-one {
  left: 18%;
  bottom: 18%;
  width: 22%;
  height: 18%;
}

.shop-box-two {
  right: 18%;
  bottom: 24%;
  width: 18%;
  height: 14%;
}

.shop-tag {
  position: absolute;
  right: 28%;
  top: 28%;
  width: 12%;
  height: 18%;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 18%, 78% 100%, 0 82%);
}

.shop-tag::before {
  content: "";
  position: absolute;
  right: 18%;
  top: 14%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(115, 136, 163, 0.55);
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.deliverable-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 26px 8px 8px;
}

.deliverable-visual {
  position: relative;
  min-height: 430px;
}

.deliverable-photo-shell {
  position: relative;
  width: min(100%, 700px);
  min-height: 470px;
  margin: 0 auto;
}

.deliverable-photo-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  background: #e8e2d8;
  box-shadow: 0 30px 48px rgba(68, 60, 50, 0.14);
}

.deliverable-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kit-board {
  position: absolute;
  background: #efeee9;
  box-shadow: 0 18px 32px rgba(79, 73, 64, 0.1);
}

.kit-back {
  left: 34%;
  top: 2%;
  width: 44%;
  height: 70%;
}

.kit-front {
  left: 4%;
  bottom: 0;
  width: 72%;
  height: 58%;
  background: #f5f3ee;
}

.kit-paper {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(76, 69, 62, 0.08);
}

.paper-tall {
  left: 16%;
  top: 8%;
  width: 18%;
  height: 46%;
  background: linear-gradient(180deg, #f3f0ea 0%, #e8e2d8 100%);
}

.paper-card {
  left: 38%;
  top: 10%;
  width: 20%;
  height: 32%;
  background: linear-gradient(180deg, #f8f4ed 0%, #efe5d1 100%);
}

.paper-postcard {
  left: 60%;
  top: 10%;
  width: 18%;
  height: 24%;
  background: linear-gradient(180deg, #d6e3dd 0%, #9cb7af 100%);
}

.paper-note {
  left: 40%;
  top: 48%;
  width: 20%;
  height: 18%;
  background: linear-gradient(180deg, #f8f8f5 0%, #ece9e2 100%);
}

.paper-chip {
  bottom: 12%;
  width: 12%;
  height: 18%;
}

.paper-blue {
  left: 16%;
  background: #4f6f86;
}

.paper-sand {
  left: 32%;
  background: #b79673;
}

.paper-red {
  left: 48%;
  background: #d16f61;
}

.kit-envelope {
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: 28%;
  height: 22%;
  background: linear-gradient(180deg, #e7dfd2 0%, #d8ccba 100%);
  transform: rotate(-8deg);
}

.deliverable-copy {
  max-width: 420px;
}

.deliverable-kicker {
  margin: 0 0 10px;
  color: #6a655e;
  font-size: 14px;
  font-weight: 600;
}

.deliverable-copy h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.14;
  font-weight: 500;
}

.deliverable-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: #4f545b;
  line-height: 1.85;
}

.showcase-copy {
  padding-top: 8px;
}

.step-tab-shell {
  margin-top: 28px;
}

.step-tab-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-tab-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

.step-tab-button.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.step-tab-panels {
  margin-top: 22px;
}

.step-panel {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.step-panel-visual {
  min-height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, #dfe8ff, #ffffff 34%, #c8dcff);
}

.step-visual-one {
  background: linear-gradient(135deg, #dbe8ff, #f7faff 34%, #bbd1ff);
}

.step-visual-two {
  background: linear-gradient(135deg, #d7f0ff, #f7fdff 34%, #bae2ff);
}

.step-visual-three {
  background: linear-gradient(135deg, #e5e4ff, #fafaff 34%, #c8cfff);
}

.step-visual-four {
  background: linear-gradient(135deg, #d9ebff, #ffffff 34%, #9fc4ff);
}

.step-panel-copy {
  margin-top: 18px;
}

.step-panel-copy h3 {
  margin: 10px 0 10px;
  font-size: 30px;
  line-height: 1.18;
}

.step-panel-copy p {
  margin: 0;
}

.product-story-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  margin-top: 24px;
}

.product-story-card {
  background: rgba(255, 250, 245, 0.92);
}

.featured-story {
  border-color: rgba(165, 110, 69, 0.24);
}

.legal-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.legal-link-card {
  display: block;
  background: rgba(255, 255, 255, 0.82);
}

.legal-link-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 22px;
}

.legal-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-link-label,
.stage-label,
.product-tag {
  color: var(--accent-strong);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured {
  border-color: rgba(165, 110, 69, 0.26);
  background: rgba(255, 249, 243, 0.96);
}

.badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(165, 110, 69, 0.12);
  color: var(--accent-strong);
  font-size: 12px;
}

.plan-name {
  font-size: 22px;
  font-weight: 700;
}

.plan-price {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 700;
}

.plan-list {
  margin-top: 16px;
}

.auth-card {
  display: grid;
  gap: 16px;
  width: min(440px, 100%);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.auth-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.auth-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.google-auth-block {
  display: grid;
  gap: 12px;
}

.google-button-host {
  min-height: 44px;
}

.google-fallback-btn {
  width: 100%;
  min-height: 46px;
}

.auth-shell {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 40px 16px;
}

.auth-frame {
  width: min(520px, 100%);
  display: grid;
  justify-items: center;
  gap: 18px;
}

.auth-mark {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #223248;
}

.auth-secondary-link {
  color: var(--muted);
  font-size: 13px;
  justify-self: center;
}

.auth-feedback,
.auth-profile {
  margin-top: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(248, 250, 252, 0.96);
}

.auth-feedback {
  color: var(--text);
  line-height: 1.6;
}

.auth-feedback.is-error {
  border-color: rgba(173, 64, 47, 0.22);
  background: rgba(255, 244, 241, 0.95);
  color: #8f3328;
}

.auth-feedback.is-success {
  border-color: rgba(83, 126, 67, 0.22);
  background: rgba(245, 251, 242, 0.95);
  color: #345f28;
}

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

.auth-profile-title {
  font-weight: 700;
}

.auth-profile-meta {
  margin-top: 4px;
  color: var(--muted);
}

.legal-page {
  width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.legal-content {
  display: grid;
  gap: 14px;
  color: var(--text);
}

.legal-content h3 {
  margin: 12px 0 0;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.workspace {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
  background: #f5f7fb;
}

.workspace-shell {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1.55fr) minmax(360px, 430px);
  gap: 20px;
  align-items: start;
  width: min(1880px, calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 12px 34px;
}

.workspace-main,
.workspace-side,
.workspace-history-rail,
.workspace-visual-rail {
  display: grid;
  gap: 18px;
}

.workspace-history-rail,
.workspace-visual-rail {
  min-width: 0;
}

.workspace-conversation-panel,
.stage {
  min-width: 0;
}

.workspace-history-rail,
.workspace-conversation-panel {
  align-self: start;
}

.panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.panel-head {
  margin-bottom: 18px;
}

.workspace-stage-panel,
.workspace-products-panel,
.workspace-conversation-panel {
  padding: 20px;
}

.workspace-stage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.workspace-stage-head h2 {
  margin: 6px 0 6px;
  max-width: 920px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.workspace-stage-head p,
.workspace-products-panel .panel-head p,
.workspace-action-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.workspace-credit-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.stage-grid:not(.has-result) .stage.before {
  grid-column: 1 / -1;
}

.stage {
  min-width: 0;
}

.stage-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(78, 100, 129, 0.88);
}

.image-placeholder {
  margin-top: 10px;
  min-height: 0;
  aspect-ratio: 4 / 5;
  max-height: clamp(320px, 52vh, 540px);
  border-radius: 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  display: block;
  background: #f3eee8;
  font-size: 24px;
  font-weight: 700;
  color: rgba(112, 83, 52, 0.78);
}

.image-placeholder.accent {
  background: #ecf2f8;
}

.workspace-conversation-panel {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 108px);
  overflow: auto;
}

.workspace-history-rail {
  position: sticky;
  top: 84px;
  gap: 12px;
}

.workspace-history-rail-toggle {
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
}

.workspace-form {
  display: grid;
  gap: 16px;
}

.workspace-config-shell {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.88);
  overflow: hidden;
}

.workspace-config-shell[open] {
  background: rgba(255, 255, 255, 0.96);
}

.workspace-config-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
}

.workspace-config-summary::-webkit-details-marker {
  display: none;
}

.workspace-config-summary-copy {
  display: grid;
  gap: 4px;
}

.workspace-config-summary-copy strong {
  font-size: 14px;
  line-height: 1.2;
}

.workspace-config-summary-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.workspace-config-summary-action {
  flex: 0 0 auto;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-config-shell .workspace-form {
  padding: 18px;
}

.workspace-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

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

.workspace-field {
  display: grid;
  gap: 10px;
  margin: 0;
}

.workspace-field > span,
.workspace-field legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.workspace-field legend {
  margin-bottom: 10px;
  padding: 0;
}

.workspace-field fieldset,
.workspace-field legend {
  border: 0;
}

.workspace-field input[type="text"],
.workspace-field input[type="number"],
.workspace-field select,
.workspace-field textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: 11px 13px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  resize: vertical;
}

.workspace-field textarea {
  min-height: 96px;
  line-height: 1.7;
}

.workspace-field-wide {
  grid-column: 1 / -1;
}

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

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

.choice-card,
.check-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.choice-card:hover,
.check-card:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 24, 39, 0.14);
}

.choice-card input,
.check-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card strong,
.check-card span {
  color: var(--text);
}

.choice-card span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px;
}

.choice-card:has(input:checked),
.check-card:has(input:checked) {
  border-color: rgba(37, 99, 235, 0.28);
  background: #f8fbff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.direction-card strong {
  font-size: 18px;
  line-height: 1.18;
}

.direction-card-wide {
  grid-column: 1 / -1;
}

.workspace-file-input {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: 11px 13px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.workspace-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workspace-form-actions.compact {
  margin-top: -6px;
}

.workspace-refinement-shell {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #fafcff;
}

.workspace-refinement-head {
  display: grid;
  gap: 6px;
}

.workspace-refinement-head strong {
  font-size: 16px;
}

.workspace-refinement-head span {
  color: var(--muted);
  line-height: 1.6;
}

.workspace-refinement-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.refinement-chip {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  color: #334155;
  border-radius: 999px;
  padding: 9px 13px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.refinement-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(91, 121, 163, 0.24);
}

.refinement-chip.is-active {
  border-color: rgba(91, 121, 163, 0.34);
  background: rgba(237, 245, 255, 0.98);
}

.workspace-advanced {
  grid-column: 1 / -1;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: #fbfcfe;
  padding: 14px 16px;
}

.workspace-advanced summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.workspace-advanced summary::-webkit-details-marker {
  display: none;
}

.workspace-advanced summary span {
  color: var(--text);
  font-weight: 600;
}

.workspace-advanced summary em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.5;
}

.workspace-advanced[open] summary {
  margin-bottom: 16px;
}

.workspace-advanced-body {
  display: grid;
  gap: 16px;
}

.workspace-feedback {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
  color: var(--text);
  line-height: 1.55;
}

.workspace-feedback.is-error {
  border-color: rgba(173, 64, 47, 0.22);
  background: rgba(255, 244, 241, 0.95);
  color: #8f3328;
}

.workspace-feedback.is-success {
  border-color: rgba(83, 126, 67, 0.22);
  background: rgba(245, 251, 242, 0.95);
  color: #345f28;
}

.workspace-chat-shell {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(30, 41, 59, 0.72);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.96));
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.22);
}

.workspace-chat-head .eyebrow {
  color: rgba(148, 163, 184, 0.88);
}

.workspace-chat-head h2 {
  margin: 6px 0 6px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.workspace-chat-head p {
  margin: 0;
  color: rgba(203, 213, 225, 0.86);
  line-height: 1.5;
}

.workspace-chat-thread {
  display: grid;
  gap: 12px;
  max-height: 44vh;
  padding-right: 4px;
  overflow: auto;
}

.conversation-message {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.conversation-message-assistant {
  background: rgba(255, 255, 255, 0.08);
}

.conversation-message-user {
  background: rgba(37, 99, 235, 0.16);
}

.conversation-message-pending {
  border-style: dashed;
}

.conversation-role {
  color: rgba(191, 219, 254, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversation-message p {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.65;
  color: #f8fafc;
}

.conversation-pending-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: rgba(191, 219, 254, 0.88);
  font-size: 12px;
  font-weight: 700;
}

.conversation-pending-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #60a5fa;
  box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.5);
  animation: conversation-pulse 1.4s ease infinite;
}

@keyframes conversation-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(96, 165, 250, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
  }
}

.conversation-visual {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.45);
}

.conversation-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
}

.conversation-meta {
  margin: 0;
  display: grid;
  gap: 8px;
}

.conversation-meta div {
  display: grid;
  gap: 2px;
}

.conversation-meta dt {
  color: rgba(148, 163, 184, 0.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversation-meta dd {
  margin: 0;
  color: rgba(241, 245, 249, 0.96);
  line-height: 1.55;
}

.workspace-chat-compose {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.workspace-chat-compose-field {
  display: grid;
  gap: 10px;
}

.workspace-chat-compose-field > span {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
}

.workspace-chat-compose textarea {
  width: 100%;
  min-height: 110px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 12px 14px;
  font: inherit;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.6);
  line-height: 1.65;
  resize: vertical;
}

.workspace-chat-compose textarea::placeholder {
  color: rgba(148, 163, 184, 0.76);
}

.workspace-history-shell {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.98);
  max-height: calc(100vh - 136px);
  overflow: auto;
}

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

.workspace-history-head .eyebrow {
  margin-bottom: 10px;
}

.workspace-history-head h2 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.workspace-history-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.workspace-history-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.workspace-history-new {
  min-height: 40px;
  padding: 0 16px;
}

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

.workspace-history-card {
  width: 100%;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.workspace-history-card:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.workspace-history-card.is-active {
  border-color: rgba(37, 99, 235, 0.3);
  background: #f8fbff;
}

.workspace-history-thumb {
  overflow: hidden;
  border-radius: 14px;
  background: #eef2f7;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.workspace-history-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workspace-history-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.workspace-history-title {
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
}

.workspace-history-meta,
.workspace-history-time {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.workspace-history-empty {
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(17, 24, 39, 0.12);
  background: #f8fafc;
  color: var(--muted);
  line-height: 1.55;
}

.image-stage {
  position: relative;
  overflow: hidden;
}

.image-stage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: inherit;
}

.image-stage.is-loading {
  opacity: 0.7;
}

.image-placeholder-copy {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 8px;
  place-content: center;
  padding: 24px;
  text-align: center;
}

.image-placeholder-copy strong {
  font-size: 22px;
}

.image-placeholder-copy span {
  font-size: 15px;
  color: rgba(125, 77, 43, 0.78);
}

.result-stage {
  position: relative;
  overflow: hidden;
}

.result-stage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.result-stage-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 12px;
  justify-items: start;
  text-align: left;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.result-stage-copy strong {
  font-size: 24px;
  line-height: 1.18;
  color: var(--text);
}

.result-stage-copy p {
  margin: 0;
  color: #5b5650;
  line-height: 1.6;
}

.workspace-variant-badge {
  color: rgba(78, 100, 129, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.workspace-products-panel .product-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  align-content: start;
}

.product-card-visual {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(244, 246, 250, 0.92);
  aspect-ratio: 1 / 1;
}

.product-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-price {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.workspace-products-panel .product-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
}

.workspace-products-panel .product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-details {
  margin: 0;
  display: grid;
  gap: 10px;
}

.product-details div {
  display: grid;
  gap: 4px;
}

.product-details dt {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-details dd {
  margin: 0;
  color: #2f3846;
  line-height: 1.55;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #111827;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.product-link:hover {
  background: #1f2937;
}

.testimonials-section {
  background: linear-gradient(180deg, rgba(248, 248, 246, 0.96), rgba(242, 242, 240, 0.92));
}

.testimonial-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  min-height: 420px;
}

.testimonial-card,
.testimonial-side-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(64, 68, 72, 0.08);
  text-align: center;
}

.testimonial-side-card {
  min-height: 190px;
  padding: 42px 28px 34px;
}

.testimonial-side-left {
  transform: translateX(34px);
}

.testimonial-side-right {
  transform: translateX(-34px);
}

.testimonial-card-spotlight {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 54px 44px 40px;
  box-shadow: 0 18px 34px rgba(41, 41, 41, 0.08);
}

.testimonial-stars {
  margin-bottom: 14px;
  color: #111827;
  letter-spacing: 0.28em;
  font-size: 14px;
}

.testimonial-card p,
.testimonial-side-card p {
  margin: 0;
  color: #2d3136;
  line-height: 1.65;
  font-size: 23px;
  font-family: Georgia, "Times New Roman", serif;
}

.testimonial-side-card p {
  font-size: 18px;
  line-height: 1.6;
}

.testimonial-person {
  margin-top: 26px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8ceb8, #b49c84);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.testimonial-avatar::before {
  content: attr(data-initials);
}

.avatar-blue {
  background: linear-gradient(180deg, #9cb2c6, #7088a0);
}

.avatar-sand {
  background: linear-gradient(180deg, #dbcab7, #b6977d);
}

.avatar-stone {
  background: linear-gradient(180deg, #cfcfc9, #8f98a1);
}

.testimonial-person strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.testimonial-side-card .testimonial-person strong {
  font-size: 20px;
}

.testimonial-person span {
  color: #4e5560;
  font-size: 15px;
}

.testimonial-static-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-static-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.8);
}

.testimonial-static-dots .is-active {
  background: #111827;
}

@media (max-width: 1080px) {
  .hero,
  .workspace,
  .product-story-grid,
  .split-showcase,
  .testimonial-grid,
  .brand-proof-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .hero-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .topbar-announcement-inner {
    width: calc(100% - 32px);
  }

  .hero-endorsement-band {
    grid-template-columns: 1fr;
  }


  .footer-main {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 28px;
  }

  .footer-brand-block {
    justify-items: flex-start;
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }

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

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

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

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

  .deliverable-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .deliverable-visual {
    min-height: 360px;
  }

  .testimonial-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .testimonial-side-left,
  .testimonial-side-right {
    transform: none;
  }
}

@media (max-width: 1480px) {
  .workspace-shell {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1.35fr) minmax(320px, 380px);
    width: min(1680px, calc(100% - 18px));
  }

  .workspace-products-panel .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .workspace-shell {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1.2fr) minmax(280px, 340px);
    gap: 16px;
    width: min(100%, calc(100% - 16px));
    padding: 16px 8px 28px;
  }

  .workspace-stage-panel,
  .workspace-products-panel,
  .workspace-conversation-panel,
  .workspace-history-shell {
    padding: 16px;
  }

  .workspace-stage-head h2 {
    font-size: 30px;
  }

  .workspace-chat-head h2,
  .workspace-history-head h2 {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .workspace-shell {
    grid-template-columns: 1fr;
  }

  .workspace-history-rail,
  .workspace-conversation-panel {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }

  .workspace-stage-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .stage-grid,
  .workspace-products-panel .product-grid {
    grid-template-columns: 1fr;
  }

  .workspace-chat-thread {
    max-height: none;
  }

  .workspace-history-head {
    display: grid;
  }
}

@media (max-width: 760px) {
  .workspace {
    width: auto;
    margin-left: 0;
    padding: 18px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
  }

  .workspace-shell {
    width: 100%;
    padding: 0;
    gap: 18px;
  }

  .workspace-conversation-panel {
    padding: 18px;
  }

  .workspace-stage-panel,
  .workspace-products-panel {
    padding: 18px;
  }

  .workspace-stage-head h2,
  .result-stage-copy strong {
    font-size: 24px;
  }

  .image-placeholder,
  .image-stage img,
  .result-stage img {
    min-height: 240px;
  }
}

@media (max-width: 960px) {
  .feature-grid,
  .pricing-grid,
  .legal-link-grid,
  .product-grid,
  .choice-grid,
  .choice-check-grid,
  .stage-grid,
  .hero-proof-grid,
  .hero-product-strip,
  .principle-grid,
  .step-grid,
  .brand-proof-grid,
  .results-grid,
  .testimonial-grid,
  .tutorial-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    padding: 12px 0;
  }

  .topbar-announcement-inner {
    width: calc(100% - 24px);
    min-height: 34px;
    font-size: 11px;
  }

  .topbar-inner {
    width: calc(100% - 24px);
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
  }

  .topbar-actions {
    justify-content: flex-end;
  }

  .hero,
  .section,
  .workspace {
    padding: 28px;
  }

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

  .workspace-field-wide {
    grid-column: auto;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual-top,
  .auth-profile,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-inner,
  .footer-policy-links {
    justify-content: flex-start;
  }

  .hero-bright {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-scene {
    min-height: 540px;
  }

  .hero-scene-window {
    top: 56px;
    width: 22%;
    height: 22%;
  }

  .hero-showcase-copy {
    padding: 0 20px;
    transform: translateY(-40%);
  }

  .hero-copy-kicker {
    min-height: 30px;
    margin-bottom: 14px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero-showcase-copy h1 {
    font-size: clamp(40px, 9vw, 56px);
    white-space: normal;
  }

  .hero-showcase-copy p {
    font-size: 16px;
    letter-spacing: 0.04em;
    max-width: 28rem;
  }

  .hero-showcase-copy .btn {
    min-height: 44px;
    min-width: 250px;
    padding: 0 42px;
  }

  .hero-copy-meta {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-copy-meta span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .hero-endorsement-track span {
    padding: 13px 28px;
    font-size: 15px;
  }

  .tutorial-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .tutorial-visual {
    width: min(70%, 220px);
  }

  .deliverable-visual {
    min-height: 300px;
  }

  .deliverable-copy h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .testimonial-card p,
  .testimonial-side-card p {
    font-size: 18px;
  }

  .testimonial-person strong {
    font-size: 22px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 0 40px;
  }

  .editorial-intro-inner {
    width: calc(100% - 32px);
    padding: 52px 0 44px;
  }

  .editorial-copy {
    font-size: 16px;
    line-height: 1.8;
  }

  .editorial-cta-copy {
    font-size: 18px;
  }

  .hero-copy-bright,
  .hero-slider-card {
    order: initial;
  }

  .topbar-actions,
  .route-home .topbar-actions {
    display: none;
  }

  .hero-slider-card {
    min-height: 460px;
  }

  .hero-slide-visual {
    min-height: 280px;
  }

  .results-card-large {
    grid-column: span 1;
  }

  .testimonial-carousel {
    padding: 0;
  }

  .testimonial-carousel .slider-prev,
  .testimonial-carousel .slider-next {
    display: none;
  }

  .footer-policy-links {
    justify-content: flex-start;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 20px, 1200px);
  }

  .topbar,
  .site-footer {
    border-radius: 20px;
  }

  .hero,
  .section,
  .workspace,
  .panel,
  .feature-card,
  .pricing-card,
  .product-card,
  .step-card,
  .legal-link-card,
  .product-story-card,
  .auth-card {
    border-radius: 24px;
  }
}
