/* =============================================================================
   WOW ONBOARDING — Founder picker, landing, identity & creating styles
   Isolated to OnBoarding app (no Shared.Ui dependency)
   ============================================================================= */

/* ── Founder Picker ────────────────────────────────────────────────────────── */
.wow-picker {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(160deg, #260955 0%, #3a1578 40%, #1E0050 100%);
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.wow-picker--identity {
  background: linear-gradient(160deg, #1E0050 0%, #2a1060 50%, #260955 100%);
}

.wow-picker__hero {
  text-align: center;
  margin-bottom: 3rem;
  animation: wowFadeInDown 0.6s ease;
}

.wow-picker__title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.wow-picker__subtitle {
  font-size: 1.2rem;
  opacity: 0.75;
  font-weight: 300;
}

.wow-picker__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  width: 100%;
  animation: wowFadeInUp 0.6s ease 0.2s both;
}

/* ── Role Cards ────────────────────────────────────────────────────────────── */
.wow-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.wow-card:hover .wow-card__title {
  color: #fff;
}

.wow-card:hover .wow-card__desc {
  color: rgba(255, 255, 255, 0.8);
}

.wow-card:hover .wow-card__go {
  opacity: 1;
  transform: translateX(4px);
  color: rgba(255, 255, 255, 0.9);
}

.wow-card--selected {
  border-color: #ECAE51;
  box-shadow: 0 0 0 2px #ECAE51, 0 16px 40px rgba(236, 174, 81, 0.2);
  background: rgba(236, 174, 81, 0.08);
  animation: wowPulseGlow 1.5s ease-in-out;
}

.wow-card__icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.wow-card:hover .wow-card__icon-circle {
  transform: scale(1.08);
}

.wow-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.wow-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.wow-card__desc {
  font-size: 0.875rem;
  opacity: 0.6;
  line-height: 1.6;
  flex: 1;
  transition: color 0.3s ease;
}

.wow-card__go {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

/* ── Landing / Greeting step ───────────────────────────────────────────────── */
.wow-landing {
  text-align: center;
  max-width: 720px;
  width: 100%;
  animation: wowFadeInUp 0.6s ease;
  position: relative;
  z-index: 1;
}

.wow-landing__orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 151, 240, 0.25) 0%, rgba(236, 174, 81, 0.08) 50%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  animation: wowOrbFloat 8s ease-in-out infinite;
}

.wow-landing__logo {
  margin-bottom: 1.5rem;
}

.wow-landing__logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(193, 151, 240, 0.5));
  animation: wowLogoGlow 4s ease-in-out infinite;
}

.wow-landing__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(236, 174, 81, 0.15);
  color: #ECAE51;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  border: 1px solid rgba(236, 174, 81, 0.25);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.wow-landing__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.wow-landing__title-accent {
  background: linear-gradient(135deg, #C197F0, #ECAE51);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wow-landing__lead {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.wow-landing__lead strong {
  color: #C197F0;
  font-weight: 700;
}

.wow-landing__cta {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border-radius: 0.75rem;
  border: none;
  color: #1E0050;
  background: linear-gradient(135deg, #ECAE51 0%, #f0c478 100%);
  box-shadow: 0 4px 20px rgba(236, 174, 81, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wow-landing__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236, 174, 81, 0.45);
}

.wow-landing__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

.wow-landing__feature {
  padding: 1.25rem 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, transform 0.3s ease;
}

.wow-landing__feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.wow-landing__feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
}

.wow-landing__feature p {
  font-size: 0.8rem;
  opacity: 0.55;
  line-height: 1.5;
  margin: 0;
}

.wow-landing__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto;
}

.wow-landing__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.wow-landing__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Quick-start nudge ─────────────────────────────────────────────────────── */
.wow-quickstart-nudge {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #fff;
  z-index: 100;
  animation: wowFadeInUp 0.4s ease;
  white-space: nowrap;
}

.wow-quickstart-nudge a {
  color: #93bbfc;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wow-quickstart-nudge a:hover {
  color: #fff;
}

/* ── Identity Capture ──────────────────────────────────────────────────────── */
.wow-identity {
  text-align: center;
  max-width: 640px;
  width: 100%;
  animation: wowFadeInUp 0.5s ease;
  padding: 2rem 0 4rem;
}

