/* [project]/src/app/landing.css [app-client] (css) */
:root {
  --indigo: #4b3fa0;
  --violet: #7b6fd4;
  --gold: #f5c842;
  --rose: #f4769a;
  --cream: #fdf8ee;
  --ink: #1a1630;
  --mist: #f0edf8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-dm), sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

.stars-bg {
  pointer-events: none;
  z-index: -2;
  opacity: 0;
  background: radial-gradient(at 20% 10%, #2a1f6e 0%, #0000 50%), radial-gradient(at 80% 90%, #1f0e3d 0%, #0000 50%), #0e0b2a;
  transition: opacity .4s;
  position: fixed;
  inset: 0;
}

body.night .stars-bg {
  opacity: 1;
}

body.night {
  color: #e8e0ff;
}

.star {
  pointer-events: none;
  z-index: -1;
  background: #fff;
  border-radius: 50%;
  animation: 3s infinite alternate twinkle;
  position: fixed;
}

@keyframes twinkle {
  0% {
    opacity: .2;
    transform: scale(1);
  }

  100% {
    opacity: .9;
    transform: scale(1.3);
  }
}

.day-bg {
  pointer-events: none;
  z-index: -2;
  opacity: 1;
  background: linear-gradient(#e6effb 0%, #f4f0fa 45%, #fdf8ee 100%);
  transition: opacity .4s;
  position: fixed;
  inset: 0;
}

body.night .day-bg {
  opacity: 0;
}

.day-bg .sun {
  background: radial-gradient(circle, #f5c84273 0%, #f5c84200 70%);
  border-radius: 50%;
  width: 420px;
  height: 420px;
  position: absolute;
  top: -120px;
  right: -80px;
}

.cloud {
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  position: fixed;
  left: 0;
}

.cloud svg {
  display: block;
  overflow: visible;
}

@keyframes driftRight {
  from {
    transform: translateX(-340px);
  }

  to {
    transform: translateX(calc(100vw + 340px));
  }
}

@keyframes driftLeft {
  from {
    transform: translateX(calc(100vw + 340px));
  }

  to {
    transform: translateX(-340px);
  }
}

nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #fdf8eed9;
  border-bottom: 1px solid #4b3fa014;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  transition: background .4s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

body.night nav {
  background: #0e0b2ae0;
  border-color: #ffffff14;
}

.logo {
  align-items: center;
  line-height: 0;
  display: inline-flex;
}

.logo-img {
  width: auto;
  height: 46px;
  display: block;
}

.logo-night, body.night .logo-day {
  display: none;
}

body.night .logo-night {
  display: block;
}

.spark-ico {
  vertical-align: -.12em;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
}

.nav-right {
  align-items: center;
  gap: 14px;
  display: flex;
}

.nav-btn {
  border: 1.5px solid var(--violet);
  width: 40px;
  height: 40px;
  color: var(--violet);
  cursor: pointer;
  background: none;
  border-radius: 12px;
  outline: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  display: inline-flex;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #4b3fa059;
}

.nav-btn svg {
  width: 21px;
  height: 21px;
  display: block;
}

.nav-btn-primary {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
}

.nav-btn-primary:hover {
  background: #3d3384;
  border-color: #3d3384;
}

body.night .nav-btn {
  color: #e8e0ff;
  border-color: #a090f8;
}

body.night .nav-btn-primary {
  color: #fff;
  background: #7b6fd4;
  border-color: #7b6fd4;
}

@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-btn {
    width: 38px;
    height: 38px;
  }

  .logo-img {
    height: 42px;
  }
}

.cur-inline {
  border: 1.5px solid var(--violet);
  color: var(--violet);
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  background: none;
  border-radius: 10px;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, border-color .15s, color .15s;
}

.cur-inline:hover {
  border-color: var(--indigo);
  background: #fff;
}

body.night .cur-inline {
  color: #e8e0ff;
  border-color: #a090f8;
}

body.night .cur-inline:hover {
  background: #ffffff1f;
}

.lang-modal {
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #1410308c;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: none;
  position: fixed;
  inset: 0;
}

.lang-modal.open {
  display: flex;
}

.lang-modal-card {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  max-height: 85vh;
  padding: 32px 28px;
  animation: .2s langPop;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 30px 80px #4b3fa04d;
}

@keyframes langPop {
  from {
    opacity: 0;
    transform: scale(.95)translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

body.night .lang-modal-card {
  background: #1f1547;
}

.lang-modal-card h3 {
  font-family: var(--font-playfair), serif;
  color: var(--indigo);
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

body.night .lang-modal-card h3 {
  color: #c9bdff;
}

.lang-modal-close {
  color: #aaa;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 16px;
}

.lang-options {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  display: grid;
}

@media (max-width: 380px) {
  .lang-options {
    grid-template-columns: 1fr;
  }
}

.lang-options button {
  background: var(--mist);
  width: 100%;
  font-family: var(--font-dm), sans-serif;
  color: var(--ink);
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 14px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  transition: all .15s;
  display: flex;
}

.lang-options button span {
  font-size: 20px;
}

.lang-options button:hover {
  border-color: var(--indigo);
  background: #fff;
}

body.night .lang-options button {
  color: #e8e0ff;
  background: #ffffff0f;
}

body.night .lang-options button:hover {
  background: #ffffff1f;
  border-color: #a090f8;
}

.hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 120px 5vw 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  filter: blur(80px);
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.orb1 {
  background: #7b6fd42e;
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
}

.orb2 {
  background: #f4769a1f;
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -80px;
}

body.night .orb1 {
  background: #7b6fd459;
}

body.night .orb2 {
  background: #f4769a33;
}

.hero-badge {
  background: var(--mist);
  color: var(--violet);
  border: 1.5px solid #7b6fd44d;
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  animation: .8s both fadeUp;
  display: inline-flex;
}

body.night .hero-badge {
  color: #c4b8f8;
  background: #7b6fd433;
  border-color: #7b6fd466;
}

.hero h1 {
  font-family: var(--font-playfair), serif;
  color: var(--ink);
  margin-bottom: 28px;
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  animation: .8s .1s both fadeUp;
}

body.night .hero h1 {
  color: #f0eaff;
}

.hero h1 em {
  color: var(--indigo);
  font-style: italic;
}

body.night .hero h1 em {
  color: #c4b8f8;
}

.hero h1 .gold {
  color: var(--gold);
  -webkit-text-stroke: 1px var(--gold);
}

.hero-sub {
  color: #555;
  max-width: 580px;
  margin-bottom: 44px;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.75;
  animation: .8s .2s both fadeUp;
}

body.night .hero-sub {
  color: #b0a8d8;
}

.hero-cta {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  animation: .8s .3s both fadeUp;
  display: flex;
}

.btn-primary {
  background: var(--indigo);
  color: #fff;
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  padding: 16px 38px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px #4b3fa066;
}

.btn-secondary {
  color: var(--indigo);
  border: 2px solid var(--indigo);
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  background: none;
  border-radius: 50px;
  padding: 16px 38px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--mist);
}

body.night .btn-secondary {
  color: #c4b8f8;
  border-color: #7b6fd4;
}

body.night .btn-secondary:hover {
  background: #7b6fd426;
}

.hero-trust {
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  animation: .8s .4s both fadeUp;
  display: flex;
}

.trust-item {
  color: #777;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  display: flex;
}

body.night .trust-item {
  color: #9890c8;
}

.trust-item .icon {
  font-size: 18px;
}

.section {
  padding: 100px 5vw;
  position: relative;
}

.section-alt {
  background: var(--mist);
}

body.night .section-alt {
  background: #15102e;
}

.section-tag {
  background: var(--mist);
  color: var(--violet);
  border-radius: 50px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
}

body.night .section-tag {
  color: #c4b8f8;
  background: #7b6fd433;
}

.section-title {
  font-family: var(--font-playfair), serif;
  color: var(--ink);
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
}

body.night .section-title {
  color: #f0eaff;
}

.section-sub {
  color: #666;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
}

body.night .section-sub {
  color: #9890c8;
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
  display: grid;
}

.step-card {
  background: #fff;
  border: 1.5px solid #7b6fd41f;
  border-radius: 24px;
  padding: 36px 28px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.step-card:before {
  content: "";
  background: linear-gradient(135deg, #7b6fd40d 0%, #0000 60%);
  border-radius: 24px;
  position: absolute;
  inset: 0;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px #4b3fa01f;
}

body.night .step-card {
  background: #ffffff0a;
  border-color: #ffffff1a;
}

.step-num {
  font-family: var(--font-playfair), serif;
  color: var(--mist);
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

body.night .step-num {
  color: #c4b8f826;
}

.step-icon {
  margin-bottom: 16px;
  font-size: 36px;
}

.step-card h3 {
  font-family: var(--font-playfair), serif;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

body.night .step-card h3 {
  color: #e8e0ff;
}

.step-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.65;
}

body.night .step-card p {
  color: #9890c8;
}

.form-section {
  background: var(--indigo);
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}

.form-section:before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  position: absolute;
  inset: 0;
}

.form-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.form-title {
  font-family: var(--font-playfair), serif;
  color: #fff;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
}

.form-subtitle {
  color: #ffffffb3;
  margin-bottom: 48px;
  font-size: 17px;
}

.form-card {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #ffffff12;
  border: 1px solid #ffffff26;
  border-radius: 28px;
  padding: 48px 44px;
}

.stepper {
  gap: 0;
  margin-bottom: 40px;
  display: flex;
}

.step-dot {
  flex-direction: column;
  flex: 1;
  align-items: center;
  display: flex;
  position: relative;
}

.step-dot:after {
  content: "";
  z-index: 0;
  background: #fff3;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 14px;
  left: 50%;
}

.step-dot:last-child:after {
  display: none;
}

.step-dot-inner {
  color: #ffffff80;
  z-index: 1;
  background: #ffffff26;
  border: 2px solid #ffffff4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
  position: relative;
}

.step-dot.active .step-dot-inner {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.step-dot.done .step-dot-inner {
  color: #fff;
  background: #ffffff4d;
  border-color: #fff6;
}

.step-dot.done:after {
  background: #ffffff59;
}

.step-label {
  color: #ffffff73;
  text-align: center;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
}

.step-dot.active .step-label {
  color: #ffffffd9;
}

.form-step {
  display: none;
}

.form-step.active {
  animation: .4s both fadeUp;
  display: block;
}

.form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}

.form-group {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.form-group.full {
  grid-column: 1 / -1;
}

.more-box {
  border: 1.5px dashed #ffffff2e;
  border-radius: 12px;
  padding: 12px 16px;
}

.more-box summary {
  cursor: pointer;
  color: #ffffffbf;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
}

.more-box summary::-webkit-details-marker {
  display: none;
}

.more-box summary:before {
  content: "▸ ";
  color: var(--gold);
}

.more-box[open] summary:before {
  content: "▾ ";
}

label {
  color: #ffffffbf;
  letter-spacing: .3px;
  font-size: 13px;
  font-weight: 500;
}

input, select, textarea {
  color: #fff;
  font-family: var(--font-dm), sans-serif;
  background: #ffffff1a;
  border: 1.5px solid #ffffff2e;
  border-radius: 12px;
  outline: none;
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}

input::placeholder, textarea::placeholder {
  color: #ffffff59;
}

select option {
  color: #fff;
  background: #2a1f6e;
}

.fsel {
  position: relative;
}

.fsel-native {
  display: none;
}

.fsel-btn {
  color: #fff;
  width: 100%;
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  text-align: left;
  background: #ffffff1a;
  border: 1.5px solid #ffffff2e;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 15px;
  display: flex;
}

.fsel-btn:hover, .fsel.open .fsel-btn {
  border-color: var(--gold);
  background: #ffffff21;
}

.fsel-arrow {
  color: #fff9;
  font-size: 11px;
  transition: transform .15s;
}

.fsel.open .fsel-arrow {
  transform: rotate(180deg);
}

.fsel-list {
  z-index: 60;
  background: #241a5e;
  border: 1.5px solid #ffffff2e;
  border-radius: 12px;
  max-height: 260px;
  padding: 6px;
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow: auto;
  box-shadow: 0 16px 40px #00000073;
}

.fsel.open .fsel-list {
  display: block;
}

.fsel-opt {
  text-align: left;
  color: #e8e0ff;
  width: 100%;
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  display: block;
}

.fsel-opt:hover, .fsel-opt.hi {
  background: #ffffff1f;
}

.fsel-opt.sel {
  background: var(--indigo);
  color: #fff;
}

.voice-picker {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  display: grid;
}

@media (max-width: 480px) {
  .voice-picker {
    grid-template-columns: 1fr;
  }
}

.voice-opt {
  background: #ffffff1a;
  border: 1.5px solid #ffffff2e;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 12px;
  display: flex;
}

.voice-opt.sel {
  border-color: var(--gold);
  background: #ffffff21;
}

.voice-name {
  text-align: left;
  color: #fff;
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  background: none;
  border: none;
  flex: 1;
  font-size: 15px;
}

.voice-opt.sel .voice-name {
  font-weight: 600;
}

.voice-play {
  background: var(--indigo);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.voice-play:hover {
  background: #5a4cc0;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: #ffffff21;
}

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

input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  flex: none;
  margin: 2px 0 0;
  padding: 0;
}

input[type="file"] {
  cursor: pointer;
  padding: 9px 12px;
}

input[type="file"]::file-selector-button {
  color: #fff;
  cursor: pointer;
  font-family: var(--font-dm), sans-serif;
  background: #ffffff26;
  border: none;
  border-radius: 8px;
  margin-right: 12px;
  padding: 6px 14px;
  font-size: 14px;
}

input[type="file"]::file-selector-button:hover {
  background: #f5c84240;
}

.upload-note {
  color: #ffffff8c;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  display: block;
}

.form-nav {
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  display: flex;
}

.btn-back {
  color: #fff9;
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  background: none;
  border: 1.5px solid #fff3;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 15px;
  transition: all .2s;
}

.btn-back:hover {
  color: #fff;
  border-color: #ffffff80;
}

.btn-next {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #f5c84266;
}

.btn-submit {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  width: 100%;
  margin-top: 10px;
  padding: 16px 48px;
  font-size: 17px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px #f5c84273;
}

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.style-btn {
  text-align: left;
  color: #fff;
  width: 100%;
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  background: #ffffff1a;
  border: 1.5px solid #ffffff2e;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  font-size: 15px;
  transition: border-color .2s, background .2s;
  display: flex;
}

.style-btn:hover {
  border-color: var(--gold);
  background: #ffffff21;
}

.style-btn img {
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.style-btn #styleBtnLabel {
  flex: 1;
  font-weight: 600;
}

.style-btn-chg {
  color: #ffffff8c;
  white-space: nowrap;
  font-size: 14px;
}

.style-modal {
  z-index: 1100;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: #0c0920d9;
  flex-direction: column;
  padding: 16px;
  display: none;
  position: fixed;
  inset: 0;
}

.style-modal.open {
  display: flex;
}

.style-modal-inner {
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 860px;
  min-height: 0;
  margin: 0 auto;
  display: flex;
}

.style-modal-head {
  color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 4px;
  display: flex;
}

.style-modal-head h3 {
  font-family: var(--font-playfair), serif;
  font-size: 20px;
}

.style-modal-close {
  color: #fff;
  cursor: pointer;
  background: #ffffff2e;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  font-size: 24px;
  line-height: 1;
}

.style-modal-close:hover {
  background: #ffffff4d;
}

.style-cards {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 0;
  padding: 8px 4px 16px;
  display: flex;
  overflow: hidden;
}

.style-side {
  object-fit: cover;
  opacity: .4;
  cursor: pointer;
  border-radius: 14px;
  flex-shrink: 0;
  width: auto;
  max-width: 26%;
  height: 34vh;
  transition: opacity .2s;
}

.style-side:hover {
  opacity: .75;
}

.style-arrow {
  color: #fff;
  cursor: pointer;
  background: #ffffff26;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  font-size: 30px;
  line-height: 1;
  transition: background .2s;
}

.style-arrow:hover {
  background: #ffffff4d;
}

.style-center {
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  display: flex;
}

.style-center img {
  object-fit: contain;
  border: 4px solid var(--gold);
  border-radius: 18px;
  width: auto;
  max-width: 100%;
  max-height: 58vh;
}

.style-center-label {
  font-family: var(--font-playfair), serif;
  color: #fff;
  text-align: center;
  margin-top: 12px;
  font-size: 19px;
}

.style-choose-btn {
  background: var(--indigo);
  color: #fff;
  font-family: var(--font-dm), sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  margin-top: 10px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s;
}

.style-choose-btn:hover {
  transform: translateY(-2px);
}

.style-hint {
  text-align: center;
  color: #fff9;
  padding-bottom: 4px;
  font-size: 13px;
}

@media (max-width: 560px) {
  .style-side {
    display: none;
  }
}

.product-options {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 8px;
  display: grid;
}

.product-opt {
  cursor: pointer;
  background: #ffffff0f;
  border: 1.5px solid #ffffff2e;
  border-radius: 14px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  transition: all .2s;
  display: flex;
}

.product-opt:hover {
  border-color: #f5c84299;
}

.product-opt.selected {
  border-color: var(--gold);
  background: #f5c8421f;
}

.product-opt .po-left {
  align-items: center;
  gap: 12px;
  display: flex;
}

.product-opt .po-emoji {
  font-size: 26px;
}

.product-opt .po-name {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.product-opt .po-desc {
  color: #fff9;
  margin-top: 2px;
  font-size: 12px;
}

.product-opt .po-price {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-playfair), serif;
  white-space: nowrap;
  text-align: right;
}

.price-alt {
  opacity: .6;
  white-space: nowrap;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}

.price-card .price .price-alt {
  font-size: 14px;
}

.payment-note {
  color: #ffffff80;
  text-align: center;
  margin: 16px 0 4px;
  font-size: 13px;
}

.status-msg {
  text-align: center;
  border-radius: 12px;
  margin-top: 16px;
  padding: 16px;
  font-size: 15px;
  display: none;
}

.status-msg.error {
  color: #f99;
  background: #ff646433;
  border: 1px solid #ff64644d;
  display: block;
}

.status-msg.loading {
  color: #fffc;
  background: #f5c8421a;
  border: 1px solid #f5c84233;
  display: block;
}

.samples {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  display: grid;
}

.sample-card {
  background: #fff;
  border: 1.5px solid #7b6fd41a;
  border-radius: 20px;
  padding: 28px;
  transition: transform .3s, box-shadow .3s;
}

body.night .sample-card {
  background: #ffffff0d;
  border-color: #ffffff1a;
}

.sample-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px #4b3fa01a;
}

.sample-emoji {
  margin-bottom: 16px;
  font-size: 40px;
}

.sample-tag {
  background: var(--mist);
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 20px;
  margin-bottom: 12px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
}

body.night .sample-tag {
  color: #c4b8f8;
  background: #7b6fd433;
}

.sample-card h3 {
  font-family: var(--font-playfair), serif;
  color: var(--ink);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

body.night .sample-card h3 {
  color: #f0eaff;
}

.sample-card p {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

body.night .sample-card p {
  color: #9890c8;
}

.sample-audio {
  margin-top: 18px;
  display: none;
}

.sample-voice {
  color: var(--violet);
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

body.night .sample-voice {
  color: #c4b8f8;
}

.sample-player {
  align-items: center;
  gap: 12px;
  display: flex;
}

.sample-player audio {
  display: none;
}

.sp-play {
  cursor: pointer;
  background: var(--violet);
  color: #fff;
  border: none;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
  line-height: 1;
  transition: transform .15s, background .15s;
  display: inline-flex;
  box-shadow: 0 4px 12px #7b6fd459;
}

.sp-play:hover {
  background: #6a5ec9;
  transform: scale(1.07);
}

.sp-ic {
  fill: #fff;
  width: 15px;
  height: 15px;
  display: block;
}

.sp-ic-play {
  margin-left: 2px;
}

.sp-ic-pause, .sp-play.is-playing .sp-ic-play {
  display: none;
}

.sp-play.is-playing .sp-ic-pause {
  display: block;
}

.sp-progress {
  cursor: pointer;
  background: #7b6fd42e;
  border-radius: 999px;
  flex: auto;
  height: 7px;
  position: relative;
}

body.night .sp-progress {
  background: #ffffff24;
}

.sp-fill {
  background: linear-gradient(90deg, var(--violet), var(--gold));
  border-radius: 999px;
  width: 0%;
  height: 100%;
  transition: width .1s linear;
  position: absolute;
  top: 0;
  left: 0;
}

.sp-time {
  font-variant-numeric: tabular-nums;
  color: #999;
  text-align: right;
  flex: none;
  min-width: 34px;
  font-size: 12px;
}

body.night .sp-time {
  color: #9890c8;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
  display: grid;
}

.price-card {
  text-align: center;
  background: #fff;
  border: 2px solid #7b6fd41f;
  border-radius: 24px;
  padding: 36px 28px;
  transition: all .3s;
  position: relative;
}

body.night .price-card {
  background: #ffffff0a;
  border-color: #ffffff1a;
}

.price-card.featured {
  border-color: var(--indigo);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px #4b3fa01f;
}

.price-card-badge {
  background: var(--indigo);
  color: #fff;
  white-space: nowrap;
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.price-card .price {
  font-family: var(--font-playfair), serif;
  color: var(--indigo);
  font-size: 40px;
  font-weight: 900;
}

body.night .price-card .price {
  color: #c4b8f8;
}

.price-card .period {
  color: #888;
  font-size: 14px;
}

body.night .price-card .period {
  color: #7870a8;
}

.price-card h3 {
  font-family: var(--font-playfair), serif;
  margin: 16px 0 8px;
  font-size: 20px;
  font-weight: 700;
}

body.night .price-card h3 {
  color: #e8e0ff;
}

.price-card ul {
  text-align: left;
  margin: 16px 0 28px;
  list-style: none;
}

.price-card li {
  color: #555;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  display: flex;
}

body.night .price-card li {
  color: #9890c8;
}

.price-card li:before {
  content: "";
  background: url("/brand/sparkle.svg") center / contain no-repeat;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.faq {
  max-width: 680px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid #7b6fd41f;
}

body.night .faq-item {
  border-color: #ffffff14;
}

.faq-q {
  text-align: left;
  width: 100%;
  font-family: var(--font-dm), sans-serif;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 500;
  transition: color .2s;
  display: flex;
}

body.night .faq-q {
  color: #e8e0ff;
}

.faq-q:hover {
  color: var(--indigo);
}

body.night .faq-q:hover {
  color: #c4b8f8;
}

.faq-icon {
  color: var(--violet);
  font-size: 20px;
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  color: #666;
  max-height: 0;
  font-size: 15px;
  line-height: 1.7;
  transition: max-height .4s, padding .4s;
  overflow: hidden;
}

body.night .faq-a {
  color: #9890c8;
}

.faq-item.open .faq-a {
  max-height: 240px;
  padding-bottom: 20px;
}

footer {
  background: var(--ink);
  color: #ffffff80;
  text-align: center;
  padding: 40px 5vw;
  font-size: 14px;
}

footer a {
  color: #fff9;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transition: opacity .7s, transform .7s;
  transform: translateY(30px);
}

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

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .stepper .step-label {
    display: none;
  }
}

/*# sourceMappingURL=src_app_landing_10ro7oc.css.map*/