@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #2dd4bf;
  --primary-deep: #119c8b;
  --dark: #111827;
  --dark-soft: #1f2937;
  --light-bg: #f8fafc;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --border: #e5e7eb;
  --text: #0f172a;
  --muted: #475569;
  --success: #0f9f6e;
  --error: #dc2626;
  --warning: #ea580c;
  --shadow-xl: 0 28px 80px rgba(15, 23, 42, 0.16);
  --shadow-lg: 0 20px 46px rgba(15, 23, 42, 0.1);
  --shadow-md: 0 14px 32px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --bg:           #06070b;
  --bg-2:         #0a0b11;
  --panel:        rgba(255,255,255,0.022);
  --panel-hover:  rgba(255,255,255,0.034);
  --line:         rgba(255,255,255,0.055);
  --line-faint:   rgba(255,255,255,0.018);
  --text-main:    #ddd9e9;
  --text-soft:    #aba7bb;
  --text-muted:   #757289;
  --accent:       #8b6fff;
  --accent-2:     #b49dff;
  --teal:         #96dfe5;
  --green:        #6ee7b7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--light-bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(45, 212, 191, 0.2), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(17, 24, 39, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 35%, #eef4f9 100%);
}

html[lang="he"] body {
  font-family: "Heebo", "Inter", sans-serif;
}

html[lang="en"] body {
  font-family: "Inter", "Heebo", sans-serif;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.section {
  padding-block: 5.25rem;
}

.section-tight {
  padding-block-start: 3.5rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.68));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.hero-copy h1,
.demo-overlay h2,
.submit-summary-card h2 {
  margin: 0;
  line-height: 1.05;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p,
.hero-text,
.hero-highlights,
.submit-copy,
.footer-tagline,
.field-hint {
  margin: 0;
  color: var(--muted);
}

.dev-badge {
  display: none;
  position: fixed;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
  z-index: 40;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--dark-soft);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
}

.brand,
.footer-brand {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 600;
}

.header-nav a:hover,
.footer-meta a:hover {
  color: var(--primary-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.language-pill {
  min-width: 52px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.language-pill.is-active {
  background: var(--dark);
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.button:hover:not(:disabled),
.play-button:hover,
.theme-card:hover,
.image-action:hover,
.pair-option:hover,
.faq-item:hover,
.language-toggle:hover {
  transform: translateY(-1px);
}

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

.button-primary {
  background: linear-gradient(135deg, #31ddc7 0%, #12b5a2 100%);
  color: #071316;
  box-shadow: 0 20px 34px rgba(45, 212, 191, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 24, 39, 0.1);
  color: var(--dark);
}

.photo-guide-button {
  position: relative;
  overflow: hidden;
  border-color: rgba(18, 181, 162, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 252, 249, 0.92));
  box-shadow: 0 0 0 0 rgba(18, 181, 162, 0.2);
  animation: photoGuideGlow 2.8s ease-in-out infinite;
}

.photo-guide-button-compact {
  animation-duration: 3.4s;
}

@keyframes photoGuideGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(18, 181, 162, 0.14);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(18, 181, 162, 0.07);
  }
}

.button-small {
  padding-block: 0.78rem;
  padding-inline: 1.15rem;
}

.button-wide {
  width: 100%;
}

.hero-section {
  padding-block: 4.5rem 2.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.65rem, 5vw, 4.9rem);
  max-width: 12ch;
}

.hero-text {
  max-width: 48ch;
  font-size: 1.18rem;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-block: 1.7rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  font-weight: 600;
}

.hero-media {
  min-width: 0;
}

.demo-frame {
  position: relative;
  padding: 1.15rem;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(27, 40, 60, 0.96)),
    radial-gradient(circle at 25% 10%, rgba(45, 212, 191, 0.24), transparent 26%);
  box-shadow: var(--shadow-xl);
  outline: none;
}

.demo-frame.is-playing {
  box-shadow: 0 30px 90px rgba(17, 24, 39, 0.22), 0 0 0 1px rgba(45, 212, 191, 0.36);
}

.demo-surface {
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(31, 41, 55, 0.96), rgba(17, 24, 39, 0.98)),
    radial-gradient(circle at 85% 25%, rgba(45, 212, 191, 0.2), transparent 24%);
}

.demo-screen {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  padding: 1.6rem;
  color: #f8fafc;
}

.demo-screen::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.demo-overlay {
  position: relative;
  z-index: 1;
  max-width: 30rem;
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.16);
  color: #bff8f2;
  font-size: 0.84rem;
  font-weight: 800;
}

.demo-overlay h2 {
  margin-block: 0.8rem 0.55rem;
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.demo-overlay p {
  margin: 0;
  max-width: 36ch;
  color: rgba(248, 250, 252, 0.78);
}

.play-button {
  position: relative;
  z-index: 1;
  align-self: center;
  min-width: 124px;
  padding: 0.95rem 1.15rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.play-icon {
  width: 0;
  height: 0;
  border-block-start: 9px solid transparent;
  border-block-end: 9px solid transparent;
  border-inline-start: 15px solid var(--primary-deep);
}

.process-strip {
  padding-block-end: 1.25rem;
}

.process-strip-card {
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
  color: var(--dark);
}

.steps-grid,
.theme-grid {
  display: grid;
  gap: 1rem;
}

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

.step-card,
.upload-status-card,
.submit-summary-card,
.submit-action-card,
.faq-item,
.field-card,
.empty-panel,
.pair-card,
.image-card,
.room-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.step-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.16);
  color: var(--primary-deep);
  font-weight: 800;
}

.step-card h3 {
  margin-block: 1rem 0.45rem;
  font-size: 1.35rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.upload-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.upload-dropzone {
  min-height: 320px;
  padding: 2rem;
  border: 1.5px dashed rgba(17, 24, 39, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(45, 212, 191, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.92));
  display: grid;
  align-content: center;
  gap: 0.7rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.upload-dropzone.is-active {
  border-color: rgba(45, 212, 191, 0.62);
  background:
    radial-gradient(circle at top, rgba(45, 212, 191, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 255, 252, 0.96));
}

.upload-kicker {
  color: var(--primary-deep);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upload-dropzone strong {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--dark);
}

.upload-subcopy {
  color: var(--muted);
  font-size: 1rem;
}

.upload-status-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  display: grid;
  align-content: start;
  gap: 1rem;
}

.upload-stat {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.stat-value {
  display: block;
  margin-top: 0.35rem;
  color: var(--dark);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.stat-value-small {
  font-size: 1.05rem;
  line-height: 1.4;
}

.upload-status-list,
.readiness-list {
  display: grid;
  gap: 0.7rem;
}

.status-pill,
.readiness-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.06);
  font-weight: 700;
}

.status-pill span:last-child,
.readiness-item span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.notice-bar {
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 700;
}

.notice-bar.is-hidden {
  display: none;
}

.notice-bar.tone-error {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.16);
  color: var(--error);
}

.notice-bar.tone-success {
  background: rgba(15, 159, 110, 0.08);
  border-color: rgba(15, 159, 110, 0.16);
  color: var(--success);
}

.notice-bar.tone-info {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.22);
  color: var(--dark);
}

.empty-panel {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  color: var(--muted);
}

.image-grid,
.room-list,
.pair-list {
  display: grid;
  gap: 1rem;
}

.image-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.image-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.image-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.08), rgba(45, 212, 191, 0.08)),
    #eef4f9;
}

.image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-thumb.is-missing {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

.image-meta {
  margin-top: 0.9rem;
}

.image-name {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  word-break: break-word;
}

.image-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.mini-flag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.image-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.image-action,
.pair-option {
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark);
  font-weight: 800;
}

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

.room-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.room-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.room-card-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--dark);
}

.room-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
}

.field-card,
.room-field {
  display: grid;
  gap: 0.45rem;
}

.field-card,
.room-field {
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.field-card span,
.room-field label,
.pair-question,
.pair-headline {
  font-weight: 800;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

input[type="file"] {
  width: 100%;
}

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

.field-card.is-invalid,
.room-field.is-invalid {
  border-color: rgba(220, 38, 38, 0.22);
  background: rgba(220, 38, 38, 0.03);
}

.field-error,
.note-meta {
  font-size: 0.86rem;
}

.field-error {
  color: var(--error);
  font-weight: 700;
}

.note-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.note-meta.is-invalid {
  color: var(--error);
}

.pair-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1rem;
}

.pair-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pair-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding-inline: 0.85rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  color: var(--primary-deep);
  font-weight: 800;
}

.pair-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.pair-preview-card {
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.pair-preview-card .image-thumb {
  margin-bottom: 0.65rem;
}

.pair-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pair-option.is-selected {
  background: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
}

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

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

.logo-status {
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(17, 24, 39, 0.04);
  color: var(--muted);
  font-weight: 700;
}

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

.theme-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
  text-align: start;
}

.theme-card strong {
  font-size: 1.08rem;
  color: var(--dark);
}

.theme-card span:last-child {
  color: var(--muted);
}

.theme-card.is-selected {
  border-color: rgba(45, 212, 191, 0.56);
  box-shadow: 0 22px 50px rgba(45, 212, 191, 0.16);
}

.theme-visual {
  height: 112px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.modern-teal {
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.22), rgba(255, 255, 255, 0.1)),
    linear-gradient(145deg, #eefdfa, #d2f7f2);
}

.luxury-gold {
  background:
    radial-gradient(circle at 80% 20%, rgba(250, 204, 21, 0.28), transparent 30%),
    linear-gradient(145deg, #111827, #2b3548);
}

.tech-blue {
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.34), transparent 25%),
    linear-gradient(145deg, #111827, #172554);
}

.warm-copper {
  background:
    radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.18), transparent 28%),
    linear-gradient(145deg, #fff7ed, #fce7d6);
}

.submit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 1rem;
}

.submit-summary-card,
.submit-action-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.submit-copy {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--dark);
  list-style: none;
}

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

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.site-footer {
  padding-block: 1.4rem 2rem;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255, 255, 255, 0.72);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-weight: 600;
}

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

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

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.28);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .upload-layout,
  .submit-grid,
  .theme-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .room-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dev-badge {
    inset-inline-start: 0.75rem;
    inset-block-start: 0.75rem;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    align-items: center;
    min-height: 64px;
    padding-block: 0.55rem;
  }

  .footer-shell,
  .footer-meta,
  .hero-actions-row,
  .pair-options {
    flex-direction: column;
    align-items: stretch;
  }

  .header-nav,
  #headerCta {
    display: none;
  }

  .wizard-price-row {
    grid-template-columns: minmax(0, 1fr) 76px;
  }

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

  .language-pill {
    min-width: 46px;
    padding: 0.36rem 0.58rem;
  }

  .hero-section {
    padding-block: 2rem 1rem;
  }

  .hero-grid {
    gap: 1.1rem;
  }

  .hero-copy {
    display: grid;
    gap: 0.8rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 2.9rem);
  }

  .hero-text {
    max-width: none;
    font-size: 1rem;
  }

  .hero-actions-row {
    margin-block: 0.55rem 0;
    gap: 0.65rem;
  }

  .hero-actions-row .button {
    width: 100%;
  }

  .hero-highlights {
    display: none;
  }

  .demo-frame {
    padding: 0.8rem;
    border-radius: 28px;
  }

  .demo-screen {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .demo-overlay h2 {
    margin-block: 0.55rem 0.35rem;
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .demo-overlay p {
    font-size: 0.92rem;
  }

  .play-button {
    width: 100%;
    min-width: 0;
  }

  .process-strip {
    padding-block-end: 0.7rem;
  }

  .process-strip-card {
    padding: 0.85rem 1rem;
    border-radius: 18px;
    font-size: 0.95rem;
  }

  #upload {
    padding-block: 0;
  }

  .image-actions {
    display: flex;
    flex-direction: column;
  }

  .pair-preview {
    grid-template-columns: 1fr;
  }

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

  .wizard-launch-shell {
    display: none;
  }

  .footer-shell,
  .footer-meta {
    gap: 0.55rem;
  }
}

body.has-wizard-open {
  overflow: hidden;
}

body.has-photo-guide-open {
  overflow: hidden;
}

.photo-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  direction: rtl;
}

.photo-guide-modal.is-open {
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.5vw, 2.25rem);
}

.photo-guide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(14px);
}