.wow-identity__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.wow-identity__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wow-identity__field {
  text-align: left;
}

.wow-identity__field label {
  display: block;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.wow-identity__field input,
.wow-identity__field .form-control {
  background-color: rgba(255, 255, 255, 0.1) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  width: 100%;
  caret-color: #fff;
}

.wow-identity__field input:focus,
.wow-identity__field input:active,
.wow-identity__field input:not(:placeholder-shown),
.wow-identity__field .form-control:focus,
.wow-identity__field .form-control:active {
  background-color: rgba(255, 255, 255, 0.15) !important;
  background-image: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.wow-identity__field input:-webkit-autofill,
.wow-identity__field input:-webkit-autofill:hover,
.wow-identity__field input:-webkit-autofill:focus,
.wow-identity__field input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px rgba(43, 16, 96, 0.95) inset !important;
  box-shadow: 0 0 0 1000px rgba(43, 16, 96, 0.95) inset !important;
  transition: background-color 9999s ease-out;
}

button.wow-identity__cta {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 0.75rem;
  align-self: center;
  border: none;
  color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  cursor: not-allowed;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

button.wow-identity__cta.wow-identity__cta--ready {
  color: #1E0050 !important;
  background: linear-gradient(135deg, #ECAE51 0%, #f0c478 100%) !important;
  box-shadow: 0 4px 20px rgba(236, 174, 81, 0.35) !important;
  cursor: pointer;
}

button.wow-identity__cta.wow-identity__cta--ready:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236, 174, 81, 0.45) !important;
}

/* ── Homepage toggle ───────────────────────────────────────────────────────── */
.wow-homepage-toggle {
  text-align: left;
}

.wow-homepage-toggle__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wow-homepage-toggle__header p {
  font-size: 0.8rem;
}

.wow-homepage-toggle__header:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.wow-homepage-toggle__header--active {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
}

.wow-homepage-toggle__checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.wow-homepage-toggle__checkbox-row input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: #ECAE51;
}

.wow-homepage-toggle__checkbox-row label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.wow-homepage-toggle__hint {
  margin: 0;
  opacity: 0.75;
  font-size: 0.82rem;
}

/* ── Creating State ────────────────────────────────────────────────────────── */
.wow-creating {
  text-align: center;
  animation: wowFadeInUp 0.5s ease;
}

.wow-creating__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ECAE51;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  animation: wowSpin 0.8s linear infinite;
}

.wow-creating h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wow-creating__copy {
  opacity: 0.6;
  font-size: 0.95rem;
}


/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .wow-picker {
    padding: 1.5rem 1rem;
  }

  .wow-picker__title {
    font-size: 1.75rem;
  }

  .wow-picker__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wow-card {
    padding: 1.25rem 1rem;
    cursor: pointer;
  }
}

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes wowFadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wowFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wowPulseGlow {
  0%, 100% { box-shadow: 0 0 0 2px #ECAE51, 0 16px 40px rgba(236, 174, 81, 0.2); }
  50% { box-shadow: 0 0 0 4px #ECAE51, 0 16px 40px rgba(236, 174, 81, 0.35); }
}

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

@keyframes wowOrbFloat {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

@keyframes wowLogoGlow {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(193, 151, 240, 0.4)); }
  50% { filter: drop-shadow(0 0 36px rgba(193, 151, 240, 0.7)); }
}

.layout-root--wow {
  padding: 0 !important;
  max-width: none !important;
}

.wow-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(236, 174, 81, 0.18), transparent 26%),
    linear-gradient(160deg, #1a043e 0%, #2a0c5a 45%, #160033 100%);
}

.wow-landing--focused {
  width: 100%;
  max-width: 1240px;
}

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

.wow-landing__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wow-landing__pill,
.wow-step-shell__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(236, 174, 81, 0.12);
  border: 1px solid rgba(236, 174, 81, 0.25);
  color: #f5d095;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.wow-landing__pill--link {
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.wow-landing__pill--link:hover {
  transform: translateY(-1px);
  background: rgba(236, 174, 81, 0.18);
  border-color: rgba(236, 174, 81, 0.38);
  color: #f7db9b;
}

