:root {
  --bg-a: #1a0a1f;
  --bg-b: #35104b;
  --bg-c: #7a1d72;
  --bg-d: #ff4fa6;
  --text: #fff6ff;
  --muted: #f6c8ea;
  --card: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.24);
  --glow: 0 0 70px rgba(255, 79, 166, 0.4);
  --shadow: 0 25px 60px rgba(16, 3, 25, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 650px at 8% -8%, rgba(255, 152, 230, 0.2), transparent 60%),
    radial-gradient(1100px 580px at 92% 108%, rgba(255, 79, 166, 0.3), transparent 62%),
    linear-gradient(145deg, var(--bg-a), var(--bg-b) 35%, var(--bg-c) 68%, var(--bg-d));
  overflow-x: hidden;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

#app {
  min-height: 100vh;
}

.stack > * + * {
  margin-top: 20px;
}

.screen {
  min-height: 100vh;
  width: 100%;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.screen.enter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.top-row-center {
  justify-content: center;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.logo-subtle {
  margin-left: 8px;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe0f4;
}

.tag {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.center-wrap {
  width: min(880px, 100%);
  margin: auto;
  text-align: center;
}

.center-wrap.narrow {
  width: min(640px, 100%);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  text-shadow: var(--glow);
}

.lead {
  margin: 14px auto 0;
  width: min(560px, 100%);
  color: var(--muted);
  line-height: 1.55;
}

.buzzword-cloud {
  margin: 16px auto 0;
  width: min(860px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.official-rail {
  margin: 12px auto 0;
  width: min(860px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.official-rail span {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffedfa;
  background: rgba(255, 255, 255, 0.12);
}

.buzzword-chip {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.78rem;
  color: #ffebf8;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
  box-shadow: 0 8px 16px rgba(8, 3, 18, 0.18);
}

.profile-preview {
  margin: 18px auto 0;
  width: min(760px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  text-align: left;
}

.start-quiz-wrap {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  padding: 16px 14px;
}

.start-quiz-wrap .cta-btn {
  min-width: 320px;
}

.cta-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffeaf8;
}

.cta-subline {
  text-align: center;
}

.launch-footnote {
  margin: 18px auto 0;
  width: min(760px, 100%);
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe0f4;
  opacity: 0.95;
}

.cta-btn-primary {
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 18px 26px;
  border-color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(130deg, #ff6fb5 0%, #ff4fa6 48%, #ffd0ec 100%);
  color: #2f0b25;
  box-shadow:
    0 14px 34px rgba(255, 84, 171, 0.45),
    0 0 0 2px rgba(255, 235, 248, 0.25);
  animation: pulseCTA 1.9s ease-in-out infinite;
}

.cta-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.01);
}

.cta-btn-primary:focus-visible {
  outline: 3px solid rgba(255, 233, 248, 0.9);
  outline-offset: 2px;
}

.profile-preview p {
  margin: 0;
  color: #fff2fb;
}

.profile-preview small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.preview-chips {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-chips span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.8rem;
  color: #ffebf9;
  background: rgba(255, 255, 255, 0.12);
}

.landing-shell {
  width: min(1080px, 100%);
}

.landing-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.landing-panel::before,
.landing-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.25;
  filter: blur(2px);
}

.landing-panel::before {
  left: -110px;
  top: -120px;
  background: radial-gradient(circle, rgba(255, 193, 231, 0.85), transparent 62%);
}

.landing-panel::after {
  right: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(211, 156, 255, 0.8), transparent 62%);
}

.graphics-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-card {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px;
  text-align: left;
}

.proof-card strong {
  display: block;
  font-size: 0.9rem;
}

.proof-card small {
  color: var(--muted);
}

.trust-line {
  margin: 12px auto 0;
  width: min(760px, 100%);
  color: #ffe9f7;
  font-size: 0.86rem;
}

.trust-strip {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  color: #ffebf9;
  background: rgba(255, 255, 255, 0.1);
}

.graphic-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.86rem;
  color: #ffe5f5;
  background: rgba(255, 255, 255, 0.1);
  animation: floatY 5s ease-in-out infinite;
}

.graphic-pill:nth-child(2) {
  animation-delay: 0.4s;
}

.graphic-pill:nth-child(3) {
  animation-delay: 0.8s;
}

.graphic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd3ec;
  box-shadow: 0 0 12px rgba(255, 211, 236, 0.8);
}

.profile-grid {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.profile-item span {
  display: block;
  font-size: 0.95rem;
  color: #ffeaf8;
}

.profile-item select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(21, 16, 35, 0.65);
  color: var(--text);
  padding: 10px 12px;
  font-size: 0.95rem;
}

.length-grid {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.length-btn,
.option-btn,
.cta-btn,
.unlock-link-btn,
.mini-cta {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.length-btn {
  min-height: 122px;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.length-btn span {
  font-size: 1.25rem;
  font-weight: 700;
}

.length-btn small {
  color: var(--muted);
}

.length-btn:hover,
.option-btn:hover,
.cta-btn:hover,
.unlock-link-btn:hover,
.mini-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  border-color: rgba(255, 255, 255, 0.65);
}

.length-btn:active,
.option-btn:active,
.cta-btn:active,
.unlock-link-btn:active,
.mini-cta:active {
  transform: scale(0.98);
}

.progress-shell {
  width: min(880px, 100%);
  margin: 8px auto 22px;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.progress-track,
.loader-track {
  margin-top: 8px;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.quiz-meta-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quiz-meta-pill {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  color: #ffeaf8;
  background: rgba(255, 255, 255, 0.1);
}

.momentum-high {
  border-color: rgba(149, 255, 212, 0.7);
  color: #d7ffe8;
}

.momentum-medium {
  border-color: rgba(255, 240, 140, 0.7);
  color: #fff8cc;
}

.momentum-low {
  border-color: rgba(255, 177, 188, 0.75);
  color: #ffe1e7;
}

.progress-fill,
.loader-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffa5da, #fff);
  transition: width 0.35s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.65);
}

.question-wrap h2 {
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  margin-bottom: 16px;
}

.quiz-screen {
  position: relative;
}

.quiz-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
}

.quiz-theme-1::before {
  background: radial-gradient(900px 500px at 8% 15%, rgba(255, 168, 226, 0.9), transparent 60%);
}

.quiz-theme-2::before {
  background: radial-gradient(900px 500px at 92% 14%, rgba(169, 245, 255, 0.85), transparent 60%);
}

.quiz-theme-3::before {
  background: radial-gradient(900px 500px at 14% 88%, rgba(198, 255, 209, 0.88), transparent 60%);
}

.quiz-theme-4::before {
  background: radial-gradient(900px 500px at 90% 86%, rgba(255, 229, 171, 0.9), transparent 60%);
}

.quick-tip {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

.answer-feedback {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: popOut 0.65s ease forwards;
}

.answer-feedback-good {
  background: rgba(146, 255, 216, 0.25);
  color: #d8ffe8;
}

.answer-feedback-mid {
  background: rgba(255, 238, 173, 0.22);
  color: #fff6ce;
}

.answer-feedback-low {
  background: rgba(255, 187, 198, 0.25);
  color: #ffe5eb;
}

.transition-screen {
  justify-content: center;
}

.transition-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow);
}

.transition-wrap h2 {
  margin-top: 10px;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.transition-line {
  margin-top: 12px;
}

.transition-loader {
  margin: 14px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.transition-loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffe0f4;
  box-shadow: 0 0 14px rgba(255, 224, 244, 0.85);
  animation: bouncePulse 0.65s ease-in-out infinite;
}

.transition-loader span:nth-child(2) {
  animation-delay: 0.12s;
}

.transition-loader span:nth-child(3) {
  animation-delay: 0.24s;
}

.question-nav-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.option-list {
  display: grid;
  gap: 12px;
}

.option-btn {
  padding: 16px 14px;
  font-size: 1.06rem;
  text-align: left;
  display: grid;
  gap: 4px;
}

.option-btn span {
  font-weight: 700;
}

.option-btn small {
  color: #ffdced;
  font-size: 0.82rem;
}

.option-btn-selected {
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 24px rgba(255, 213, 239, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.14));
}

.lead-form {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.intake-form-shell {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
}

.intake-wrap h2 {
  margin-top: 8px;
}

.quiz-intro {
  margin-top: 10px;
}

.quiz-intro .lead,
.quiz-intro p,
.quiz-intro .intake-helper,
.quiz-intro .intake-preview {
  margin: 0;
  line-height: 1.5;
}

.intake-helper {
  margin-top: 0;
  margin-bottom: 0;
}

.intake-preview {
  margin: 0 auto;
  width: min(560px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  color: #ffe8f8;
  background: rgba(255, 255, 255, 0.1);
}

.intake-progress-track {
  margin: 10px auto 4px;
  width: min(420px, 100%);
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.intake-quick-picks {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quick-pick-btn {
  font-size: 0.82rem;
}

.intake-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffc1e5, #fff0f9);
  box-shadow: 0 0 14px rgba(255, 214, 238, 0.85);
  transition: width 0.3s ease;
}

.intake-actions {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: #ffe8f7;
}

.lead-form input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 1rem;
}

.lead-form select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  color: var(--text);
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #ffe2f3 50%),
    linear-gradient(135deg, #ffe2f3 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px),
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.intake-select-wrap {
  position: relative;
  display: block;
}

.intake-select-icon,
.intake-select-chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #ffe7f7;
}

.intake-select-icon {
  left: 12px;
  font-size: 0.78rem;
  opacity: 0.95;
}

.intake-select-chevron {
  right: 12px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.intake-select-main {
  min-height: 50px;
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding-left: 14px;
  padding-right: 14px;
  color: #2f0b25;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.11)),
    radial-gradient(circle at 10% 10%, rgba(255, 211, 237, 0.2), transparent 45%);
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
}

.intake-select-main option {
  color: #2f0b25;
  background: #ffffff;
}

.intake-select-main:hover {
  border-color: rgba(255, 230, 245, 0.8);
}

.intake-select-main:focus {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 0 4px rgba(255, 208, 236, 0.28);
}

.lead-form select:focus,
.lead-form input:focus {
  outline: 2px solid rgba(255, 206, 232, 0.7);
  outline-offset: 1px;
  border-color: rgba(255, 225, 241, 0.9);
}

.lead-form input::placeholder {
  color: #f3c8e9;
}

.cta-btn {
  margin-top: 4px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
}

.cta-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.error-msg {
  min-height: 1.2rem;
  margin: 0;
  color: #ffd8e9;
}

.fineprint {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.processing-message {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--muted);
}

.ad-row {
  margin-top: 14px;
}

.ad-slot {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  min-height: 120px;
  text-align: center;
}

.ad-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  width: 100%;
}

.ad-slot a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.ad-fallback {
  width: 100%;
  display: grid;
  gap: 8px;
  justify-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.ad-fallback-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ad-fallback-links a {
  border-bottom: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 10px;
  font-size: 0.8rem;
}

.ad-slot.ad-loaded .ad-fallback {
  display: none;
}

.unlock-panel {
  margin-top: 26px;
  text-align: left;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
}

.unlock-eyebrow {
  margin: 0 0 4px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9ce0;
}

.unlock-heading {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.unlock-subcopy {
  margin: 0 0 16px;
  color: #f0d8ec;
  font-size: 0.93rem;
  line-height: 1.5;
}

.unlock-tap-wrap {
  display: flex;
  justify-content: center;
  margin: 18px 0 14px;
}

.unlock-tap-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f561ab 0%, #8d2de2 100%);
  border: none;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 14px 44px rgba(245, 97, 171, 0.55), 0 0 0 0 rgba(245, 97, 171, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: tapPulse 2.2s ease-in-out infinite;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.unlock-tap-btn:hover {
  transform: scale(1.05);
}

.unlock-tap-btn.unlock-tap-pressed,
.unlock-tap-btn:active {
  transform: scale(0.9) !important;
  box-shadow: 0 4px 18px rgba(245, 97, 171, 0.3) !important;
  animation: none;
}

.unlock-tap-ripple {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(245, 97, 171, 0.45);
  animation: tapRipple 2.2s ease-in-out infinite;
  pointer-events: none;
}

.unlock-tap-count {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.unlock-tap-sublabel {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  margin-top: 5px;
  text-align: center;
}

.unlock-meter {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  margin-bottom: 8px;
}

.unlock-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #f561ab 0%, #8d2de2 100%);
  transition: width 0.38s ease;
}

.unlock-progress-msg {
  font-size: 0.88rem;
  color: #ddc8f5;
  margin: 0 0 14px;
  min-height: 1.4em;
  text-align: center;
}

.unlock-reveal-btn {
  width: 100%;
  margin-bottom: 8px;
}

.unlock-footer {
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  text-align: center;
}

.unlock-email-link {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
  font-family: inherit;
}

.unlock-email-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes tapPulse {
  0%, 100% {
    box-shadow: 0 14px 44px rgba(245, 97, 171, 0.55), 0 0 0 0 rgba(245, 97, 171, 0.25);
  }
  50% {
    box-shadow: 0 18px 52px rgba(245, 97, 171, 0.7), 0 0 0 18px rgba(245, 97, 171, 0);
  }
}

@keyframes tapRipple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

.result-wrap {
  width: min(940px, 100%);
}

.result-number {
  margin-top: 14px;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 35px rgba(255, 220, 243, 0.75);
}

.result-tier {
  margin-top: 8px;
  font-size: 1.08rem;
  color: #ffe0f4;
}

.result-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.result-grid article,
.share-box,
.retention-loop {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 16px;
  padding: 14px;
}

.action-plan-box {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
  text-align: left;
}

.method-box {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  text-align: left;
}

.method-box h3 {
  margin-bottom: 10px;
}

.method-box ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.method-box li {
  color: #ffe6f6;
}

.method-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.method-meta span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  color: #ffeaf8;
}

.action-plan-box h3 {
  margin-bottom: 10px;
}
#copy-plan-btn {
  margin-top: 10px;
}

.action-plan-box ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.action-plan-box li {
  color: #ffe8f8;
}

.result-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.share-box {
  margin-top: 14px;
  display: grid;
  gap: 14px;
  text-align: left;
}

.story-poster-box {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.story-poster-copy h3 {
  margin-bottom: 6px;
}

.story-poster-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9ce0;
}

.story-poster-sub {
  margin: 0;
  color: #efd7fb;
  line-height: 1.5;
}

.story-poster-shell {
  width: min(320px, 100%);
  margin: 0 auto;
  padding: 10px;
  border-radius: 24px;
  background: rgba(14, 7, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 46px rgba(8, 2, 18, 0.35);
}

.story-poster-canvas {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  background: #1a0a1f;
}

.story-poster-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.story-tone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-tone-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7e8ff;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.16s, border-color 0.16s, transform 0.12s;
}

.story-tone-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.story-tone-btn.is-active {
  background: linear-gradient(135deg, rgba(255, 130, 198, 0.3), rgba(146, 87, 255, 0.28));
  border-color: rgba(255, 177, 228, 0.65);
  color: #fff9ff;
}

.share-box-eyebrow {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9ce0;
}

.msg-drop-section {
  margin-bottom: 14px;
}

.msg-drop-label {
  margin: 0 0 3px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.msg-drop-sub {
  margin: 0 0 10px;
  font-size: 0.78rem;
  color: #ddc8f5;
}

.msg-bubbles {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.msg-bubble {
  display: block;
  width: 100%;
  max-width: 92%;
  padding: 10px 15px;
  border-radius: 18px 18px 4px 18px;
  background: linear-gradient(135deg, rgba(245, 97, 171, 0.28), rgba(141, 45, 226, 0.22));
  border: 1px solid rgba(245, 97, 171, 0.38);
  color: #ffeaf8;
  font-family: inherit;
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, transform 0.1s, border-color 0.15s;
}

.msg-bubble span {
  display: block;
  color: inherit;
  white-space: normal;
}

.msg-bubble:hover {
  background: linear-gradient(135deg, rgba(245, 97, 171, 0.45), rgba(141, 45, 226, 0.36));
  border-color: rgba(245, 97, 171, 0.6);
  transform: scale(1.01);
}

.msg-bubble:active {
  transform: scale(0.97);
}

.msg-bubble.msg-bubble-copied {
  background: linear-gradient(135deg, rgba(80, 200, 120, 0.3), rgba(40, 160, 80, 0.22));
  border-color: rgba(80, 200, 120, 0.55);
  color: #d4fde4;
  transform: scale(1.01);
}

.share-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.share-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.16s;
}

.share-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.share-social-btn:visited {
  color: var(--text);
}

@media (max-width: 640px) {
  .story-tone-row {
    justify-content: center;
  }

  .story-poster-actions,
  .share-social-row {
    grid-template-columns: 1fr;
  }

  .story-poster-shell {
    width: min(290px, 100%);
  }
}

.share-wa {
  border-color: rgba(37, 211, 102, 0.45);
  color: #aaffcc;
}

.share-tw {
  border-color: rgba(29, 161, 242, 0.45);
  color: #a3dbff;
}

.share-copy, .share-native {
  font-family: inherit;
}

.mini-cta {
  padding: 10px 12px;
  font-weight: 600;
}

.retention-loop {
  margin-top: 20px;
  text-align: left;
}

.retention-loop .cta-btn {
  width: 100%;
}

.retention-loop p {
  color: var(--muted);
}

.retention-grid {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.retention-card {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, background 0.18s ease;
}

.retention-track-btn {
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.retention-track-btn strong {
  display: block;
  margin-bottom: 4px;
}

.retention-track-btn small {
  color: var(--muted);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes bouncePulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-4px) scale(1.12);
    opacity: 1;
  }
}

@keyframes popOut {
  0% {
    transform: translateY(8px) scale(0.9);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-8px) scale(1);
    opacity: 0;
  }
}

@keyframes pulseCTA {
  0%,
  100% {
    box-shadow:
      0 14px 34px rgba(255, 84, 171, 0.42),
      0 0 0 0 rgba(255, 208, 236, 0.42);
  }
  50% {
    box-shadow:
      0 18px 40px rgba(255, 84, 171, 0.5),
      0 0 0 10px rgba(255, 208, 236, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .screen,
  .graphic-pill,
  .transition-loader span,
  .answer-feedback {
    animation: none !important;
    transition: none !important;
  }
}

.retention-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 920px) {
  .profile-grid,
  .length-grid,
  .graphics-grid,
  .proof-grid,
  .retention-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .official-rail {
    justify-content: flex-start;
  }

  .screen {
    padding: 20px 16px;
  }

  .profile-preview {
    text-align: center;
  }

  .quiz-meta-row {
    justify-content: center;
  }

  .intake-actions {
    grid-template-columns: 1fr;
  }

  .start-quiz-wrap .cta-btn {
    min-width: 100%;
  }
}

.site-footer {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto 20px;
  text-align: center;
  color: #ffe4f6;
  opacity: 0.86;
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}