.photo-guide-card {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 4rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.18), transparent 31%),
    radial-gradient(circle at bottom left, rgba(18, 181, 162, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 38px 120px rgba(15, 23, 42, 0.32);
  color: var(--text);
}

.photo-guide-close {
  position: absolute;
  top: 1.45rem;
  inset-inline-end: 1.45rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.photo-guide-header {
  display: grid;
  gap: 0.8rem;
  min-height: 168px;
  align-content: end;
  padding: 3rem 3rem 1.8rem;
  text-align: right;
}

.photo-guide-header h2,
.photo-guide-header p,
.photo-guide-section h3,
.photo-guide-section h4,
.photo-guide-section p,
.photo-guide-section ul {
  margin: 0;
}

.photo-guide-header h2 {
  color: var(--dark);
  font-size: clamp(2.35rem, 4.2vw, 3.45rem);
  line-height: 1.06;
}

.photo-guide-header p {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.6;
}

.photo-guide-body {
  display: grid;
  gap: 1.5rem;
  padding: 0 3rem 1.7rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.photo-guide-section {
  display: grid;
  gap: 1.35rem;
  padding: 1.8rem;
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 48px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.photo-guide-section-basic {
  padding: 2rem;
  background:
    radial-gradient(circle at center, rgba(45, 212, 191, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.9);
}

.photo-guide-section-basic .photo-guide-media-slot {
  min-height: 260px;
}

.photo-guide-section h3 {
  color: var(--dark);
  font-size: 1.38rem;
  line-height: 1.2;
}

.photo-guide-section h4 {
  color: var(--dark);
  font-size: 1.18rem;
  line-height: 1.25;
}

.photo-guide-section p,
.photo-guide-section li {
  color: var(--text);
  line-height: 1.45;
}

.photo-guide-section ul {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.photo-guide-section-copy {
  display: grid;
  gap: 0.5rem;
}

.photo-guide-pair-demo,
.photo-guide-overlap-grid,
.photo-guide-shoot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.photo-guide-media-slot {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 0.65rem;
  padding: 1.6rem;
  border: 1px dashed rgba(18, 181, 162, 0.35);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.04), rgba(45, 212, 191, 0.08)),
    #f3f8fb;
  color: var(--primary-deep);
  text-align: center;
  line-height: 1.35;
}

.photo-guide-media-slot strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  color: var(--dark);
  font-size: 1.02rem;
  font-weight: 900;
}

.photo-guide-media-slot span {
  font-size: 1rem;
  font-weight: 800;
}

.photo-guide-example-card,
.photo-guide-mini-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 28px;
  background: rgba(248, 250, 252, 0.9);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.photo-guide-example-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 42px;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  background: rgba(18, 181, 162, 0.11);
  color: var(--primary-deep);
  font-size: 1.05rem;
  font-weight: 900;
}

.photo-guide-example-card.is-soft .photo-guide-example-label {
  background: rgba(148, 163, 184, 0.14);
  color: var(--muted);
}

.photo-guide-overlap-demo {
  min-height: 270px;
}

.photo-guide-room-shape {
  position: absolute;
  inset: 17% 9%;
  border: 2px solid rgba(17, 24, 39, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
}

.photo-guide-overlap-highlight {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 50%;
  width: min(34%, 9.5rem);
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(18, 181, 162, 0.18);
  box-shadow: inset 0 0 0 2px rgba(18, 181, 162, 0.24);
  color: var(--primary-deep);
  font-size: 0.98rem;
  font-weight: 900;
}

.photo-guide-soft-gap {
  position: relative;
  z-index: 1;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 0.98rem;
}

.photo-guide-mini-card > div {
  display: grid;
  gap: 0.55rem;
}

.photo-guide-mini-card .photo-guide-media-slot {
  order: -1;
}

.photo-guide-video-slot {
  min-height: 230px;
  color: var(--muted);
}

.photo-guide-tip-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.photo-guide-tip-list li {
  display: grid;
  grid-template-rows: auto auto;
  place-items: center;
  gap: 0.65rem;
  min-height: 118px;
  padding: 1.05rem 0.85rem;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(45, 212, 191, 0.08)),
    #f8fafc;
  color: var(--dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.photo-guide-tip-list li::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 34%),
    rgba(18, 181, 162, 0.2);
  box-shadow: inset 0 0 0 1px rgba(18, 181, 162, 0.16);
}

.photo-guide-actions {
  display: flex;
  justify-content: flex-start;
  padding: 1.25rem 3rem 1.8rem;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.9));
}

.photo-guide-start-button {
  min-width: 15rem;
}

/* Rebuilt visual onboarding layout for the photo guide modal. */
.photo-guide-modal.is-open {
  padding: clamp(1rem, 2.4vw, 2rem);
}

.photo-guide-card {
  width: min(1100px, 100%);
  max-height: calc(100vh - 4rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.2), transparent 32%),
    radial-gradient(circle at bottom left, rgba(18, 181, 162, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.photo-guide-close {
  top: 1.35rem;
  inset-inline-end: auto;
  right: auto;
  left: 1.35rem;
  width: 48px;
  height: 48px;
}

.photo-guide-header {
  min-height: 180px;
  align-content: end;
  padding: 3.2rem 3.2rem 2rem;
}

.photo-guide-header h2 {
  font-size: clamp(2.45rem, 4.4vw, 3.55rem);
}

.photo-guide-header p {
  max-width: 44rem;
  font-size: 1.15rem;
}

.photo-guide-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.photo-guide-section-stack {
  display: grid;
  gap: 1.45rem;
  padding: 0 3.2rem 1.8rem;
}

.photo-guide-section {
  gap: 1.35rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-color: rgba(17, 24, 39, 0.06);
  border-radius: 30px;
}

.photo-guide-rule-section {
  gap: 1.55rem;
  padding: clamp(1.75rem, 3vw, 2.35rem);
  background:
    radial-gradient(circle at 50% 58%, rgba(45, 212, 191, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.9);
}

.photo-guide-rule-visual,
.photo-guide-example-grid,
.photo-guide-shoot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.photo-guide-rule-visual {
  min-height: 310px;
  padding: 1rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(18, 181, 162, 0.08), rgba(255, 255, 255, 0.78)),
    #f3f8fb;
}

.photo-guide-frame,
.photo-guide-overlap-visual,
.photo-guide-video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(18, 181, 162, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(135deg, rgba(17, 24, 39, 0.04), rgba(45, 212, 191, 0.1)),
    #f3f8fb;
  color: var(--primary-deep);
  text-align: center;
}

.photo-guide-frame {
  min-height: 280px;
  align-content: center;
  gap: 0.85rem;
  padding: 1.4rem;
}

.photo-guide-frame-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.photo-guide-frame-placeholder {
  color: var(--primary-deep);
  font-size: 1.02rem;
  font-weight: 800;
}

.photo-guide-example-card,
.photo-guide-shoot-card {
  display: grid;
  gap: 1.05rem;
  padding: 1.15rem;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 30px;
  background: rgba(248, 250, 252, 0.9);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.photo-guide-example-label {
  min-height: 46px;
  padding: 0.45rem 1.1rem;
  font-size: 1.12rem;
}

.photo-guide-example-card.is-bad .photo-guide-example-label {
  background: rgba(148, 163, 184, 0.14);
  color: var(--muted);
}

.photo-guide-overlap-visual {
  min-height: 280px;
  padding: 1rem;
}

.photo-guide-overlap-panel,
.photo-guide-separated-panel {
  position: absolute;
  top: 22%;
  bottom: 22%;
  width: 42%;
  border: 2px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(45, 212, 191, 0.08));
}

.photo-guide-overlap-panel:first-child {
  right: 16%;
}

.photo-guide-overlap-panel:nth-child(2) {
  left: 16%;
}

.photo-guide-separated-panel:first-child {
  right: 8%;
}

.photo-guide-separated-panel:nth-child(2) {
  left: 8%;
}

.photo-guide-overlap-highlight {
  top: 18%;
  bottom: 18%;
  left: 50%;
  width: min(26%, 9rem);
  transform: translateX(-50%);
}

.photo-guide-video-placeholder {
  min-height: 230px;
  font-size: 1rem;
  font-weight: 900;
}

.photo-guide-shoot-copy {
  display: grid;
  gap: 0.65rem;
  padding: 0.15rem 0.25rem 0.25rem;
}

.photo-guide-shoot-copy li {
  font-size: 1rem;
  font-weight: 700;
}

.photo-guide-tips-section {
  gap: 1.25rem;
}

.photo-guide-tip-list li {
  min-height: 126px;
  padding: 1.15rem 0.9rem;
}

.photo-guide-footer {
  display: flex;
  justify-content: flex-start;
  padding: 1.25rem 3rem 1.8rem;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.9));
}

.wizard-launch-shell {
  display: flex;
}

.wizard-launch-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top, rgba(45, 212, 191, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));
  box-shadow: var(--shadow-lg);
}

.wizard-launch-copy {
  display: grid;
  gap: 0.65rem;
  max-width: 42rem;
}

.wizard-launch-copy h2,
.wizard-success h2,
.wizard-pane-title {
  margin: 0;
  color: var(--dark);
  line-height: 1.08;
}

.wizard-launch-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.wizard-launch-copy p,
.wizard-pane-intro,
.wizard-style-note,
.wizard-field-hint,
.wizard-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}

.wizard-modal.is-open {
  display: block;
}

.wizard-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(14px);
}

.wizard-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 2rem);
  max-width: 1120px;
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(45, 212, 191, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f8f9 0%, #f3f5f8 100%);
  box-shadow: 0 36px 100px rgba(15, 23, 42, 0.32);
  overflow: hidden;
}

.wizard-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.15rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  flex-shrink: 0;
}

.wizard-brand {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.wizard-stepper-scroll {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.wizard-stepper-scroll::-webkit-scrollbar {
  display: none;
}

.wizard-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 100%;
  justify-content: center;
}

.wizard-step-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #7c8696;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: default;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.wizard-step-pill.is-unlocked {
  cursor: pointer;
}

.wizard-step-pill:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.wizard-step-pill.is-active {
  background: #ffffff;
  color: var(--dark);
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.wizard-step-pill.is-complete {
  color: var(--dark-soft);
}

.wizard-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.22);
  border: 1px solid transparent;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

.wizard-step-pill.is-active .wizard-step-number {
  background: var(--dark);
  color: #ffffff;
}

.wizard-step-pill.is-complete .wizard-step-number {
  background: rgba(15, 159, 110, 0.12);
  border-color: rgba(15, 159, 110, 0.22);
  color: var(--success);
}

.wizard-close {
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-size: 1.3rem;
  line-height: 1;
}

.wizard-scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.wizard-body {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 2.75rem;
}

.wizard-pane {
  display: none;
  width: 100%;
  max-width: 720px;
}

.wizard-pane.is-active {
  display: block;
}

.wizard-pane-wide {
  max-width: 1080px;
}

.wizard-pane-review {
  max-width: 920px;
}

.wizard-success {
  display: none;
  width: 100%;
  max-width: 760px;
  padding: 3.25rem 1rem 2rem;
  text-align: center;
}

.wizard-success.is-active {
  display: block;
}

.wizard-success h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.wizard-success p {
  max-width: 34rem;
  margin-inline: auto;
}

.wizard-success-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 159, 110, 0.12);
  color: var(--success);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-pane-header {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}

.wizard-step-counter {
  color: #768395;
  font-size: 0.8rem;
  font-weight: 700;
}

.wizard-pane-tag {
  color: var(--primary-deep);
}

.wizard-pane-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.wizard-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
}

.wizard-stack {
  display: grid;
  gap: 1rem;
}

.wizard-upload-zone {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.7rem;
  min-height: 240px;
  padding: 2rem 1.5rem;
  border: 1.5px dashed rgba(17, 24, 39, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(45, 212, 191, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 250, 0.96));
  text-align: center;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.wizard-upload-zone.is-active {
  border-color: rgba(45, 212, 191, 0.7);
  background:
    radial-gradient(circle at top, rgba(45, 212, 191, 0.24), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 252, 249, 0.96));
}

.wizard-upload-kicker {
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-upload-zone strong {
  color: var(--dark);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.15;
}

.wizard-upload-subcopy {
  color: var(--muted);
  font-size: 1rem;
}

.wizard-helper-text {
  margin: 0;
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.45;
}

.wizard-notice {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 700;
}

.wizard-notice.is-hidden {
  display: none;
}

.wizard-notice.tone-error {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.18);
  color: var(--error);
}

.wizard-notice.tone-success {
  background: rgba(15, 159, 110, 0.08);
  border-color: rgba(15, 159, 110, 0.18);
  color: var(--success);
}

.wizard-notice.tone-info {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.22);
  color: var(--dark);
}

.wizard-thumb-section {
  margin-top: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
}

.wizard-thumb-section.is-hidden {
  display: none;
}

.wizard-thumb-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  flex-wrap: wrap;
}

.wizard-thumb-title {
  color: var(--dark);
  font-weight: 800;
}

.wizard-thumb-count {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.wizard-thumb-grid {
  display: flex;
  direction: ltr;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.1rem 0.1rem 0.45rem;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.7) transparent;
}

.wizard-thumb-grid::-webkit-scrollbar {
  height: 10px;
}

.wizard-thumb-grid::-webkit-scrollbar-track {
  background: transparent;
}

.wizard-thumb-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.58);
}

.wizard-thumb {
  position: relative;
  flex: 0 0 clamp(112px, 12vw, 132px);
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.08), rgba(45, 212, 191, 0.08)),
    #eef4f9;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 10px 22px rgba(15, 23, 42, 0.08);
  scroll-snap-align: start;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.wizard-thumb.is-current {
  border-color: rgba(17, 24, 39, 0.2);
  box-shadow:
    0 0 0 2px rgba(17, 24, 39, 0.18),
    0 16px 28px rgba(15, 23, 42, 0.12);
}

.wizard-thumb:hover {
  transform: translateY(-1px);
}

.wizard-thumb-chosen {
  transform: scale(1.02);
  border-color: rgba(45, 212, 191, 0.56);
  box-shadow:
    0 0 0 2px rgba(45, 212, 191, 0.24),
    0 18px 34px rgba(15, 23, 42, 0.14);
}

.wizard-thumb-ghost {
  opacity: 0.38;
  border-style: dashed;
}

.wizard-thumb-dragging {
  transform: rotate(1deg);
}

#wizardStep1 .wizard-pane-header {
  margin-bottom: 0.35rem;
}

#wizardStep1 .wizard-pane-header > :not(.wizard-step-counter) {
  display: none;
}

#wizardStep1 .wizard-step-counter {
  font-size: 0.74rem;
}

#wizardStep1 .wizard-upload-card {
  padding: 0.75rem;
}

#wizardStep1 .wizard-upload-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
}

#wizardStep1 .wizard-upload-helper-group {
  display: grid;
  gap: 0.16rem;
}

#wizardStep1 #uploadFlowHelper {
  max-width: 36rem;
  font-size: 0.82rem;
  line-height: 1.35;
}

#wizardStep1 #uploadEvenHelper {
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

#wizardStep1 .wizard-upload-toolbar-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
}