.wow-landing__title--wide {
  max-width: 12ch;
  margin-inline: auto;
}

.wow-landing__lead--wide {
  max-width: 62ch;
  margin-inline: auto;
}

.wow-landing__actions--stack-mobile {
  align-items: center;
  justify-content: center;
}

.wow-landing__trust--left {
  justify-content: center;
  margin-top: 1.5rem;
}

.wow-landing__trust--left span i {
  color: #4ade80;
}

.wow-landing__mobile-note {
  margin-top: 1.5rem;
  margin-inline: auto;
  padding: 1rem 1.1rem;
  max-width: 56ch;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.wow-landing__mobile-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
}

.wow-preview-card {
  padding: 1.1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.wow-preview-card__media {
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.wow-preview-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.wow-preview-card__content {
  padding: 1rem 0.2rem 0.2rem;
}

.wow-preview-card__eyebrow {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wow-preview-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.wow-preview-card__list li strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #fff;
  font-size: 0.98rem;
}

.wow-preview-card__list li span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  font-size: 0.9rem;
}

.wow-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}

.wow-value-strip__item {
  display: flex;
  gap: 0.9rem;
  padding: 1.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.wow-value-strip__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 174, 81, 0.14);
  color: #f5d095;
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.wow-value-strip__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #fff;
}

.wow-value-strip__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 0.92rem;
}

.wow-audience-grid {
  width: 100%;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.wow-audience-grid__card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 1.1rem;
  padding: 1.1rem;
  text-align: left;
}

.wow-audience-grid__card strong,
.wow-audience-grid__card small {
  display: block;
}

.wow-audience-grid__card strong {
  margin-bottom: 0.35rem;
}

.wow-audience-grid__card small {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.wow-audience-grid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.16);
  color: #9bc2ff;
  font-size: 1.3rem;
}

.wow-audience-switch,
.wow-step-shell,
.wow-identity__summary {
  width: 100%;
}

.wow-audience-switch {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wow-audience-switch__btn {
  border: 0;
  background: transparent;
  color: #9bc2ff;
  font-weight: 700;
}

.wow-step-shell {
  max-width: 1120px;
  animation: wowFadeInUp 0.45s ease;
}

.wow-step-shell--narrow {
  max-width: 760px;
}

.wow-step-shell__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.wow-step-shell__actions--split {
  justify-content: space-between;
}

.wow-identity__intro {
  margin-bottom: 1.5rem;
}

.wow-identity__subtitle {
  max-width: 54ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.wow-identity__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.wow-identity__summary div {
  padding: 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.wow-identity__summary strong,
.wow-identity__summary span {
  display: block;
}

.wow-identity__summary span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.wow-identity__advanced {
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.wow-identity__advanced summary {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
}

.wow-creating__subcopy {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 991px) {
  .wow-landing__hero--grid,
  .wow-value-strip,
  .wow-identity__summary,
  .wow-audience-grid {
    grid-template-columns: 1fr;
  }

  .wow-audience-switch,
  .wow-step-shell__actions--split {
    flex-direction: column;
  }

  .wow-landing__trust--left {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .wow-picker {
    padding: 1.5rem 1rem 2rem;
  }

  .wow-landing__actions--stack-mobile {
    flex-direction: column;
    align-items: stretch;
  }

  .wow-landing__cta,
  .wow-landing__demo-btn,
  .wow-step-shell__actions .wow-landing__demo-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Landing: dual CTA layout ─────────────────────────────────────────────── */
.wow-landing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.wow-landing__demo-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wow-landing__demo-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.wow-landing__demo-hint {
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
  margin-top: 1rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================================
   DEMO BOOKING CALENDAR
   ============================================================================= */

.wow-demo {
  text-align: center;
  max-width: 840px;
  width: 100%;
  animation: wowFadeInUp 0.5s ease;
  position: relative;
  z-index: 1;
}

.wow-demo__orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.20) 0%, rgba(193, 151, 240, 0.08) 50%, transparent 70%);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  animation: wowOrbFloat 8s ease-in-out infinite;
}

/* ── Header ── */
.wow-demo__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.15);
  color: #93bbfc;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.25);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.wow-demo__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.wow-demo__subtitle {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ── Two-column layout ── */
.wow-demo__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

@media (max-width: 700px) {
  .wow-demo__layout {
    grid-template-columns: 1fr;
  }
}

.wow-demo__calendar-col,
.wow-demo__detail-col {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* ── Month navigation ── */
.wow-demo__month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.wow-demo__month-label {
  font-weight: 700;
  font-size: 1rem;
  text-transform: capitalize;
}

.wow-demo__month-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 0.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 1.2rem;
}

.wow-demo__month-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
}

.wow-demo__month-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── Calendar grid ── */
.wow-demo__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.wow-demo__cal-grid--header {
  margin-bottom: 4px;
}

.wow-demo__cal-dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.45;
  padding: 0.25rem 0;
  letter-spacing: 0.05em;
}

.wow-demo__cal-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
  transition: all 0.15s ease;
  user-select: none;
}