#wizardStep1 .wizard-upload-card:not(.has-images) .wizard-upload-toolbar-meta {
  display: none;
}

#wizardStep1 .wizard-upload-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

#wizardStep1 .wizard-upload-mini.is-hidden {
  display: none;
}

#wizardStep1 .wizard-upload-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(300px, 46vh, 390px);
  padding: 0.55rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top, rgba(45, 212, 191, 0.06), transparent 32%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

#wizardStep1 .wizard-upload-card.is-drop-active .wizard-upload-stage {
  border-color: rgba(45, 212, 191, 0.42);
  background:
    linear-gradient(180deg, rgba(252, 255, 254, 0.99), rgba(241, 252, 249, 0.98)),
    radial-gradient(circle at top, rgba(45, 212, 191, 0.14), transparent 36%);
}

#wizardStep1 .wizard-upload-zone {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 1.2rem;
  gap: 0.35rem;
  border-radius: 18px;
  align-content: center;
}

#wizardStep1 .wizard-upload-kicker {
  font-size: 0.78rem;
}

#wizardStep1 .wizard-upload-zone strong {
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

#wizardStep1 .wizard-upload-subcopy {
  display: none;
}

#wizardStep1 .wizard-recovery-panel {
  display: none;
  height: 100%;
  padding: 1.2rem;
  place-content: center;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
}

#wizardStep1 .wizard-recovery-copy {
  max-width: 28rem;
  margin: 0;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
}

#wizardStep1 .wizard-recovery-action {
  min-width: 168px;
}

#wizardStep1 .wizard-upload-card.has-images .wizard-upload-zone {
  display: none;
}

#wizardStep1 .wizard-upload-card.is-recovery .wizard-upload-zone {
  display: none;
}

#wizardStep1 .wizard-upload-card.is-recovery .wizard-recovery-panel {
  display: grid;
}

#wizardStep1 .wizard-thumb-section {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

#wizardStep1 .wizard-upload-card.has-images .wizard-thumb-section {
  display: block;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

#wizardStep1 .wizard-upload-card.has-images .wizard-thumb-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  width: 100%;
  height: 100%;
  gap: 0.7rem;
  padding: 0;
  overflow: auto;
  direction: inherit;
  align-items: stretch;
  justify-items: stretch;
  align-content: start;
  scroll-snap-type: none;
}

.wizard-room-pair-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.72rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.wizard-room-pair-card.is-current {
  border-color: rgba(18, 181, 162, 0.34);
  box-shadow:
    0 0 0 2px rgba(18, 181, 162, 0.12),
    0 12px 26px rgba(15, 23, 42, 0.08);
}

.wizard-room-pair-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.wizard-room-pair-head strong {
  color: var(--dark);
  font-size: 0.95rem;
}

.wizard-swap-pair-button {
  min-height: 30px;
  padding: 0.32rem 0.7rem;
  font-size: 0.78rem;
}

.wizard-room-pair-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.wizard-room-slot {
  position: relative;
  display: grid;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.06), rgba(45, 212, 191, 0.08)),
    #eef4f9;
}

.wizard-room-slot.is-empty {
  place-items: center;
  gap: 0.45rem;
  padding: 0.8rem;
  border-style: dashed;
  cursor: pointer;
  text-align: center;
}

.wizard-room-slot-button {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 132px;
  padding: 0;
  border: none;
  background: transparent;
}

.wizard-room-slot img,
.wizard-room-slot .wizard-thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wizard-room-slot-number {
  position: absolute;
  top: 0.45rem;
  inset-inline-start: 0.45rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  height: 1.55rem;
  padding-inline: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.wizard-room-slot-placeholder {
  max-width: 11rem;
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

#wizardStep1 .wizard-upload-card.has-images .wizard-thumb {
  flex: none;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 14px;
}

#wizardStep1 .wizard-upload-card.has-images .wizard-thumb-button {
  height: 100%;
}

#wizardStep1 .wizard-upload-card.has-images .wizard-thumb img,
#wizardStep1 .wizard-upload-card.has-images .wizard-thumb-placeholder {
  height: 100%;
}

#wizardStep1 .wizard-thumb-index,
#wizardStep1 .wizard-thumb-remove {
  top: 0.35rem;
  min-width: 1.45rem;
  height: 1.45rem;
  padding-inline: 0.35rem;
  font-size: 0.7rem;
}

#wizardStep1 .wizard-thumb-first-label {
  position: absolute;
  inset-inline-start: 0.4rem;
  inset-block-end: 0.4rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.88);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

#wizardStep1 #uploadFlowHelper.is-info,
#wizardStep1 #uploadFlowHelper.is-error {
  padding: 0.45rem 0.6rem;
  border-radius: 12px;
}

#wizardStep1 #uploadFlowHelper.is-info {
  background: rgba(45, 212, 191, 0.1);
  color: var(--dark);
}

#wizardStep1 #uploadFlowHelper.is-error {
  background: rgba(220, 38, 38, 0.08);
  color: var(--error);
}

#wizardStep2 .wizard-pane-header {
  margin-bottom: 0.15rem;
}

#wizardStep2 .wizard-pane-header > :not(.wizard-step-counter) {
  display: none;
}

#wizardStep2 .wizard-step-counter {
  font-size: 0.72rem;
  line-height: 1.1;
}

#wizardStep2 .wizard-card {
  padding: 0.72rem;
}

#wizardStep2 .wizard-progress-dots {
  display: none;
}

#wizardStep2 .wizard-dot {
  width: 0.72rem;
  height: 0.72rem;
}

#wizardStep2 .wizard-describe-grid {
  gap: 0.7rem;
  grid-template-columns: minmax(280px, 0.76fr) minmax(380px, 1.24fr);
  align-items: stretch;
}

#wizardStep2 .wizard-preview-panel,
#wizardStep2 .wizard-fields-panel {
  gap: 0.52rem;
}

#wizardStep2 .wizard-preview-panel {
  grid-template-rows: auto auto auto;
  min-width: 0;
  align-content: start;
}

#wizardStep2 .wizard-fields-panel {
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  min-width: 0;
  align-content: start;
}

#wizardStep2 .wizard-preview-nav {
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.05rem;
}

#wizardStep2 .wizard-preview-support {
  display: grid;
  gap: 0.38rem;
  align-content: start;
}

#wizardStep2 .wizard-preview-copy {
  gap: 0;
  font-size: 0.82rem;
  line-height: 1.15;
}

#wizardStep2 #describeFilename {
  display: none;
}

#wizardStep2 .wizard-preview-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.05);
  color: var(--dark);
  font-weight: 700;
}

#wizardStep2 .wizard-preview-actions {
  gap: 0.3rem;
  padding: 0.18rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.03);
}

#wizardStep2 .wizard-small-button {
  min-height: 32px;
  padding: 0.35rem 0.62rem;
  font-size: 0.82rem;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

#wizardStep2 .wizard-focus-frame {
  height: clamp(176px, 30vh, 208px);
  min-height: 0;
  border-radius: 16px;
  margin-bottom: 0;
}

#wizardStep2 .wizard-focus-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  width: 100%;
  height: 100%;
}

#wizardStep2 .wizard-focus-pair-item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: none;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.05);
  padding: 0;
}

#wizardStep2 .wizard-focus-pair-item img,
#wizardStep2 .wizard-focus-pair-item .wizard-thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#wizardStep2 .wizard-focus-pair-item span {
  position: absolute;
  inset-inline-start: 0.5rem;
  inset-block-end: 0.5rem;
  padding: 0.24rem 0.52rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.82);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
}

#wizardStep2 .wizard-status-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem;
  justify-content: flex-start;
  align-items: start;
  min-height: 40px;
  padding: 0.58rem 0.72rem;
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: start;
}

#wizardStep2 .wizard-field {
  gap: 0.24rem;
}

#wizardStep2 .wizard-input,
#wizardStep2 .wizard-textarea {
  padding: 0.62rem 0.82rem;
  border-radius: 13px;
}

#wizardStep2 .wizard-textarea {
  min-height: 72px;
}

#wizardStep2 .wizard-pair-card {
  padding: 0.72rem;
  border-radius: 16px;
  display: grid;
  align-content: start;
  gap: 0.42rem;
  min-height: 0;
}

#wizardStep2 .wizard-pair-preview {
  gap: 0.42rem;
  margin-block-start: 0.28rem;
  margin-block-end: 0.06rem;
  align-items: stretch;
}

#wizardStep2 .wizard-choice-row {
  gap: 0.42rem;
  padding: 0.2rem;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.04);
}

#wizardStep2 .wizard-choice-button {
  min-height: 40px;
  padding: 0.55rem 0.75rem;
}

#wizardStep2 #describePairHint {
  display: none;
}

#wizardStep2 .wizard-pair-mini strong {
  display: block;
  color: var(--dark);
  font-size: 0.78rem;
  margin-bottom: 0.28rem;
}

#wizardStep2 .wizard-pair-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: rgba(17, 24, 39, 0.04);
  border-radius: 14px;
  min-height: 112px;
  overflow: hidden;
}

#wizardStep2 .wizard-section-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.86rem;
  color: var(--dark);
}

#wizardStep2 .wizard-inline-actions {
  display: flex;
  justify-content: flex-start;
  gap: 0.35rem;
  align-items: center;
  padding-top: 0.12rem;
  border-top: none;
}

#wizardStep2 #describeSkipButton {
  min-height: 34px;
  box-shadow: none;
  background: transparent;
  border-color: transparent;
  color: var(--muted);
  justify-self: start;
  width: auto;
  padding-inline: 0.2rem;
}

#wizardStep2 #describeReadyButton {
  width: 100%;
  min-height: 42px;
}

#wizardStep2 #describeReadyButton {
  min-height: 40px;
}

#wizardStep2 .wizard-cta-row {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.wizard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wizard-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
}

.wizard-thumb-index,
.wizard-thumb-remove {
  position: absolute;
  top: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding-inline: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.wizard-thumb-index {
  inset-inline-start: 0.45rem;
}

.wizard-thumb-remove {
  inset-inline-end: 0.45rem;
  border: none;
}

.wizard-thumb-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: grab;
}

.wizard-thumb-button:active {
  cursor: grabbing;
}

.wizard-progress-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.wizard-dot {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.46);
}

.wizard-dot.is-ready {
  background: rgba(15, 159, 110, 0.9);
}

.wizard-dot.is-active {
  transform: scale(1.2);
  background: var(--dark);
}

.wizard-dot.is-missing {
  background: rgba(220, 38, 38, 0.82);
}

.wizard-empty-panel {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.04);
  color: var(--muted);
  font-weight: 700;
}

.wizard-empty-panel.is-hidden {
  display: none;
}

.wizard-describe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.wizard-preview-panel,
.wizard-fields-panel,
.wizard-style-panel {
  display: grid;
  gap: 0.85rem;
}

.wizard-preview-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.wizard-preview-copy {
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.wizard-preview-copy strong {
  color: var(--dark);
  font-size: 1rem;
  word-break: break-word;
}

.wizard-preview-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.wizard-small-button {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  font-weight: 700;
}

.wizard-small-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.wizard-focus-frame {
  min-height: 280px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.08), rgba(45, 212, 191, 0.08)),
    #eef4f9;
  color: var(--muted);
  font-weight: 800;
}

.wizard-focus-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wizard-status-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.04);
  color: var(--dark);
  font-weight: 700;
}

.wizard-status-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--warning);
  flex-shrink: 0;
}

.wizard-status-dot.is-ready {
  background: var(--success);
}

.wizard-status-dot.is-missing {
  background: var(--error);
}

.wizard-field {
  display: grid;
  gap: 0.45rem;
}

.wizard-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 0.65rem;
  align-items: center;
  direction: ltr;
}

.wizard-currency-select {
  min-width: 0;
  font-weight: 800;
  text-align: center;
  text-align-last: center;
}

.wizard-room-suggestions {
  display: none;
}

.wizard-room-suggestions:empty {
  display: none;
}

.wizard-room-suggestion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  font-weight: 700;
}

.wizard-room-suggestion.is-selected {
  background: rgba(17, 24, 39, 0.92);
  border-color: rgba(17, 24, 39, 0.92);
  color: #ffffff;
}

.wizard-field span:first-child,
.wizard-section-label {
  color: var(--dark-soft);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.wizard-section-label {
  color: #728093;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.wizard-input,
.wizard-textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.wizard-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-inline-end: 2.5rem;
}

.wizard-textarea {
  min-height: 120px;
  resize: vertical;
}

.wizard-pair-card {
  padding: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.03);
}

.wizard-pair-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-block: 0.8rem;
}

.wizard-pair-mini {
  display: grid;
  gap: 0.45rem;
}

.wizard-pair-mini strong {
  color: var(--dark);
  font-size: 0.88rem;
  word-break: break-word;
}

.wizard-pair-thumb {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.08), rgba(45, 212, 191, 0.08)),
    #eef4f9;
}

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

.wizard-pair-thumb-text {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
}

.wizard-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.wizard-choice-button {
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  font-weight: 800;
}

.wizard-choice-button.is-selected,
.wizard-music-option.is-selected {
  background: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
}

.wizard-inline-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wizard-inline-actions .wizard-button {
  flex: 1 1 0;
}

.wizard-form-grid,
.wizard-style-grid,
.wizard-review-grid {
  display: grid;
  gap: 0.95rem;
}

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

.wizard-form-grid-secondary {
  align-items: start;
}

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

.wizard-input-file {
  padding: 0.7rem 0.85rem;
}

.wizard-file-status {
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.04);
  color: var(--muted);
  font-weight: 700;
}

.wizard-style-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.wizard-style-panel-wide {
  grid-column: 1 / -1;
}

.wizard-style-bar {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dark), var(--primary));
}

.wizard-music-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.wizard-cta-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.wizard-public-contact-panel {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.wizard-public-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.wizard-selection-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark-soft);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.wizard-selection-chip.is-selected {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(13, 148, 136, 0.38);
  color: var(--dark);
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.08);
}

.wizard-music-option {
  display: grid;
  gap: 0.2rem;
  min-height: 72px;
  padding: 0.75rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  text-align: center;
  color: var(--dark);
}

.wizard-music-option strong {
  font-size: 0.96rem;
}

.wizard-music-option span {
  color: inherit;
  font-size: 0.82rem;
}

.wizard-review-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.wizard-review-list {
  display: grid;
  gap: 0.65rem;
}

.wizard-review-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.wizard-review-label {
  color: var(--muted);
  font-weight: 700;
}

.wizard-review-value {
  color: var(--dark);
  font-weight: 800;
  text-align: end;
}

.wizard-review-value.is-ready {
  color: var(--success);
}

.wizard-trust-box {
  padding: 1.25rem;
  border: 1px solid rgba(15, 159, 110, 0.18);
  border-radius: 24px;
  background: rgba(15, 159, 110, 0.08);
}

.wizard-trust-title {
  color: var(--success);
  font-size: 0.96rem;
  font-weight: 800;
}

.wizard-trust-items {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.wizard-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #206b4b;
  line-height: 1.55;
  font-weight: 700;
}

.wizard-trust-item::before {
  content: "✓";
  flex-shrink: 0;
}

#wizardStep5 #rightsCheckbox + label + p {
  font-size: 0.85rem;
}

#wizardStep5 #rightsCheckbox + label + p a {
  color: #1d6fdb;
  text-decoration: underline;
  cursor: pointer;
}

.wizard-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.wizard-cta-row-end {
  justify-content: flex-end;
}

.wizard-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.wizard-button:hover:not(:disabled),
.wizard-choice-button:hover,
.wizard-small-button:hover,
.wizard-close:hover,
.wizard-thumb-remove:hover {
  transform: translateY(-1px);
}

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

.wizard-button-primary {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.18);
}

.wizard-button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 24, 39, 0.1);
  color: var(--dark);
}

.wizard-button-create {
  min-width: 180px;
}

@media (max-width: 1080px) {
  .wizard-launch-card,
  .wizard-style-grid,
  .wizard-review-grid,
  .wizard-form-grid {
    grid-template-columns: 1fr;
  }

  #wizardStep2 .wizard-describe-grid {
    grid-template-columns: minmax(248px, 0.8fr) minmax(300px, 1.2fr);
  }
}

@media (max-width: 760px) {
  .photo-guide-modal.is-open {
    padding: 0.25rem;
  }

  .photo-guide-card {
    width: 100%;
    max-height: calc(100vh - 0.5rem);
    border-radius: 22px;
  }

  .photo-guide-header {
    padding: 1.45rem 1.15rem 0.85rem;
  }

  .photo-guide-header h2 {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .photo-guide-body {
    gap: 1rem;
    padding: 0 1.15rem 1rem;
  }

  .photo-guide-section,
  .photo-guide-section-basic {
    padding: 1rem;
    border-radius: 20px;
  }

  .photo-guide-pair-demo,
  .photo-guide-overlap-grid,
  .photo-guide-shoot-grid {
    grid-template-columns: 1fr;
  }

  .photo-guide-tip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-guide-media-slot {
    min-height: 150px;
  }

  .photo-guide-section-basic .photo-guide-media-slot {
    min-height: 170px;
  }

  .photo-guide-overlap-demo {
    min-height: 180px;
  }

  .photo-guide-video-slot {
    min-height: 140px;
  }

  .photo-guide-tip-list li {
    min-height: 92px;
  }

  .photo-guide-actions {
    padding: 0.95rem 1.15rem 1.1rem;
  }

  .photo-guide-start-button {
    width: 100%;
  }

  .wizard-launch-shell {
    display: none;
  }

  .wizard-launch-card {
    padding: 1.35rem;
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-shell {
    width: calc(100% - 0.5rem);
    max-height: calc(100vh - 0.5rem);
    margin: 0.25rem auto;
    border-radius: 24px;
  }

  .wizard-topbar {
    flex-wrap: wrap;
    padding: 0.8rem 0.9rem;
    gap: 0.75rem;
  }

  .wizard-stepper-scroll {
    order: 3;
    width: 100%;
  }

  .wizard-stepper {
    justify-content: flex-start;
  }

  .wizard-body {
    padding: 1rem 0.75rem 2rem;
  }

  .wizard-upload-meta,
  .wizard-choice-row,
  .wizard-music-grid {
    grid-template-columns: 1fr;
  }

  .wizard-thumb-grid {
    gap: 0.75rem;
  }

  .wizard-preview-nav,
  .wizard-thumb-header,
  .wizard-review-row,
  .wizard-cta-row,
  .wizard-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-review-value {
    text-align: start;
  }

  .wizard-button,
  .wizard-small-button {
    width: 100%;
  }

  #wizardStep1 .wizard-upload-toolbar {
    gap: 0.65rem;
    margin-bottom: 0.65rem;
  }

  #wizardStep1 .wizard-upload-helper-group,
  #wizardStep1 .wizard-upload-toolbar-meta {
    width: 100%;
  }

  #wizardStep1 .wizard-upload-toolbar-meta {
    justify-content: space-between;
    gap: 0.75rem;
  }

  #wizardStep1 .wizard-upload-mini {
    width: 100%;
    min-height: 44px;
  }

  #wizardStep1 .wizard-upload-stage {
    min-height: 300px;
    padding: 0.5rem;
  }

  #wizardStep1 .wizard-upload-zone {
    min-height: 220px;
    padding: 1.1rem 1rem;
  }

  #wizardStep1 .wizard-upload-card.has-images .wizard-upload-stage {
    min-height: auto;
    overflow: visible;
  }

  #wizardStep1 .wizard-upload-card.has-images .wizard-thumb-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    height: auto;
    gap: 0.7rem;
    overflow: visible;
    align-content: start;
  }

  .wizard-room-pair-slots,
  #wizardStep2 .wizard-focus-pair {
    grid-template-columns: 1fr;
  }

  #wizardStep1 .wizard-upload-card.has-images .wizard-thumb {
    min-height: 132px;
    border-radius: 18px;
  }

  #wizardStep1 .wizard-upload-card.has-images .wizard-thumb-button {
    min-height: 132px;
  }

  #wizardStep1 .wizard-thumb-index,
  #wizardStep1 .wizard-thumb-remove {
    min-width: 2rem;
    height: 2rem;
    font-size: 0.82rem;
  }

  #wizardStep1 .wizard-thumb-first-label {
    inset-inline-start: 0.55rem;
    inset-block-end: 0.55rem;
    min-height: 1.9rem;
    padding-inline: 0.65rem;
    font-size: 0.76rem;
  }

  #wizardStep2 .wizard-describe-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  #wizardStep2 .wizard-progress-dots {
    display: flex;
    gap: 0.45rem;
    padding-bottom: 0.2rem;
  }

  #wizardStep2 .wizard-dot {
    width: 0.88rem;
    height: 0.88rem;
  }

  #wizardStep2 .wizard-preview-panel,
  #wizardStep2 .wizard-fields-panel {
    gap: 0.7rem;
  }

  #wizardStep2 .wizard-preview-panel {
    order: 1;
  }

  #wizardStep2 .wizard-fields-panel {
    order: 2;
  }

  #wizardStep2 .wizard-preview-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.35rem;
    padding: 0.22rem;
  }

  #wizardStep2 .wizard-small-button {
    width: 100%;
    min-height: 44px;
    padding: 0.6rem 0.75rem;
  }

  #wizardStep2 .wizard-status-card {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  #wizardStep2 .wizard-fields-panel > .wizard-field:first-of-type {
    order: 1;
  }

  #wizardStep2 .wizard-room-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  #wizardStep2 .wizard-room-suggestion {
    min-height: 42px;
    padding: 0.6rem 0.95rem;
  }

  #wizardStep2 .wizard-fields-panel > .wizard-field:nth-of-type(2) {
    order: 2;
  }

  #wizardStep2 .wizard-pair-card {
    order: 3;
    padding: 0.8rem;
  }

  #wizardStep2 .wizard-inline-actions {
    display: flex;
    justify-content: flex-start;
    order: 4;
  }

  #wizardStep2 .wizard-textarea {
    min-height: 96px;
  }

  #wizardStep2 .wizard-choice-button {
    min-height: 46px;
  }

  #wizardStep2 .wizard-pair-preview {
    gap: 0.55rem;
    margin-block-start: 0.2rem;
  }

  #wizardStep2 .wizard-pair-thumb {
    min-height: 132px;
  }

  #wizardStep2 .wizard-focus-frame {
    height: 240px;
  }
}

@media (max-width: 760px) {
  .photo-guide-modal.is-open {
    padding: 0.35rem;
  }

  .photo-guide-card {
    max-height: calc(100vh - 0.7rem);
    border-radius: 24px;
  }

  .photo-guide-close {
    top: 0.85rem;
    left: 0.85rem;
    width: 42px;
    height: 42px;
  }

  .photo-guide-header {
    min-height: 150px;
    padding: 2.1rem 1.15rem 1.1rem;
  }

  .photo-guide-section-stack {
    gap: 1rem;
    padding: 0 1rem 1rem;
  }

  .photo-guide-section,
  .photo-guide-rule-section {
    padding: 1rem;
    border-radius: 22px;
  }

  .photo-guide-rule-visual,
  .photo-guide-example-grid,
  .photo-guide-shoot-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .photo-guide-rule-visual {
    min-height: auto;
    padding: 0.65rem;
    border-radius: 22px;
  }

  .photo-guide-frame {
    min-height: 165px;
    border-radius: 20px;
  }

  .photo-guide-overlap-visual {
    min-height: 190px;
    border-radius: 20px;
  }

  .photo-guide-video-placeholder {
    min-height: 150px;
    border-radius: 20px;
  }

  .photo-guide-tip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-guide-footer {
    padding: 0.95rem 1rem 1.1rem;
  }
}

@media (max-width: 460px) {
  .photo-guide-tip-list {
    grid-template-columns: 1fr;
  }
}

/* ── Stage 1: Header redesign ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,7,11,0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--line, rgba(255,255,255,0.055));
}

.site-header .header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.25rem;
}

.site-header .brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.site-header .brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(223,219,234,0.44);
  text-transform: lowercase;
  line-height: 1;
}

.site-header .brand-mark {
  font-size: clamp(1.5rem, 1.4rem + 0.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #e0dcea;
}

.site-header .brand-mark .r   { color: var(--teal, #96dfe5); }
.site-header .brand-mark .e   { color: var(--accent-2, #b49dff); }
.site-header .brand-mark .tour { color: #e0dcea; }

.site-header .header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}

.site-header .header-nav a {
  text-decoration: none;
  color: var(--text-muted, #757289);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.18s ease;
}

.site-header .header-nav a:hover {
  color: var(--text-soft, #aba7bb);
}

.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-header .language-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.site-header .lang-sep {
  display: block;
  width: 1px;
  height: 1rem;
  background: rgba(255,255,255,0.12);
}

.site-header .language-pill {
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted, #757289);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s, color 0.18s;
}

.site-header .language-pill.is-active {
  background: rgba(255,255,255,0.1);
  color: var(--text-main, #ddd9e9);
}

.site-header #headerCta {
  color: #f7f3ff;
  background: linear-gradient(135deg,
    #7c5cff 0%, #8c70ff 46%, #a38cff 100%);
  box-shadow: 0 0.375rem 1.5rem rgba(123,92,255,0.28);
  border-color: transparent;
}

.site-header #headerCta:hover {
  box-shadow: 0 0.625rem 2.25rem rgba(123,92,255,0.42);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .site-header .header-shell {
    grid-template-columns: auto 1fr auto;
    min-height: auto;
    padding-block: 0.75rem;
  }
  .site-header .header-nav {
    display: none;
  }
}

/* ── Stage 2: Hero redesign ── */

.hero-section {
  min-height: calc(100svh - 4.25rem);
  padding-top: clamp(3rem, 10vh, 7rem);
  padding-bottom: clamp(3rem, 6vh, 4.875rem);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background: transparent;
}

.hero-section .hero-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .hero-frame {
  width: min(100%, 63rem);
  min-height: clamp(28rem, 58vh, 42rem);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.375rem)
           clamp(1.5rem, 4vw, 2.875rem)
           clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--line-faint,
    rgba(255,255,255,0.018));
  border-radius: 1.375rem;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.01),
    rgba(255,255,255,0.004));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 58%,
      rgba(139,111,255,0.09), transparent 28%),
    linear-gradient(rgba(255,255,255,0.016) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: auto, 2.625rem 2.625rem,
    2.625rem 2.625rem;
  opacity: 0.5;
  pointer-events: none;
}

.hero-section .hero-glow-left,
.hero-section .hero-glow-right {
  position: absolute;
  top: 50%;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  filter: blur(5.625rem);
  opacity: 0.08;
  pointer-events: none;
}

.hero-section .hero-glow-left {
  left: -5rem;
  background: rgba(139,111,255,0.9);
  transform: translateY(-56%);
}

.hero-section .hero-glow-right {
  right: -6rem;
  background: rgba(150,223,229,0.62);
  transform: translateY(-42%);
}

.hero-section .hero-inner {
  width: min(47.5rem, 100%);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-section .hero-chip-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-section .hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.4375rem 0.875rem;
  border: 1px solid rgba(255,255,255,0.074);
  background: rgba(255,255,255,0.018);
  color: rgba(229,226,238,0.8);
  font-size: 0.75rem;
  font-weight: 500;
}