.wow-demo__cal-day--other {
  opacity: 0.2;
}

.wow-demo__cal-day--today > span:first-child {
  color: #ECAE51;
  font-weight: 700;
}

.wow-demo__cal-day--available {
  color: #fff;
  cursor: pointer;
  background: rgba(59, 130, 246, 0.08);
}

.wow-demo__cal-day--available:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
}

.wow-demo__cal-day--selected {
  background: rgba(59, 130, 246, 0.35) !important;
  box-shadow: 0 0 0 2px #3B82F6;
  font-weight: 700;
}

.wow-demo__cal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3B82F6;
  margin-top: 2px;
}

.wow-demo__cal-day--selected .wow-demo__cal-dot {
  background: #fff;
}

/* ── Slot picker ── */
.wow-demo__slots-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}

.wow-demo__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.wow-demo__slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.wow-demo__slot-owner {
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.6;
  white-space: nowrap;
}

.wow-demo__slot:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
}

.wow-demo__slot--chosen {
  background: rgba(59, 130, 246, 0.3);
  border-color: #3B82F6;
  box-shadow: 0 0 0 1px #3B82F6;
  font-weight: 700;
}

/* ── Form ── */
.wow-demo__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: wowFadeInUp 0.3s ease;
}

.wow-demo__field label {
  display: block;
  font-size: 0.82rem;
  opacity: 0.7;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.wow-demo__field .form-control {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  border-radius: 0.5rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  caret-color: #fff;
}

.wow-demo__field .form-control:focus {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.wow-demo__field .form-control:-webkit-autofill,
.wow-demo__field .form-control:-webkit-autofill:hover,
.wow-demo__field .form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px rgba(43, 16, 96, 0.95) inset !important;
  transition: background-color 9999s ease-out;
}

.wow-demo__error {
  color: #f87171;
  font-size: 0.85rem;
  margin: 0;
}

.wow-demo__book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.6rem;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  cursor: not-allowed;
  transition: all 0.25s ease;
}

.wow-demo__book-btn--ready {
  color: #fff;
  background: linear-gradient(135deg, #3B82F6 0%, #60a5fa 100%);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
  cursor: pointer;
}

.wow-demo__book-btn--ready:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.45);
}

.wow-demo__btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wowSpin 0.6s linear infinite;
}

/* ── Empty / hint states ── */
.wow-demo__loading,
.wow-demo__empty,
.wow-demo__pick-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
  gap: 0.75rem;
  opacity: 0.6;
}

.wow-demo__loading .wow-demo__spinner {
  width: 32px;
  height: 32px;
}

.wow-demo__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: #3B82F6;
  border-radius: 50%;
  animation: wowSpin 0.8s linear infinite;
}

/* ── Confirmation ── */
.wow-demo__confirmed {
  animation: wowFadeInUp 0.5s ease;
  padding: 3rem 1rem;
}

.wow-demo__confirmed-icon {
  font-size: 4rem;
  color: #4ade80;
  margin-bottom: 1rem;
  animation: wowPulseGlow 2s ease-in-out;
}

.wow-demo__confirmed h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.wow-demo__confirmed-detail {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.wow-demo__confirmed-sub {
  font-size: 0.95rem;
  opacity: 0.65;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.wow-demo__back-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wow-demo__back-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