.hero-section .hero-chip::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #9076ff;
  box-shadow: 0 0 0.625rem rgba(144,118,255,0.7);
  flex: 0 0 auto;
  animation: chip-pulse 2.4s ease-in-out infinite;
}

@keyframes chip-pulse {
  0%, 100% { box-shadow: 0 0 0.4rem rgba(144,118,255,0.6); }
  50%       { box-shadow: 0 0 0.875rem rgba(144,118,255,0.9); }
}

.hero-section .hero-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hero-section .flow-step {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(180,157,255,0.7);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(139,111,255,0.08);
  border: 1px solid rgba(139,111,255,0.15);
}

.hero-section .flow-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

.hero-section .hero-eyebrow-hidden {
  display: none;
}

.hero-section h1 {
  margin: 0;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #ddd9e8;
  text-wrap: balance;
}

.hero-section .hero-sub {
  margin: 1.5rem auto 0;
  max-width: 44ch;
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(170,166,187,0.84);
}

.hero-section .hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-section .hero-cta-primary {
  color: #f7f3ff;
  background: linear-gradient(135deg,
    #7c5cff 0%, #8c70ff 46%, #a38cff 100%);
  box-shadow: 0 0.375rem 1.5rem rgba(123,92,255,0.28);
  border-color: transparent;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.hero-section .hero-cta-primary:hover {
  box-shadow: 0 0.625rem 2.25rem rgba(123,92,255,0.42);
  transform: translateY(-1px);
}

.hero-section .hero-cta-secondary {
  color: var(--text-soft, #aba7bb);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}

.hero-section .hero-cta-secondary:hover {
  color: var(--text-main, #ddd9e9);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.hero-section .hero-trust {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted, #757289);
}

.hero-section .hero-trust span {
  color: var(--green, #6ee7b7);
  font-weight: 500;
}

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

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

.hero-section .hero-ornament {
  position: absolute;
  inset: auto 0 2.5rem;
  margin: 0 auto;
  width: min(28rem, 62%);
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.12), transparent);
  opacity: 0.44;
  pointer-events: none;
}

@media (max-width: 760px) {
  .hero-section {
    min-height: auto;
    padding-top: clamp(1.5rem, 5vh, 3rem);
    padding-bottom: 3rem;
  }
  .hero-section .hero-frame {
    min-height: auto;
    padding: 1.625rem 1.125rem 2.25rem;
  }
  .hero-section h1 {
    width: 100%;
  }
  .hero-section .hero-sub {
    max-width: 30ch;
  }
  .hero-section .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-section .hero-actions .button {
    width: 100%;
    max-width: 18rem;
  }
}

/* ── Stage 3: Strip / Value Props ── */

.strip-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  position: relative;
  z-index: 2;
}

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

.strip-section .strip-shell {
  display: flex;
  justify-content: center;
}

.strip-section .strip-props {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.strip-section .strip-prop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.strip-section .strip-prop-icon {
  color: var(--accent, #8b6fff);
  font-size: 0.625rem;
  flex-shrink: 0;
}

.strip-section .strip-prop-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-soft, #aba7bb);
  line-height: 1.5;
}

.strip-section .strip-dot {
  color: rgba(255,255,255,0.16);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .strip-section .strip-props {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .strip-section .strip-dot {
    display: none;
  }
}

/* ── Stage 3 correction: Dark top + Strip copy ── */

.hero-section {
  background:
    radial-gradient(circle at 18% 10%,
      rgba(139,111,255,0.18), transparent 26rem),
    radial-gradient(circle at 82% 18%,
      rgba(150,223,229,0.12), transparent 24rem),
    radial-gradient(circle at 50% 72%,
      rgba(180,157,255,0.08), transparent 30rem),
    linear-gradient(180deg,
      var(--bg, #06070b) 0%,
      var(--bg-2, #0a0b11) 100%);
  color: var(--text-main, #ddd9e9);
}

.hero-section .hero-frame {
  border-color: rgba(255,255,255,0.07);
  background: linear-gradient(180deg,
    rgba(255,255,255,0.035),
    rgba(255,255,255,0.012));
  box-shadow:
    0 2rem 5rem rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.035);
}

.hero-section h1 {
  color: var(--text-main, #ddd9e9);
  text-shadow: 0 0.875rem 2.5rem rgba(0,0,0,0.36);
}

.hero-section .hero-sub {
  color: rgba(221,217,233,0.78);
}

.hero-section .flow-step {
  color: rgba(202,188,255,0.82);
  background: rgba(139,111,255,0.12);
  border-color: rgba(180,157,255,0.22);
}

.hero-section .hero-trust {
  color: rgba(171,167,187,0.82);
}

.strip-section {
  background:
    radial-gradient(circle at 22% 0%,
      rgba(139,111,255,0.12), transparent 22rem),
    radial-gradient(circle at 80% 0%,
      rgba(150,223,229,0.08), transparent 20rem),
    linear-gradient(180deg,
      var(--bg-2, #0a0b11) 0%,
      var(--bg, #06070b) 100%);
  color: var(--text-soft, #aba7bb);
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.strip-section .strip-shell {
  display: flex;
  justify-content: center;
}

.strip-section .strip-visible-copy {
  max-width: 47.5rem;
  margin: 0;
  color: rgba(221,217,233,0.82);
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 760px) {
  .strip-section .strip-visible-copy {
    max-width: 32ch;
  }
}

/* ── Global dark background for landing ── */

html,
body {
  background:
    radial-gradient(circle at 50% 36%,
      rgba(139,111,255,0.045), transparent 16%),
    linear-gradient(180deg,
      var(--bg, #06070b) 0%,
      var(--bg-2, #0a0b11) 50%,
      var(--bg, #06070b) 100%);
  color: var(--text-main, #ddd9e9);
}

/* Aurora ambient effect */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%,
      rgba(139,111,255,0.13), transparent),
    radial-gradient(ellipse 50% 40% at 80% 60%,
      rgba(150,223,229,0.06), transparent),
    radial-gradient(ellipse 40% 35% at 10% 70%,
      rgba(139,111,255,0.05), transparent);
}

/* Protect wizard inner shell — not the modal backdrop */
.wizard-shell {
  color: var(--text, #0f172a);
}

/* Protect photo guide card */
.photo-guide-card {
  color: var(--text, #0f172a);
}

/* Clear old light section backgrounds */
.section-soft {
  background: transparent;
}

.section {
  background: transparent;
}

/* Ensure landing sections render above aurora */
.site-header,
.hero-section,
.strip-section,
.section,
main > section {
  position: relative;
  z-index: 1;
}

/* Preserve readable text inside existing light landing surfaces */
main > .section .section-heading h2 {
  color: var(--text-main, #ddd9e9);
}

main > .section .section-heading p {
  color: var(--text-soft, #aba7bb);
}

.step-card,
.faq-item,
.wizard-launch-card,
.site-footer {
  color: var(--text, #0f172a);
}

.step-card h3,
.faq-item summary,
.wizard-launch-copy h2,
.footer-brand {
  color: var(--dark, #111827);
}

.step-card p,
.faq-item p,
.wizard-launch-copy p,
.footer-tagline,
.footer-meta {
  color: var(--muted, #475569);
}

/* ── Stage 3.6: button-primary purple override ── */

.button-primary:not(.photo-guide-button):not([class*="wizard"]) {
  background: linear-gradient(135deg,
    #7c5cff 0%, #8c70ff 46%, #a38cff 100%);
  color: #f7f3ff;
  box-shadow: 0 0.375rem 1.5rem rgba(123,92,255,0.28);
  border-color: transparent;
}

.button-primary:not(.photo-guide-button):not([class*="wizard"]):hover {
  box-shadow: 0 0.625rem 2.25rem rgba(123,92,255,0.42);
  transform: translateY(-1px);
}

/* ── Stage 3.6: dark landing cards ── */

.step-card {
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  color: var(--text-main, #ddd9e9);
  border-radius: 1.25rem;
}

.step-card .step-index {
  color: var(--accent, #8b6fff);
}

.step-card h3 {
  color: var(--text-main, #ddd9e9);
}

.step-card p {
  color: var(--text-muted, #757289);
}

.faq-item {
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  color: var(--text-main, #ddd9e9);
  border-radius: 1rem;
}

.faq-item summary {
  color: var(--text-main, #ddd9e9);
}

.faq-item p {
  color: var(--text-muted, #757289);
}

.wizard-launch-card {
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  color: var(--text-main, #ddd9e9);
  border-radius: 1.375rem;
}

.wizard-launch-card h2,
.wizard-launch-card .eyebrow {
  color: var(--text-main, #ddd9e9);
}

.wizard-launch-card p {
  color: var(--text-soft, #aba7bb);
}

/* ── Stage 3.6: section heading colors ── */

.section-heading h2 {
  color: var(--text-main, #ddd9e9);
}

.section-heading p {
  color: var(--text-soft, #aba7bb);
}

/* Scoped eyebrow — landing sections only.
   Do not affect wizard modal or photo guide modal. */
main > .section .eyebrow,
.hero-section .eyebrow,
.strip-section .eyebrow,
.wizard-launch-shell .eyebrow {
  color: var(--accent, #8b6fff);
}

/* ── Stage 4: Demo Section ── */

.demo-section {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  position: relative;
  z-index: 2;
}

.demo-section .demo-shell {
  width: min(100%, 53.75rem);
  margin: 0 auto;
}

.demo-section .demo-card {
  border-radius: 1.375rem;
  padding: 1.125rem;
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  position: relative;
}

.demo-section .demo-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.demo-section .demo-stage {
  border-radius: calc(1.375rem - 0.375rem);
  border: 1px solid rgba(255,255,255,0.045);
  background:
    radial-gradient(circle at 50% 48%,
      rgba(139,111,255,0.06), transparent 40%),
    linear-gradient(145deg,
      rgba(12,12,18,0.98), rgba(15,15,22,0.96));
  padding: clamp(1.5rem, 3vw, 2.25rem)
           clamp(1rem, 3vw, 2rem);
}

.demo-section .demo-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted, #757289);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.demo-section .demo-cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.demo-section .demo-col {
  flex: 1;
  min-width: 9rem;
  max-width: 16rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.demo-section .demo-col-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted, #757289);
}

.demo-section .demo-col-label-after {
  color: var(--accent-2, #b49dff);
}

.demo-section .demo-col-caption {
  font-size: 0.8125rem;
  color: var(--text-muted, #757289);
  text-align: center;
  line-height: 1.5;
}

.demo-section .demo-photos-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
}

.demo-section .demo-photo-slot {
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  border: 1px dashed rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.demo-section .demo-slot-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
}

.demo-section .demo-slot-wide {
  grid-column: span 2;
  aspect-ratio: 8/3;
}

.demo-section .demo-arrow {
  flex-shrink: 0;
}

.demo-section .demo-video-placeholder {
  width: 100%;
  max-width: 7.5rem;
  aspect-ratio: 9/14;
  border-radius: 0.875rem;
  border: 1px dashed rgba(139,111,255,0.35);
  background:
    radial-gradient(circle at 50% 40%,
      rgba(139,111,255,0.08), transparent 60%),
    rgba(10,10,20,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  box-shadow: 0 0 2rem rgba(139,111,255,0.1);
}

.demo-section .demo-video-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(139,111,255,0.15);
  border: 1px solid rgba(139,111,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-section .demo-video-text {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(180,157,255,0.6);
  text-transform: uppercase;
  text-align: center;
  padding: 0 0.5rem;
  line-height: 1.5;
}

.demo-section .demo-time-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted, #757289);
}

@media (max-width: 640px) {
  .demo-section .demo-cols {
    flex-direction: column;
  }
  .demo-section .demo-arrow {
    transform: rotate(90deg);
  }
  .demo-section .demo-col {
    max-width: 100%;
    width: 100%;
  }
}

/* ── Stage 4 refinement: outcome-focused Demo Section ── */

.demo-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.demo-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 28rem;
  pointer-events: none;
  background:
    radial-gradient(ellipse 44% 62% at 50% 24%,
      rgba(139,111,255,0.14), transparent 68%),
    radial-gradient(ellipse 28% 44% at 18% 58%,
      rgba(150,223,229,0.055), transparent 70%);
  opacity: 0.88;
}

.demo-section .demo-shell {
  width: min(100%, 72rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  z-index: 1;
}

.demo-section .demo-section-heading {
  max-width: 53rem;
  margin: 0 auto;
  text-align: center;
}

.demo-section .demo-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  color: var(--accent-2, #b49dff);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-section .demo-section-heading h2 {
  margin: 0;
  color: var(--text-main, #ddd9e9);
  font-size: clamp(2rem, 1.45rem + 2.2vw, 3.625rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.demo-section .demo-section-heading p {
  max-width: 49rem;
  margin: 1rem auto 0;
  color: var(--text-soft, #aba7bb);
  font-size: clamp(0.9375rem, 0.88rem + 0.24vw, 1.0625rem);
  line-height: 1.75;
}

.demo-section .demo-showcase-card {
  width: min(100%, 64rem);
  position: relative;
  overflow: hidden;
  padding: clamp(0.875rem, 2vw, 1.375rem);
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  border-radius: 1.625rem;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.046), rgba(255,255,255,0.014)),
    rgba(255,255,255,0.018);
  box-shadow:
    0 2.5rem 7rem rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.demo-section .demo-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(180,157,255,0.28), transparent);
  pointer-events: none;
}

.demo-section .demo-showcase-glow {
  position: absolute;
  inset: -22% 15% auto;
  height: 16rem;
  border-radius: 999px;
  background: rgba(139,111,255,0.18);
  filter: blur(5.5rem);
  opacity: 0.56;
  pointer-events: none;
}

.demo-section .demo-result-frame {
  width: 100%;
  position: relative;
  padding: clamp(0.625rem, 1.4vw, 0.95rem);
  border-radius: 1.25rem;
  background:
    linear-gradient(145deg,
      rgba(24,22,38,0.94), rgba(8,8,14,0.98)),
    radial-gradient(circle at 50% 0%,
      rgba(180,157,255,0.18), transparent 36%);
  border: 1px solid rgba(255,255,255,0.075);
  box-shadow:
    0 1.75rem 5rem rgba(0,0,0,0.36),
    0 0 0 1px rgba(139,111,255,0.06);
  outline: none;
}

.demo-section .demo-result-frame.is-playing {
  box-shadow:
    0 2rem 5.75rem rgba(0,0,0,0.42),
    0 0 0 1px rgba(180,157,255,0.24),
    0 0 3rem rgba(139,111,255,0.15);
}

.demo-section .demo-surface {
  aspect-ratio: 16 / 9;
  min-height: clamp(20rem, 46vw, 34rem);
  border-radius: 0.9375rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(160deg,
      rgba(18,17,28,0.98), rgba(5,6,11,0.98));
}

.demo-section .demo-screen {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  color: #f7f3ff;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%,
      rgba(139,111,255,0.2), transparent 24%),
    radial-gradient(ellipse 70% 40% at 50% 100%,
      rgba(150,223,229,0.06), transparent 72%),
    linear-gradient(180deg,
      rgba(255,255,255,0.018), rgba(255,255,255,0));
}

.demo-section .demo-screen::before {
  content: "";
  position: absolute;
  inset: clamp(0.75rem, 2vw, 1.25rem);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.75rem;
  pointer-events: none;
}

.demo-section .demo-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      transparent 0%, rgba(255,255,255,0.06) 44%,
      transparent 58%),
    linear-gradient(180deg,
      transparent 42%, rgba(0,0,0,0.38) 100%);
  opacity: 0.38;
  pointer-events: none;
}

.demo-section .demo-result-frame.is-playing .demo-screen::after {
  opacity: 0.52;
}

.demo-section .demo-overlay {
  position: absolute;
  left: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.demo-section .demo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(139,111,255,0.16);
  border: 1px solid rgba(180,157,255,0.24);
  color: var(--accent-2, #b49dff);
  font-weight: 700;
  box-shadow: 0 0.75rem 2rem rgba(139,111,255,0.08);
}

.demo-section .demo-chip::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--accent-2, #b49dff);
  box-shadow: 0 0 0.75rem rgba(180,157,255,0.78);
}

.demo-section #demoChip,
.demo-section #demoTitle,
.demo-section #demoDescription,
.demo-section #demoPlayLabel {
  font-size: 0;
}

.demo-section #demoChip::after {
  content: attr(data-demo-copy);
  font-size: 0.75rem;
  line-height: 1;
}

.demo-section #demoTitle {
  margin: 1rem auto 0.55rem;
  color: var(--text-main, #ddd9e9);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.demo-section #demoTitle::after {
  content: attr(data-demo-copy);
  display: block;
  font-size: clamp(1.75rem, 1.1rem + 2.35vw, 3.25rem);
}

.demo-section #demoDescription {
  margin: 0 auto;
  max-width: 40rem;
  color: rgba(221,217,233,0.78);
  line-height: 1.65;
}

.demo-section #demoDescription::after {
  content: attr(data-demo-copy);
  display: block;
  font-size: clamp(0.9375rem, 0.85rem + 0.28vw, 1.0625rem);
}

.demo-section .demo-result-play {
  position: relative;
  z-index: 3;
  min-width: 9.75rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.98), rgba(226,219,255,0.94));
  color: #171321;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 800;
  box-shadow:
    0 1rem 2.75rem rgba(0,0,0,0.28),
    0 0 2.75rem rgba(139,111,255,0.18);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.demo-section .demo-result-play:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1.25rem 3.25rem rgba(0,0,0,0.34),
    0 0 3.25rem rgba(139,111,255,0.24);
}

.demo-section .demo-result-play .play-icon {
  width: 0;
  height: 0;
  border-block-start: 0.48rem solid transparent;
  border-block-end: 0.48rem solid transparent;
  border-inline-start: 0.78rem solid var(--accent, #8b6fff);
}

.demo-section #demoPlayLabel::after {
  content: attr(data-demo-copy);
  font-size: 0.9375rem;
  line-height: 1;
}

.demo-section .demo-delivery-note {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--green, #6ee7b7);
  font-size: 0.875rem;
  font-weight: 600;
}

.demo-section .demo-result-caption {
  max-width: 42rem;
  margin: 0.5rem auto 0;
  text-align: center;
  color: var(--text-soft, #aba7bb);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.demo-section .demo-benefits {
  width: min(100%, 64rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.demo-section .demo-benefit {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.022);
  color: var(--text-soft, #aba7bb);
}

.demo-section .demo-benefit span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--accent, #8b6fff);
  box-shadow: 0 0 1rem rgba(139,111,255,0.56);
}

.demo-section .demo-benefit p {
  margin: 0;
  color: var(--text-soft, #aba7bb);
  font-size: 0.9375rem;
  line-height: 1.55;
  font-weight: 550;
}

@media (max-width: 760px) {
  .demo-section {
    padding: 3rem 0 4rem;
  }

  .demo-section .demo-shell {
    gap: 1.5rem;
  }

  .demo-section .demo-section-heading {
    text-align: center;
  }

  .demo-section .demo-showcase-card {
    padding: 0.75rem;
    border-radius: 1.25rem;
  }

  .demo-section .demo-result-frame {
    padding: 0.5rem;
    border-radius: 1rem;
  }

  .demo-section .demo-surface {
    aspect-ratio: auto;
    min-height: 28rem;
    border-radius: 0.75rem;
  }

  .demo-section .demo-screen {
    min-height: inherit;
    padding: 1rem;
  }

  .demo-section .demo-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1.25rem;
  }

  .demo-section #demoTitle::after {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
  }

  .demo-section .demo-result-play {
    min-width: 8.75rem;
    min-height: 3rem;
  }

  .demo-section .demo-benefits {
    grid-template-columns: 1fr;
  }

  .demo-section .demo-benefit {
    min-height: auto;
    justify-content: flex-start;
  }
}

/* ── Stage 5: How It Works redesign ── */

.how-it-works-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 2;
}

.how-it-works-section .steps-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.how-it-works-section .steps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(139,111,255,0.7);
  margin-bottom: 0.75rem;
  background: transparent;
  border: none;
  padding: 0;
}

.how-it-works-section .steps-heading h2 {
  margin: 0;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 500;
  color: var(--text-main, #ddd9e9);
  letter-spacing: -0.03em;
}

.how-it-works-section .steps-intro-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.how-it-works-section .steps-grid-new {
  display: grid;
  gap: 1.125rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.how-it-works-section .step-card-new {
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  border-radius: 1.25rem;
  padding: clamp(1rem, 1.5vw, 1.5rem);
  position: relative;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.how-it-works-section .step-card-new::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.1),
    transparent);
  border-radius: 999px;
  pointer-events: none;
}

.how-it-works-section .step-card-new:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.088);
  background: var(--panel-hover, rgba(255,255,255,0.034));
  box-shadow:
    0 1.75rem 5.625rem rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.04);
}

.how-it-works-section .anim-box {
  height: 8.5rem;
  margin-bottom: 1.125rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.05);
  background:
    radial-gradient(circle at 28% 28%,
      rgba(139,111,255,0.14), transparent 20%),
    radial-gradient(circle at 74% 26%,
      rgba(255,255,255,0.03), transparent 14%),
    linear-gradient(145deg,
      rgba(255,255,255,0.026),
      rgba(255,255,255,0.008));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-section .anim-box::before,
.how-it-works-section .anim-box::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}

.how-it-works-section .anim-box::before {
  width: 3.875rem; height: 3.875rem;
  top: 1.375rem; right: 1.375rem;
}

.how-it-works-section .anim-box::after {
  width: 6.875rem; height: 0.5625rem;
  left: 1.25rem; bottom: 1.5rem;
}

.how-it-works-section .anim-icon {
  position: relative;
  z-index: 1;
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,111,255,0.12);
  border: 1px solid rgba(139,111,255,0.22);
  box-shadow: 0 0 1.75rem rgba(139,111,255,0.15);
  transition: box-shadow 0.2s ease;
}

.how-it-works-section .step-card-new:hover .anim-icon {
  box-shadow: 0 0 2.5rem rgba(139,111,255,0.28);
}

.how-it-works-section .step-number-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent, #8b6fff);
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.how-it-works-section .step-card-new h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(0.875rem, 0.85rem + 0.1vw, 1rem);
  line-height: 1.45;
  font-weight: 500;
  color: rgba(223,219,234,0.92);
}

.how-it-works-section .step-card-new p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-muted, #757289);
}

@media (max-width: 900px) {
  .how-it-works-section .steps-grid-new {
    grid-template-columns: 1fr;
  }
}

/* ── Stage 5 fix: center steps heading ── */

.how-it-works-section .steps-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.how-it-works-section .steps-eyebrow {
  text-align: center;
  justify-content: center;
}

/* ── Fix: steps heading centered in RTL and LTR ── */

.how-it-works-section .steps-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100%;
}

.how-it-works-section .steps-eyebrow {
  text-align: center !important;
  justify-content: center !important;
  align-self: center !important;
}

.how-it-works-section .steps-heading h2 {
  text-align: center !important;
  width: 100%;
}

/* ── Fix 2: steps heading centered — stronger override ── */

#how-it-works .steps-heading,
#how-it-works .section-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-inline: auto !important;
}

#how-it-works .steps-eyebrow {
  display: inline-flex !important;
  justify-content: center !important;
  align-self: center !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-inline: auto !important;
}

#how-it-works #stepsTitle {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-inline: auto !important;
}

/* ── Stage 6: For Whom section ── */

.for-whom-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 2;
}

.for-whom-section .for-whom-shell {
  width: min(100%, 53.75rem);
  margin: 0 auto;
}

.for-whom-section .for-whom-heading {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.for-whom-section .for-whom-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(139,111,255,0.7);
  margin-bottom: 0.75rem;
}

.for-whom-section .for-whom-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 500;
  color: var(--text-main, #ddd9e9);
  letter-spacing: -0.03em;
  text-align: center;
}

.for-whom-section .for-whom-subtitle {
  margin: 0;
  max-width: 48ch;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-soft, #aba7bb);
  text-align: center;
}

.for-whom-section .for-whom-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.for-whom-section .for-whom-card {
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  border-radius: 1.25rem;
  padding: 1.25rem 1.375rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  position: relative;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.for-whom-section .for-whom-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.for-whom-section .for-whom-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.088);
  background: var(--panel-hover, rgba(255,255,255,0.034));
  box-shadow:
    0 1.75rem 5.625rem rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.04);
}

.for-whom-section .for-whom-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,111,255,0.1);
  border: 1px solid rgba(139,111,255,0.18);
}

.for-whom-section .for-whom-body h3 {
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-main, #ddd9e9);
  line-height: 1.4;
}

.for-whom-section .for-whom-body p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted, #757289);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .for-whom-section .for-whom-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Stage 7: Differentiator section ── */

.diff-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 2;
}

.diff-section .diff-shell {
  width: min(100%, 53.75rem);
  margin: 0 auto;
}

.diff-section .diff-heading {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diff-section .diff-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(139,111,255,0.7);
  margin-bottom: 0.75rem;
}

.diff-section .diff-title {
  margin: 0;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 500;
  color: var(--text-main, #ddd9e9);
  letter-spacing: -0.03em;
  text-align: center;
}

.diff-section .diff-card {
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  border-radius: 1.375rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
}

.diff-section .diff-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.diff-section .diff-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.diff-section .diff-col-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted, #757289);
  margin-bottom: 1rem;
}

.diff-section .diff-col-label-good {
  color: var(--green, #6ee7b7);
}

.diff-section .diff-vs {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted, #757289);
  padding-top: 1.5rem;
  align-self: center;
}

.diff-section .diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.diff-section .diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-soft, #aba7bb);
  line-height: 1.5;
}

.diff-section .diff-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.875rem;
}

.diff-section .diff-list-bad .diff-icon {
  color: rgba(255,100,100,0.6);
}

.diff-section .diff-list-good .diff-icon {
  color: var(--green, #6ee7b7);
}

.diff-section .diff-summary {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line, rgba(255,255,255,0.055));
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-soft, #aba7bb);
  line-height: 1.65;
}

.diff-section .diff-summary strong {
  color: var(--text-main, #ddd9e9);
}

@media (max-width: 760px) {
  .diff-section .diff-inner {
    grid-template-columns: 1fr;
  }
  .diff-section .diff-vs {
    display: none;
  }
  .diff-section .diff-col-label {
    margin-top: 1rem;
  }
}

/* ── Fix: diff-section visual ── */

.diff-section .diff-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  margin-bottom: 2rem;
}

.diff-section .diff-eyebrow {
  display: inline-block !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(139,111,255,0.7);
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.diff-section .diff-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 500;
  color: var(--text-main, #ddd9e9);
  letter-spacing: -0.03em;
}

.diff-section .diff-card {
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  border-radius: 1.375rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.diff-section .diff-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.1), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.diff-section .diff-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 1.5rem !important;
  align-items: center !important;
}

.diff-section .diff-col-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-muted, #757289);
}

.diff-section .diff-col-label-good {
  color: var(--green, #6ee7b7) !important;
}

.diff-section .diff-col-bad .diff-col-label {
  color: rgba(255,100,100,0.6) !important;
}

.diff-section .diff-vs {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted, #757289);
  text-align: center;
  align-self: center;
}

.diff-section .diff-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.diff-section .diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-soft, #aba7bb);
  line-height: 1.5;
}

.diff-section .diff-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.875rem;
}

.diff-section .diff-list-bad .diff-icon {
  color: rgba(255,100,100,0.6) !important;
}

.diff-section .diff-list-good .diff-icon {
  color: var(--green, #6ee7b7) !important;
}

.diff-section .diff-summary {
  margin: 0;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line, rgba(255,255,255,0.055));
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-soft, #aba7bb);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .diff-section .diff-inner {
    grid-template-columns: 1fr !important;
  }
  .diff-section .diff-vs {
    display: none !important;
  }
}

/* ── Stage 8: Pricing section ── */

.pricing-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 2;
}

.pricing-section .pricing-shell {
  width: min(100%, 32rem);
  margin: 0 auto;
}

.pricing-section .pricing-heading {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-section .pricing-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(139,111,255,0.7);
  margin-bottom: 0.75rem;
}

.pricing-section .pricing-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-weight: 500;
  color: var(--text-main, #ddd9e9);
  letter-spacing: -0.03em;
  text-align: center;
}

.pricing-section .pricing-subtitle {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-soft, #aba7bb);
  line-height: 1.6;
  text-align: center;
  max-width: 38ch;
}

.pricing-section .pricing-card {
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  border-radius: 1.375rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow:
    0 0 4rem rgba(139,111,255,0.06),
    0 1px 0 rgba(255,255,255,0.06) inset;
}

.pricing-section .pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.12), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.pricing-section .pricing-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-2, #b49dff);
  margin-bottom: 1.25rem;
}

.pricing-section .pricing-amount-row {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.pricing-section .pricing-amount {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-main, #ddd9e9);
  letter-spacing: -0.04em;
}

.pricing-section .pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-soft, #aba7bb);
  margin-top: 0.5rem;
}

.pricing-section .pricing-unit {
  font-size: 0.875rem;
  color: var(--text-muted, #757289);
  margin-bottom: 1rem;
}

.pricing-section .pricing-meta {
  font-size: 0.75rem;
  color: var(--text-muted, #757289);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.pricing-section .pricing-divider {
  width: 100%;
  height: 1px;
  background: var(--line, rgba(255,255,255,0.055));
  margin-bottom: 1.5rem;
}

.pricing-section .pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: start;
}

.pricing-section .pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-soft, #aba7bb);
}

.pricing-section .pricing-check {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: rgba(110,231,183,0.1);
  border: 1px solid rgba(110,231,183,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-section .pricing-cta {
  width: 100%;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  color: #f7f3ff;
  background: linear-gradient(135deg,
    #7c5cff 0%, #8c70ff 46%, #a38cff 100%);
  box-shadow: 0 0.375rem 1.5rem rgba(123,92,255,0.3);
  border-color: transparent;
  margin-bottom: 1rem;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}

.pricing-section .pricing-cta:hover {
  box-shadow: 0 0.625rem 2.25rem rgba(123,92,255,0.45);
  transform: translateY(-1px);
}

.pricing-section .pricing-note {
  font-size: 0.75rem;
  color: var(--text-muted, #757289);
  margin: 0;
}

.pricing-section .pricing-packages-note {
  text-align: center;
  margin: 1.5rem auto 0;
  font-size: 0.8125rem;
  color: var(--text-muted, #757289);
}

/* ── Stage 9: Compact FAQ redesign ── */

#faq.faq-section-compact {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  position: relative;
  z-index: 2;
}

#faq .faq-shell-compact {
  width: min(100%, 53.75rem);
  margin: 0 auto;
}

#faq .faq-heading-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  margin-bottom: 1.4rem;
}

#faq .faq-eyebrow-compact {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(139,111,255,0.65);
}

#faq .faq-heading-compact h2 {
  margin: 0;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.55rem);
  line-height: 1.2;
  font-weight: 500;
  color: var(--text-main, #ddd9e9);
  letter-spacing: -0.03em;
}

#faq .faq-list-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

#faq .faq-item-compact {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  box-shadow: none;
}

#faq .faq-item-compact summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text-main, #ddd9e9);
}

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

#faq .faq-item-compact p {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted, #757289);
}

#faq .faq-contact-line {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted, #757289);
}

#faq .faq-contact-line a {
  color: var(--accent-2, #b49dff);
  font-weight: 600;
  text-decoration: none;
}

#faq .faq-contact-line a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  #faq .faq-list-compact {
    grid-template-columns: 1fr;
  }
}

/* ── Cleanup: hidden upload anchor after removing wizard launch section ── */

.wizard-anchor-section {
  display: block;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* ── Stage 10: Final CTA section ── */

.final-cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 2;
}

.final-cta-section .final-cta-shell {
  width: min(100%, 48rem);
  margin: 0 auto;
}

.final-cta-section .final-cta-card {
  background: var(--panel, rgba(255,255,255,0.022));
  border: 1px solid var(--line, rgba(255,255,255,0.055));
  border-radius: 1.375rem;
  padding: clamp(2rem, 5vw, 3.5rem)
           clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section .final-cta-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.12), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.final-cta-section .final-cta-glow {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(
    rgba(139,111,255,0.15), transparent 70%);
  pointer-events: none;
}

.final-cta-section .final-cta-title {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 0.875rem + 0.5vw, 1.25rem);
  font-weight: 400;
  color: var(--text-soft, #aba7bb);
  line-height: 1.7;
  max-width: 42ch;
  position: relative;
  z-index: 1;
}

.final-cta-section .final-cta-sub {
  margin: 0 0 2rem;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 600;
  color: var(--text-main, #ddd9e9);
  position: relative;
  z-index: 1;
}

.final-cta-section .final-cta-btn {
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  color: #f7f3ff;
  background: linear-gradient(135deg,
    #7c5cff 0%, #8c70ff 46%, #a38cff 100%);
  box-shadow: 0 0.375rem 1.5rem rgba(123,92,255,0.3);
  border-color: transparent;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.final-cta-section .final-cta-btn:hover {
  box-shadow: 0 0.625rem 2.25rem rgba(123,92,255,0.45);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .final-cta-section .final-cta-btn {
    width: 100%;
    max-width: 18rem;
  }
}

/* ── Stage 11: Footer redesign ── */

.site-footer {
  border-top: 1px solid var(--line,
    rgba(255,255,255,0.055));
  padding: clamp(2rem, 4vw, 3rem) 0
           clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.site-footer .footer-shell {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 1.5rem;
}

.site-footer .footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.5rem;
}

.site-footer .brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(223,219,234,0.44);
  text-transform: lowercase;
  line-height: 1;
}

.site-footer .brand-mark {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #e0dcea;
}

.site-footer .brand-mark .r {
  color: var(--teal, #96dfe5);
}
.site-footer .brand-mark .e {
  color: var(--accent-2, #b49dff);
}
.site-footer .brand-mark .tour {
  color: #e0dcea;
}

.site-footer .footer-tagline {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted, #757289);
  line-height: 1.5;
}

.site-footer .footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.site-footer .footer-links-col a {
  font-size: 0.8125rem;
  color: var(--text-muted, #757289);
  text-decoration: none;
  transition: color 0.18s;
}

.site-footer .footer-links-col a:hover {
  color: var(--text-soft, #aba7bb);
}

.site-footer .footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-end;
}

.site-footer .footer-support-label {
  font-size: 0.75rem;
  color: var(--text-muted, #757289);
}

.site-footer .footer-support-email {
  font-size: 0.8125rem;
  color: var(--text-soft, #aba7bb);
  text-decoration: none;
  transition: color 0.18s;
}

.site-footer .footer-support-email:hover {
  color: var(--text-main, #ddd9e9);
}

.site-footer .footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-faint,
    rgba(255,255,255,0.018));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer .footer-copyright {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted, #757289);
}

.site-footer .footer-disclaimer {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted, #757289);
  text-align: end;
  max-width: 40ch;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .site-footer .footer-links-col {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .site-footer .footer-contact-col {
    align-items: flex-start;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer .footer-disclaimer {
    text-align: start;
  }
}

/* ── Stage 11 Footer visual correction ── */

.site-footer {
  background:
    linear-gradient(180deg, rgba(6,7,11,0.96), rgba(6,7,11,1)) !important;
  border-top: 1px solid rgba(255,255,255,0.055) !important;
  padding: 1.15rem 0 1.25rem !important;
  color: var(--text-muted, #757289) !important;
}

.site-footer .footer-shell {
  width: min(1120px, calc(100% - 3rem)) !important;
  margin: 0 auto !important;
  gap: 0.85rem !important;
}

.site-footer .footer-top {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr 1.2fr !important;
  align-items: center !important;
  gap: 1.5rem !important;
}

.site-footer .footer-brand-col {
  text-align: left !important;
}

html[dir="rtl"] .site-footer .footer-brand-col,
html[lang="he"] .site-footer .footer-brand-col {
  text-align: right !important;
}

.site-footer .footer-brand {
  margin-bottom: 0.35rem !important;
}

.site-footer .brand-mark {
  font-size: 1.45rem !important;
}

.site-footer .footer-tagline,
.site-footer .footer-links-col a,
.site-footer .footer-support-label,
.site-footer .footer-support-email,
.site-footer .footer-copyright,
.site-footer .footer-disclaimer {
  color: rgba(221,217,233,0.68) !important;
}

.site-footer .footer-tagline {
  font-size: 0.875rem !important;
}

.site-footer .footer-links-col {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1rem !important;
}

.site-footer .footer-links-col a {
  font-size: 0.85rem !important;
}

.site-footer .footer-links-col a:hover,
.site-footer .footer-support-email:hover {
  color: var(--text-main, #ddd9e9) !important;
}

.site-footer .footer-contact-col {
  align-items: flex-end !important;
}

html[dir="rtl"] .site-footer .footer-contact-col,
html[lang="he"] .site-footer .footer-contact-col {
  align-items: flex-start !important;
}

.site-footer .footer-support-label {
  font-size: 0.8rem !important;
}

.site-footer .footer-support-email {
  font-size: 0.875rem !important;
}

.site-footer .footer-bottom {
  padding-top: 0.75rem !important;
  border-top: 1px solid rgba(255,255,255,0.035) !important;
  gap: 1rem !important;
}

.site-footer .footer-copyright,
.site-footer .footer-disclaimer {
  font-size: 0.76rem !important;
  line-height: 1.45 !important;
}

.site-footer .footer-disclaimer {
  max-width: 46ch !important;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 1.25rem 0 1.4rem !important;
  }

  .site-footer .footer-shell {
    width: min(100% - 2rem, 1120px) !important;
  }

  .site-footer .footer-top {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }

  .site-footer .footer-links-col {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
  }

  .site-footer .footer-contact-col {
    align-items: flex-start !important;
  }

  .site-footer .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .site-footer .footer-disclaimer {
    text-align: start !important;
  }
}

/* ── Stage 12A: Header language toggle and CTA polish ── */

.site-header .header-actions {
  gap: 0.72rem !important;
}

.site-header .language-toggle {
  padding: 0.18rem !important;
  gap: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  background: rgba(255,255,255,0.035) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px) !important;
}

.site-header .language-pill {
  min-width: 2.9rem !important;
  padding: 0.38rem 0.68rem !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: rgba(221,217,233,0.56) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
}

.site-header .language-pill.is-active {
  background: rgba(255,255,255,0.11) !important;
  color: rgba(221,217,233,0.92) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04) !important;
}

.site-header .lang-sep {
  width: 1px !important;
  height: 1rem !important;
  background: rgba(255,255,255,0.08) !important;
}

.site-header #headerCta {
  min-height: 2.35rem !important;
  padding: 0.62rem 1.08rem !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  box-shadow: 0 0.35rem 1.25rem rgba(123,92,255,0.26) !important;
}

@media (max-width: 760px) {
  .site-header .language-pill {
    min-width: 2.55rem !important;
    padding: 0.34rem 0.54rem !important;
    font-size: 0.68rem !important;
  }
}

/* ── Stage 12B: Hero visual and copy polish ── */

.hero-section {
  padding-top: clamp(3rem, 7vh, 5.5rem) !important;
}

.hero-frame {
  border-color: rgba(255,255,255,0.035) !important;
  background:
    radial-gradient(circle at 50% 48%, rgba(139,111,255,0.08), transparent 28%),
    radial-gradient(circle at 82% 35%, rgba(150,223,229,0.04), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0.004)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.018),
    0 2rem 6rem rgba(0,0,0,0.18) !important;
}

.hero-frame::after {
  border-color: rgba(255,255,255,0.012) !important;
}

.hero-sub {
  max-width: 48ch !important;
  color: rgba(170,166,187,0.86) !important;
}

.hero-sub strong {
  color: rgba(229,226,238,0.96) !important;
  font-weight: 700 !important;
}

.hero-trust {
  color: rgba(117,114,137,0.9) !important;
}

.hero-trust span {
  color: var(--green, #6ee7b7) !important;
  font-weight: 700 !important;
}

/* ── Stage 12C: Demo section title and copy polish ── */

.demo-section .demo-section-heading {
  max-width: 46rem !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.demo-section .demo-section-heading h2 {
  font-size: clamp(1.45rem, 1.1rem + 1.25vw, 2.25rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.035em !important;
  font-weight: 600 !important;
  max-width: 18ch !important;
  margin-inline: auto !important;
}

.demo-section #demoSectionSubtitle {
  max-width: 58ch !important;
  margin-inline: auto !important;
  font-size: clamp(0.92rem, 0.875rem + 0.18vw, 1rem) !important;
  line-height: 1.72 !important;
  color: rgba(170,166,187,0.84) !important;
}

.demo-section .demo-eyebrow {
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  color: rgba(139,111,255,0.72) !important;
}

.demo-section .demo-result-caption,
.demo-section .demo-delivery-note {
  color: rgba(170,166,187,0.78) !important;
}

@media (max-width: 760px) {
  .demo-section .demo-section-heading h2 {
    max-width: 22ch !important;
    font-size: clamp(1.35rem, 7vw, 1.9rem) !important;
  }

  .demo-section #demoSectionSubtitle {
    max-width: 100% !important;
  }
}

/* ── Stage 12C follow-up: Demo proportions + virtual camera wording ── */

.demo-section .demo-section-heading h2 {
  max-width: none !important;
  white-space: normal !important;
}

@media (min-width: 900px) {
  .demo-section .demo-section-heading h2 {
    white-space: nowrap !important;
  }
}

.demo-section .demo-showcase-card {
  max-width: 48rem !important;
  margin-inline: auto !important;
}

.demo-section .demo-frame.demo-result-frame {
  max-width: 38rem !important;
  margin-inline: auto !important;
}

.demo-section .demo-surface {
  aspect-ratio: 16 / 8.5 !important;
}

.demo-section .demo-screen {
  min-height: 0 !important;
}

.demo-section .demo-overlay h2 {
  font-size: clamp(1.25rem, 1rem + 1vw, 2rem) !important;
}

.demo-section .demo-overlay p {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.demo-section #demoPlaying,
.demo-section .demo-playing,
.demo-section [data-demo-playing] {
  display: none !important;
}

@media (max-width: 760px) {
  .demo-section .demo-section-heading h2 {
    white-space: normal !important;
  }

  .demo-section .demo-frame.demo-result-frame {
    max-width: 100% !important;
  }

  .demo-section .demo-surface {
    aspect-ratio: 16 / 10 !important;
  }
}

/* ── Stage 12D: Demo 16:9 placeholder cleanup ── */

.demo-section #demoSectionSubtitle,
.demo-section #demoEmailNote,
.demo-section #demoPlayerCaption {
  display: none !important;
}

.demo-section .demo-showcase-card {
  max-width: 44rem !important;
  margin-inline: auto !important;
  padding: clamp(1rem, 2vw, 1.35rem) !important;
}

.demo-section .demo-frame.demo-result-frame {
  max-width: 40rem !important;
  margin-inline: auto !important;
  padding: 0.75rem !important;
}

.demo-section .demo-surface {
  aspect-ratio: 16 / 9 !important;
  border-radius: 1.1rem !important;
}

.demo-section .demo-screen {
  min-height: 0 !important;
  padding: 0 !important;
}

.demo-section .demo-overlay,
.demo-section .demo-result-play {
  display: none !important;
}

@media (max-width: 760px) {
  .demo-section .demo-showcase-card {
    max-width: 100% !important;
  }

  .demo-section .demo-frame.demo-result-frame {
    max-width: 100% !important;
  }

  .demo-section .demo-surface {
    aspect-ratio: 16 / 9 !important;
  }
}

/* ── Stage 12D: Pricing heading cleanup ── */

.pricing-section #pricingTitle,
.pricing-section #pricingSubtitle {
  display: none !important;
}

.pricing-section .pricing-heading {
  margin-bottom: 1.35rem !important;
}

/* ── Stage 12D: Footer bottom one-line desktop polish ── */

@media (min-width: 900px) {
  .site-footer .footer-bottom {
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .site-footer .footer-disclaimer {
    max-width: none !important;
    white-space: nowrap !important;
    text-align: end !important;
  }

  .site-footer .footer-copyright {
    white-space: nowrap !important;
  }
}

@media (max-width: 899px) {
  .site-footer .footer-disclaimer,
  .site-footer .footer-copyright {
    white-space: normal !important;
  }
}

/* ── Stage 12E: Demo 16:9 frame correction ── */

.demo-section #demoSectionEyebrow {
  display: none !important;
}

.demo-section .demo-showcase-card {
  width: min(100%, 42rem) !important;
  max-width: 42rem !important;
  margin-inline: auto !important;
  padding: 0.9rem !important;
}

.demo-section .demo-frame.demo-result-frame {
  width: 100% !important;
  max-width: 40rem !important;
  margin-inline: auto !important;
  padding: 0.65rem !important;
  border-radius: 1.15rem !important;
}

.demo-section .demo-surface {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
  border-radius: 0.9rem !important;
  overflow: hidden !important;
}

.demo-section .demo-screen {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.demo-section .demo-screen::before,
.demo-section .demo-overlay,
.demo-section .demo-result-play,
.demo-section #demoChip,
.demo-section #demoTitle,
.demo-section #demoDescription,
.demo-section #demoPlayLabel {
  display: none !important;
}

@media (max-width: 760px) {
  .demo-section .demo-showcase-card,
  .demo-section .demo-frame.demo-result-frame {
    max-width: 100% !important;
  }

  .demo-section .demo-surface {
    aspect-ratio: 16 / 9 !important;
  }
}

/* ── Stage 12E: Hero trust chips emphasis ── */

.hero-trust {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 0.45rem !important;
  color: rgba(117,114,137,0.9) !important;
}

.hero-trust span {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.28rem 0.62rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(139,111,255,0.16) !important;
  background: rgba(139,111,255,0.07) !important;
  color: rgba(221,217,233,0.9) !important;
  font-weight: 650 !important;
  line-height: 1.15 !important;
}

.hero-trust span:nth-of-type(2) {
  color: var(--green, #6ee7b7) !important;
  border-color: rgba(110,231,183,0.18) !important;
  background: rgba(110,231,183,0.07) !important;
}

/* ── Stage 12E: Hide removed differentiator item safely ── */

.diff-section .diff-item-hidden {
  display: none !important;
}

/* ── QA fix: demo heading size ── */

.demo-section .demo-section-heading h2 {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.3 !important;
}

/* ── Stage 12F: Business benefits strip copy cleanup ── */

.process-strip-card,
.hero-strip,
.strip-card,
.value-strip,
.strip-section .strip-props {
  text-wrap: balance;
}

.process-strip-card [id="stripProp1"],
.hero-strip [id="stripProp1"],
.strip-card [id="stripProp1"],
.value-strip [id="stripProp1"],
.strip-section [id="stripProp1"] {
  max-width: 82ch !important;
  margin-inline: auto !important;
  text-align: center !important;
  line-height: 1.75 !important;
}

#stripProp2:empty,
#stripProp3:empty {
  display: none !important;
}

#stripProp2:empty::before,
#stripProp3:empty::before {
  content: none !important;
}

/* If the strip uses parent items, hide empty parent items when possible */
.process-strip-card li:has(#stripProp2:empty),
.process-strip-card li:has(#stripProp3:empty),
.hero-strip li:has(#stripProp2:empty),
.hero-strip li:has(#stripProp3:empty),
.strip-card li:has(#stripProp2:empty),
.strip-card li:has(#stripProp3:empty),
.value-strip li:has(#stripProp2:empty),
.value-strip li:has(#stripProp3:empty),
.strip-section .strip-prop:has(#stripProp2:empty),
.strip-section .strip-prop:has(#stripProp3:empty) {
  display: none !important;
}

.strip-section .strip-props:has(#stripProp2:empty) .strip-dot,
.strip-section .strip-props:has(#stripProp3:empty) .strip-dot {
  display: none !important;
}

.strip-section .strip-props:has(#stripProp2:empty) {
  width: 100% !important;
}

@media (max-width: 760px) {
  .process-strip-card [id="stripProp1"],
  .hero-strip [id="stripProp1"],
  .strip-card [id="stripProp1"],
  .value-strip [id="stripProp1"],
  .strip-section [id="stripProp1"] {
    max-width: 100% !important;
    line-height: 1.65 !important;
  }
}

/* ── Hero subtitle emphasis polish ── */

.hero-sub strong {
  color: rgba(229,226,238,0.98) !important;
  font-weight: 750 !important;
}

.hero-sub .retour-inline-logo {
  display: inline-flex !important;
  align-items: baseline !important;
  font-weight: 900 !important;
  letter-spacing: 0.015em !important;
  color: rgba(229,226,238,0.98) !important;
  text-transform: uppercase !important;
}

.hero-sub .retour-inline-logo::first-letter {
  color: var(--teal, #96dfe5);
}

/* ── Business benefits strip: headline + benefit chips ── */

.business-benefit-copy,
.process-strip-card .business-benefit-copy {
  display: grid !important;
  justify-items: center !important;
  gap: 0.85rem !important;
  text-align: center !important;
}

.business-benefit-copy > p,
.process-strip-card #stripProp1 {
  max-width: 76ch !important;
  margin: 0 auto !important;
  color: rgba(221,217,233,0.9) !important;
  font-weight: 650 !important;
  line-height: 1.65 !important;
}

.business-benefit-points {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 0.55rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.business-benefit-points li {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.42rem !important;
  padding: 0.45rem 0.72rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(139,111,255,0.18) !important;
  background: rgba(139,111,255,0.07) !important;
  color: rgba(221,217,233,0.88) !important;
  font-size: 0.92rem !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
}

.business-benefit-points li:nth-child(2) {
  border-color: rgba(150,223,229,0.18) !important;
  background: rgba(150,223,229,0.06) !important;
}

.business-benefit-points li:nth-child(3) {
  border-color: rgba(110,231,183,0.18) !important;
  background: rgba(110,231,183,0.06) !important;
}

.benefit-dot {
  width: 0.42rem !important;
  height: 0.42rem !important;
  border-radius: 999px !important;
  background: var(--accent, #8b6fff) !important;
  box-shadow: 0 0 0 4px rgba(139,111,255,0.10) !important;
  flex: 0 0 auto !important;
}

.business-benefit-points li:nth-child(2) .benefit-dot {
  background: var(--teal, #96dfe5) !important;
  box-shadow: 0 0 0 4px rgba(150,223,229,0.10) !important;
}

.business-benefit-points li:nth-child(3) .benefit-dot {
  background: var(--green, #6ee7b7) !important;
  box-shadow: 0 0 0 4px rgba(110,231,183,0.10) !important;
}

@media (max-width: 760px) {
  .business-benefit-copy {
    gap: 0.75rem !important;
  }

  .business-benefit-points {
    justify-content: center !important;
  }

  .business-benefit-points li {
    font-size: 0.86rem !important;
  }
}

/* ── Brand polish: RETOUR wordmark and Hero emphasis ── */

.retour-wordmark {
  display: inline-flex !important;
  align-items: baseline !important;
  white-space: nowrap !important;
  vertical-align: baseline !important;
  font-weight: 850 !important;
  letter-spacing: -0.045em !important;
  line-height: 1 !important;
  color: #e0dcea !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  unicode-bidi: isolate !important;
}

.retour-wordmark-r {
  color: var(--teal, #96dfe5) !important;
}

.retour-wordmark-e {
  color: var(--accent-2, #b49dff) !important;
}

.retour-wordmark-tour {
  color: rgba(224,220,234,0.96) !important;
}

.hero-sub .retour-wordmark {
  font-weight: 950 !important;
  letter-spacing: -0.035em !important;
}

.hero-sub .retour-inline-logo::first-letter {
  color: inherit !important;
}

.hero-sub .hero-emphasis-1 {
  color: var(--teal, #96dfe5) !important;
  font-weight: 800 !important;
}

.hero-sub .hero-emphasis-2 {
  color: var(--accent-2, #b49dff) !important;
  font-weight: 800 !important;
}

.hero-sub .hero-emphasis-3 {
  color: var(--green, #6ee7b7) !important;
  font-weight: 850 !important;
}

.demo-section .retour-wordmark,
.for-whom-section .retour-wordmark,
.how-it-works-section .retour-wordmark,
.diff-section .retour-wordmark,
#faq .retour-wordmark,
.site-footer .retour-wordmark {
  font-size: 0.98em !important;
}

@media (max-width: 760px) {
  .retour-wordmark {
    letter-spacing: -0.035em !important;
  }
}

/* ── Fix: RETOUR inline wordmark direction in RTL ── */

.retour-wordmark {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
}

.retour-wordmark-r,
.retour-wordmark-e,
.retour-wordmark-tour {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-block !important;
}

/* ── Hero chip brand tagline polish ── */

.hero-chip-brand {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 0.28rem !important;
  white-space: nowrap !important;
}

.hero-chip-brand .retour-wordmark {
  direction: ltr !important;
  unicode-bidi: isolate !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  letter-spacing: -0.045em !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.hero-chip-brand .retour-wordmark-r {
  color: var(--teal, #96dfe5) !important;
}

.hero-chip-brand .retour-wordmark-e {
  color: var(--accent-2, #b49dff) !important;
}

.hero-chip-brand .retour-wordmark-tour {
  color: rgba(229,226,238,0.98) !important;
}

.hero-chip-dash {
  color: rgba(229,226,238,0.45) !important;
  margin-inline: 0.08rem !important;
}

.hero-chip-real {
  color: var(--teal, #96dfe5) !important;
  font-weight: 800 !important;
}

.hero-chip-estate {
  color: rgba(229,226,238,0.82) !important;
  font-weight: 700 !important;
}

.hero-chip-tour {
  color: var(--accent-2, #b49dff) !important;
  font-weight: 800 !important;
}

/* ── Hero chip brand color adjustment ── */

.hero-chip-real {
  color: var(--teal, #96dfe5) !important;
  font-weight: 800 !important;
}

.hero-chip-estate {
  color: var(--accent-2, #b49dff) !important;
  font-weight: 800 !important;
}

.hero-chip-tour {
  color: rgba(229,226,238,0.98) !important;
  font-weight: 700 !important;
}
