:root {
  --bg: #090c10;
  --bg-soft: #11161d;
  --panel: rgba(18, 24, 32, 0.82);
  --panel-strong: rgba(17, 23, 31, 0.96);
  --panel-weak: rgba(255, 255, 255, 0.05);
  --text: #f4efe7;
  --muted: rgba(244, 239, 231, 0.66);
  --faint: rgba(244, 239, 231, 0.38);
  --border: rgba(255, 255, 255, 0.1);
  --accent-coral: #ff8b7b;
  --accent-aqua: #58d7c5;
  --accent-gold: #f2c462;
  --accent-ink: #0f151c;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max-width: 432px;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top, rgba(88, 215, 197, 0.12), transparent 28%),
    radial-gradient(circle at bottom, rgba(255, 139, 123, 0.12), transparent 30%),
    linear-gradient(180deg, #06080b 0%, #0a0d12 55%, #0a0c10 100%);
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

a {
  color: inherit;
}

.page-shell {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ambient-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 139, 123, 0.12), transparent 18%),
    radial-gradient(circle at 86% 22%, rgba(88, 215, 197, 0.1), transparent 18%),
    radial-gradient(circle at 18% 82%, rgba(242, 196, 98, 0.1), transparent 18%),
    radial-gradient(circle at 80% 78%, rgba(255, 139, 123, 0.08), transparent 18%);
  filter: blur(40px);
  pointer-events: none;
}

.phone-shell {
  position: relative;
  width: min(100%, var(--max-width));
  height: min(100dvh - 24px, 920px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16%),
    radial-gradient(circle at top center, rgba(255, 139, 123, 0.08), transparent 28%),
    linear-gradient(180deg, #080b10 0%, #0b1015 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bubble-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 56%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.45;
  filter: blur(0.4px);
  animation: bubbleFloat linear infinite;
}

.bubble::after {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(88, 215, 197, 0.28),
    rgba(255, 139, 123, 0.22),
    rgba(242, 196, 98, 0.18)
  );
}

.app-root {
  position: relative;
  height: 100%;
  z-index: 1;
}

.boot-screen {
  height: 100%;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  color: var(--muted);
}

.boot-mark {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.screen {
  display: none;
  position: absolute;
  inset: 0;
  padding: calc(18px + env(safe-area-inset-top, 0px)) 22px calc(28px + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}

.screen.active {
  display: flex;
  flex-direction: column;
}

.landing-screen {
  padding: calc(18px + env(safe-area-inset-top, 0px)) 22px calc(22px + env(safe-area-inset-bottom, 0px));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-aqua), var(--accent-coral));
  box-shadow: 0 0 12px rgba(88, 215, 197, 0.55);
}

.landing-hero {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  margin: 18px 0 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.display {
  font-family: "Playfair Display", Georgia, serif;
}

.landing-headline {
  text-align: center;
  font-size: clamp(30px, 8vw, 54px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.landing-headline em {
  display: block;
  font-style: italic;
  color: var(--accent-aqua);
}

.landing-subhead {
  margin: 0 auto 18px;
  max-width: 320px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.stat-row .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.feature-tile {
  padding: 12px 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.feature-tile .icon {
  font-size: 18px;
  margin-bottom: 6px;
}

.feature-tile strong {
  display: block;
  font-size: 11px;
}

.feature-tile span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: var(--faint);
}

.spacer {
  flex: 1 1 auto;
  min-height: 10px;
}

.floating-btn-dock {
  margin-top: auto;
  padding-top: 18px;
  background: linear-gradient(180deg, rgba(11, 15, 21, 0), rgba(11, 15, 21, 0.9) 32%, rgba(11, 15, 21, 1) 100%);
}

.cta,
.cta-secondary {
  width: 100%;
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.cta {
  color: #0d141c;
  background: linear-gradient(135deg, var(--accent-aqua), #96f0e1 58%, #ffe1c4);
  font-size: 17px;
  font-weight: 700;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
}

.cta:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.screen-header {
  flex-shrink: 0;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.back-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 20px;
}

.progress-bar {
  flex: 1 1 auto;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-coral), var(--accent-aqua));
  width: 0;
}

.section-label {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

.qtitle {
  margin-top: 12px;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1.1;
  font-weight: 700;
}

.qsub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.option-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.option:hover {
  background: rgba(255, 255, 255, 0.07);
}

.option.selected {
  border-color: rgba(88, 215, 197, 0.5);
  background: rgba(88, 215, 197, 0.12);
}

.option-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 22px;
  flex-shrink: 0;
}

.option.selected .option-icon {
  background: linear-gradient(135deg, rgba(88, 215, 197, 0.3), rgba(255, 139, 123, 0.25));
}

.option-copy {
  flex: 1 1 auto;
}

.option-copy strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.option-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.option-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.option.selected .option-check {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-aqua), #a9eee5);
  color: #081017;
}

.option.selected .option-check::after {
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

.social-title {
  margin: 18px 0 16px;
  font-size: clamp(28px, 7.2vw, 40px);
  line-height: 1.12;
}

.press-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.press-item {
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--muted);
}

.testimonial-stack {
  display: grid;
  gap: 12px;
}

.testimonial {
  padding: 15px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-aqua), var(--accent-coral));
  color: #081017;
  font-weight: 800;
  font-size: 13px;
}

.testimonial strong {
  font-size: 13px;
}

.stars {
  color: var(--accent-gold);
  font-size: 12px;
}

.testimonial p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
}

.interstitial-shell {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.visual-wrap {
  width: min(100%, 260px);
  margin: 0 auto;
}

.interstitial-copy {
  max-width: 300px;
  margin: 0 auto;
}

.interstitial-copy .eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

.interstitial-copy h2 {
  margin: 14px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1.12;
}

.interstitial-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.upload-card,
.email-card,
.analysis-card,
.price-card,
.report-card,
.benefit-card,
.signal-card,
.guarantee-box,
.checkout-summary {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.upload-card {
  padding: 20px;
  margin-top: 24px;
}

.upload-preview {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(88, 215, 197, 0.18), rgba(255, 139, 123, 0.15));
}

.upload-hint-list,
.bullet-list,
.checkout-line-items {
  display: grid;
  gap: 10px;
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bullet-mark {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-gold));
  color: #081017;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

.bullet-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.analysis-card {
  margin-top: 18px;
  padding: 18px;
}

.analysis-visual {
  width: 220px;
  margin: 0 auto 18px;
}

.progress-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
}

.loading-steps {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.4;
}

.loading-step.active,
.loading-step.done {
  opacity: 1;
}

.loading-step.done {
  border-color: rgba(88, 215, 197, 0.22);
}

.loading-step .step-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
}

.loading-step.done .step-icon {
  background: rgba(88, 215, 197, 0.18);
}

.step-copy strong {
  display: block;
  font-size: 13px;
}

.step-copy span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
}

.email-card {
  margin-top: 24px;
  padding: 18px;
}

.field-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}

.text-input,
.inline-input {
  width: 100%;
  padding: 15px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  outline: none;
}

.text-input::placeholder,
.inline-input::placeholder {
  color: rgba(244, 239, 231, 0.44);
}

.text-input:focus,
.inline-input:focus {
  border-color: rgba(88, 215, 197, 0.45);
}

.field-error {
  display: none;
  margin-top: 8px;
  font-size: 12px;
  color: #ff9f8b;
}

.field-error.visible {
  display: block;
}

.transition-screen {
  justify-content: center;
  text-align: center;
}

.transition-ring {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(88, 215, 197, 0.24), transparent 48%),
    radial-gradient(circle at center, rgba(255, 139, 123, 0.18), transparent 68%);
  animation: pulseRing 2.2s ease-in-out infinite;
}

.offer-timer {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 139, 123, 0.14), rgba(88, 215, 197, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.offer-timer.compact {
  margin-top: 0;
  margin-bottom: 16px;
}

.offer-timer.expired {
  background: linear-gradient(135deg, rgba(255, 139, 123, 0.16), rgba(255, 139, 123, 0.08));
  border-color: rgba(255, 159, 139, 0.28);
}

.offer-timer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-timer-copy {
  min-width: 0;
}

.offer-timer-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.offer-timer-note {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244, 239, 231, 0.78);
}

.offer-timer-value {
  flex-shrink: 0;
  min-width: 78px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(8, 16, 23, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text);
}

.offer-timer.expired .offer-timer-value {
  color: #ffd9d1;
}

.checkout-head .offer-timer {
  margin-bottom: 16px;
}

@media (max-width: 380px) {
  .offer-timer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .offer-timer-value {
    width: 100%;
  }
}

.price-card {
  margin-top: 18px;
  padding: 18px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.price-btn {
  padding: 14px 6px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.price-btn.selected {
  background: rgba(255, 139, 123, 0.16);
  border-color: rgba(255, 139, 123, 0.52);
}

.price-helper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 10px;
}

.price-helper p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--faint);
}

.report-shell {
  overflow-y: auto;
  padding-bottom: 110px;
}

.report-hero {
  text-align: center;
  padding-top: 16px;
}

.report-photo-frame {
  width: 164px;
  aspect-ratio: 4 / 5;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 139, 123, 0.16), rgba(88, 215, 197, 0.12)),
    rgba(255, 255, 255, 0.04);
}

.report-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(0.9) brightness(0.72);
  transform: scale(1.05);
}

.report-lock {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 21, 0.12), rgba(11, 15, 21, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  text-align: center;
}

.report-lock .lock-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.report-card {
  padding: 18px;
  margin: 18px 0;
}

.price-banner {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.price-banner-top {
  padding: 10px 14px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-coral), #ffb095);
  color: #081017;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-banner-body {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.price-line strong {
  font-size: 16px;
}

.price-line .amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-aqua);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mini-grid .mini-box {
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.mini-box .mini-label {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
}

.mini-box .mini-value {
  font-size: 14px;
  font-weight: 700;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
}

.section-title-row .line {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.section-title-row .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}

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

.benefit-card {
  display: flex;
  gap: 12px;
  padding: 14px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-copy strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.benefit-copy span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.signal-card {
  padding: 16px;
  margin-top: 14px;
  background: rgba(88, 215, 197, 0.08);
  border-color: rgba(88, 215, 197, 0.16);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.signal-box {
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.signal-box .mini-value.locked {
  filter: blur(4px);
}

.tweet-list {
  display: grid;
  gap: 10px;
}

.tweet-card {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tweet-card p {
  margin: 10px 0 0;
  color: rgba(244, 239, 231, 0.84);
  font-size: 13px;
  line-height: 1.55;
}

.tweet-footer {
  margin-top: 10px;
  font-size: 11px;
  color: var(--faint);
}

.guarantee-box {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin-top: 14px;
}

.guarantee-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(242, 196, 98, 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.guarantee-box strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.guarantee-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.sticky-footer {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 12px 22px calc(28px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(11, 15, 21, 0), rgba(11, 15, 21, 0.92) 38%, rgba(11, 15, 21, 1) 100%);
}

.sticky-note,
.disclaimer,
.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.disclaimer {
  margin-top: 8px;
  color: var(--faint);
  font-size: 10px;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 44px;
  background: rgba(5, 8, 12, 0.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-sheet {
  width: 100%;
  max-height: calc(100% - 36px);
  overflow-y: auto;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #11161d 0%, #0c1116 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  transform: translateY(26px);
  transition: transform 0.2s ease;
}

.modal-overlay.visible .modal-sheet {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.checkout-head {
  padding: 20px 20px 18px;
  background:
    radial-gradient(circle at top right, rgba(88, 215, 197, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 139, 123, 0.22), rgba(17, 23, 31, 0.3));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-head .strike {
  color: rgba(244, 239, 231, 0.46);
  text-decoration: line-through;
  font-size: 15px;
  font-weight: 600;
}

.checkout-head .save-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 139, 123, 0.18);
  color: #ffd9d1;
  font-size: 11px;
  font-weight: 800;
  margin-left: 10px;
  text-transform: uppercase;
}

.checkout-body {
  padding: 18px 20px 24px;
}

.stack-12 {
  display: grid;
  gap: 12px;
}

.stack-14 {
  display: grid;
  gap: 14px;
}

.stack-16 {
  display: grid;
  gap: 16px;
}

.inline-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.toggle-card {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.toggle-input {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  appearance: none;
  margin: 1px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  flex-shrink: 0;
}

.toggle-input:checked {
  background: linear-gradient(135deg, var(--accent-aqua), #baf6ee);
  border-color: transparent;
}

.toggle-input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #081017;
  font-size: 12px;
  font-weight: 800;
}

.toggle-copy strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.toggle-copy span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.pay-error {
  display: none;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 139, 123, 0.14);
  color: #ffd5cc;
  font-size: 12px;
}

.pay-error.visible {
  display: block;
}

.checkout-summary {
  padding: 14px;
}

.checkout-line-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.checkout-line-item strong {
  color: var(--text);
}

.checkout-line-item.total {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.result-screen {
  justify-content: center;
  text-align: center;
}

.result-orb {
  width: 188px;
  height: 188px;
  margin: 0 auto 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(88, 215, 197, 0.22), rgba(88, 215, 197, 0) 50%),
    radial-gradient(circle at center, rgba(255, 139, 123, 0.18), rgba(255, 139, 123, 0) 68%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: pulseRing 2.4s ease-in-out infinite;
}

.result-body {
  max-width: 320px;
  margin: 0 auto;
}

.result-body h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 9vw, 46px);
  line-height: 1.08;
}

.result-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.result-chip-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.result-chip {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: var(--muted);
}

.support-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--faint);
}

.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;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(18px) scale(0.92);
    opacity: 0;
  }
  12% {
    opacity: 0.42;
  }
  70% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-46px) scale(1.08);
    opacity: 0;
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(88, 215, 197, 0.14);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 16px rgba(88, 215, 197, 0);
  }
}

@keyframes sweepY {
  0% {
    transform: translateY(-60px);
  }
  50% {
    transform: translateY(180px);
  }
  100% {
    transform: translateY(-60px);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(38px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(38px) rotate(-360deg);
  }
}

@keyframes slowRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes glowStroke {
  0%,
  100% {
    opacity: 0.34;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 540px) {
  .page-shell {
    padding: 0;
  }

  .phone-shell {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
    border: 0;
  }
}

/* StarLo structural reskin overrides */

:root {
  --bg: #08080d;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.24);
  --text: #f5f2ee;
  --muted: rgba(255, 255, 255, 0.42);
  --muted2: rgba(255, 255, 255, 0.64);
  --glow-teal: #8edfd5;
  --glow-rose: #f0b09b;
  --glow-gold: #f3cf82;
  --app-width: 430px;
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --motion-fast: 140ms;
  --motion-base: 220ms;
  --motion-slow: 340ms;
  --motion-long: 420ms;
}

body {
  background: #050509;
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 176, 155, 0.1), transparent 20%),
    radial-gradient(circle at 78% 24%, rgba(142, 223, 213, 0.08), transparent 18%),
    radial-gradient(circle at 18% 86%, rgba(243, 207, 130, 0.06), transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(240, 176, 155, 0.07), transparent 20%);
  filter: blur(56px);
  opacity: 0.8;
}

body::after {
  background: radial-gradient(100% 60% at 50% 100%, rgba(32, 28, 36, 0.6) 0%, transparent 70%);
}

.page-shell {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 22%, rgba(240, 176, 155, 0.14), transparent 16%),
    radial-gradient(circle at 84% 18%, rgba(142, 223, 213, 0.12), transparent 14%),
    radial-gradient(circle at 20% 74%, rgba(243, 207, 130, 0.08), transparent 16%),
    radial-gradient(circle at 80% 80%, rgba(240, 176, 155, 0.08), transparent 18%);
  filter: blur(80px);
  opacity: 0.78;
}

.phone-shell {
  position: relative;
  width: min(100vw, var(--app-width));
  max-width: var(--app-width);
  height: 100dvh;
  background: var(--bg);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.bubble-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.7;
}

.bubble {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.24;
  filter: blur(1px);
}

.app-root {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
}

.screen {
  display: none;
  position: absolute;
  inset: 0;
  padding: 0 28px;
  overflow: hidden auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: none;
  background: transparent;
}

.screen.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-screen {
  padding: 0 22px;
}

.social-screen {
  padding: 0 28px;
}

.screen-header {
  width: 100%;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
  flex-shrink: 0;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 6px;
}

.header-progress {
  flex: 1;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: #ffffff;
  border-radius: 999px;
  transition: width 280ms var(--ease-out-cubic);
}

.back-btn {
  position: relative;
  z-index: 10;
  display: flex;
  width: 34px;
  height: 34px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 30, 35, 0.85);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform var(--motion-fast) ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity var(--motion-fast) ease;
  will-change: transform;
}

.cta:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  filter: grayscale(0.25);
}

.back-btn-icon {
  display: block;
  width: 12px;
  height: 12px;
}

.back-btn-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-gap {
  height: 12px;
  flex-shrink: 0;
}

.question-gap {
  height: 20px;
  flex-shrink: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label::before,
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.qtitle {
  width: 100%;
  margin: 0;
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: clamp(22px, 6.5vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.qsub {
  width: 100%;
  margin-top: 8px;
  color: var(--muted2);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.spacer {
  flex: 1;
  min-height: 16px;
}

.floating-btn-dock {
  box-sizing: border-box;
  z-index: 10;
  flex-shrink: 0;
  width: calc(100% + 56px);
  margin: auto -28px 0;
  padding: 20px 28px max(40px, env(safe-area-inset-bottom, 28px));
  background: linear-gradient(to top, var(--bg) 70%, transparent);
}

.landing-dock {
  width: calc(100% + 44px);
  margin: auto -22px 0;
  padding: 20px 22px max(40px, env(safe-area-inset-bottom, 28px));
}

.cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  border: none;
  border-radius: 16px;
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: none;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  transition:
    transform var(--motion-fast) ease,
    opacity var(--motion-fast) ease,
    filter 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  will-change: transform;
}

.cta-brand {
  justify-content: center;
}

.cta-brand-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
}

.glowlo-mark {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  background: none;
}

.glowlo-mark-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.cta-mark {
  width: 22px;
  height: 22px;
}

.cta-mark .glowlo-mark-img {
  filter: none;
}

.cta-secondary {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  transition:
    transform var(--motion-fast) ease,
    opacity var(--motion-fast) ease,
    background-color 180ms ease,
    border-color 180ms ease;
  will-change: transform;
}

.landing-shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
}

.landing-pill,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-bottom: 18px;
  padding: 6px 18px 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.landing-pill-dot,
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--glow-teal), var(--glow-gold));
  box-shadow: 0 0 14px rgba(142, 223, 213, 0.45);
}

.landing-hero-frame {
  position: relative;
  width: 100%;
  max-height: 34vh;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.7);
  transform-origin: 50% 18%;
}

.landing-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.landing-headline-wrap {
  width: 100%;
  padding: 0 6px;
  margin-bottom: 20px;
  text-align: center;
}

.landing-title-main,
.landing-title-accent {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.9);
}

.landing-title-main {
  margin-bottom: 10px;
  color: #f5f2ee;
  font-size: clamp(22px, 6vw, 40px);
}

.landing-title-accent {
  color: var(--glow-teal);
  font-size: clamp(26px, 7vw, 46px);
  font-style: italic;
}

.landing-subhead {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 18px;
  color: var(--muted2);
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
}

.landing-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.landing-stat-block {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-align: center;
}

.landing-stat-highlight {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.landing-stat-split {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: rgba(255, 255, 255, 0.92);
}

.landing-stat-split strong {
  font-weight: 800;
}

.landing-stat-tail {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.landing-stat-highlight strong {
  font-weight: 800;
}

.landing-stat-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.star-rating-stars {
  color: #f5c842;
  letter-spacing: 0.06em;
}

.star-rating-value {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.landing-rating {
  font-size: 12px;
}

.landing-rating .star-rating-stars {
  font-size: 11px;
}

.landing-rating .star-rating-value {
  font-size: 12px;
}

.stat-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.landing-feature-row {
  display: flex;
  width: 100%;
  gap: 8px;
  flex-shrink: 0;
}

.landing-feature {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
}

.landing-feature-icon {
  font-size: 16px;
}

.landing-feature strong {
  color: #f0ede8;
  font-size: 10px;
  font-weight: 700;
}

.landing-feature span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.social-top-gap {
  height: 24px;
  flex-shrink: 0;
}

.social-headline-wrap {
  width: 100%;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.social-headline {
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: clamp(21px, 6.2vw, 28px);
  font-weight: 700;
  line-height: 1.16;
}

.social-headline-inline {
  display: block;
}

.social-stat-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
  vertical-align: baseline;
  white-space: nowrap;
  color: var(--text);
}

.social-stat-inline strong {
  font-size: 1.08em;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.social-copy-inline {
  display: inline;
  color: var(--text);
}

.social-mark {
  width: 16px;
  height: 16px;
}

.brand-pill-mark {
  width: 14px;
  height: 14px;
}

.press-row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.press-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.press-item-brand {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}

.press-item-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 4px;
}

.sp-slider-wrap {
  position: relative;
  width: calc(100% + 56px);
  margin: 0 -28px;
  flex-shrink: 0;
  overflow: hidden;
}

.sp-slider {
  display: flex;
  gap: 14px;
  padding: 4px 28px 8px;
  transition: transform 260ms var(--ease-in-out-cubic);
  will-change: transform;
}

.sp-card {
  position: relative;
  flex-shrink: 0;
  width: calc(var(--app-width) - 56px);
  max-width: 374px;
  padding: 16px;
  border: 1px solid rgba(142, 223, 213, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0.58;
  transform: scale(0.972) translateZ(0);
  transition:
    transform 260ms var(--ease-in-out-cubic),
    opacity 200ms var(--ease-out-cubic),
    border-color 180ms ease,
    background-color 180ms ease;
  will-change: transform, opacity;
}

.sp-card.active {
  opacity: 1;
  transform: scale(1) translateZ(0);
  border-color: rgba(142, 223, 213, 0.28);
  background: rgba(255, 255, 255, 0.062);
}

.sp-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(142, 223, 213, 0.18);
  border-left: 1px solid rgba(142, 223, 213, 0.18);
  transform: rotate(45deg) translateY(-4px);
}

.sp-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.sp-avatar {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(142, 223, 213, 0.3);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(142, 223, 213, 0.55), rgba(240, 176, 155, 0.55));
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
}

.sp-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
}

.sp-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
  color: #f5c842;
  font-size: 10px;
}

.sp-card-text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}

.sp-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 4px;
  flex-shrink: 0;
}

.sp-dot {
  width: 18px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  opacity: 0.42;
  transform: scaleX(0.34);
  transform-origin: center;
  transition:
    transform 180ms var(--ease-out-cubic),
    background-color 180ms ease,
    opacity 180ms ease;
}

.sp-dot.active {
  background: #ffffff;
  opacity: 1;
  transform: scaleX(1);
}

.sp-rating-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.sp-rating-icon {
  font-size: 20px;
}

.sp-rating-copy {
  text-align: center;
}

.sp-rating-title {
  font-size: 16px;
}

.sp-rating-title .star-rating-stars {
  font-size: 12px;
}

.sp-rating-title .star-rating-value {
  font-size: 16px;
}

.sp-rating-sub {
  color: var(--muted2);
  font-size: 12px;
}

.option {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    transform var(--motion-fast) ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity var(--motion-fast) ease;
  will-change: transform;
}

.option:active {
  transform: scale(0.985);
}

.option.selected {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.screen.answer-pending .option {
  pointer-events: none;
}

.screen.answer-pending .option:not(.selected) {
  opacity: 0.52;
  transform: scale(0.985);
}

.screen.answer-pending .option.selected {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.11);
  transform: scale(1.012);
}

.screen.answer-pending .rating-choice {
  pointer-events: none;
}

.screen.answer-pending .rating-choice:not(.selected) {
  opacity: 0.52;
  transform: scale(0.985);
}

.screen.answer-pending .rating-choice.selected {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.11);
  transform: scale(1.02);
}

.opt-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 22px;
  transition:
    transform 180ms var(--ease-out-cubic),
    background-color 180ms ease;
}

.option.selected .opt-icon {
  background: rgba(255, 255, 255, 0.15);
}

.opt-label {
  flex: 1;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.opt-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
}

.opt-radio {
  display: flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition:
    transform 180ms var(--ease-out-cubic),
    border-color 180ms ease,
    background-color 180ms ease;
}

.option.selected .opt-radio {
  border-color: #ffffff;
  background: #ffffff;
}

.option.selected .opt-radio::after {
  content: "✓";
  color: #000000;
  font-size: 11px;
  font-weight: 700;
}

.multi-option .opt-radio {
  border-radius: 7px;
}

.rating-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
}

.rating-choice {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  cursor: pointer;
  transition:
    transform var(--motion-fast) ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.rating-choice:active {
  transform: scale(0.985);
}

.rating-choice.selected {
  border-color: rgba(142, 223, 213, 0.48);
  background: rgba(142, 223, 213, 0.1);
}

.rating-choice span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.rating-choice small {
  color: var(--muted);
  font-size: 10px;
}

.rating-label-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.camera-screen {
  text-align: center;
}

.camera-shell {
  display: flex;
  width: 100%;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.camera-permission-card {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.camera-live-card {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.camera-video,
.camera-captured {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camera-video {
  transform: scaleX(-1);
}

.camera-guide {
  position: absolute;
  inset: 11%;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 48% 48% 44% 44%;
  box-shadow:
    0 0 0 999px rgba(0, 0, 0, 0.14),
    0 0 24px rgba(88, 215, 197, 0.2);
  pointer-events: none;
}

.camera-copy h2 {
  font-size: clamp(28px, 7vw, 38px);
}

.camera-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.report-shell {
  width: 100%;
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
  padding-bottom: 12px;
}

.sticky-footer {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  box-sizing: border-box;
  width: calc(100% + 56px);
  margin: 0 -28px;
  padding: 16px 28px max(36px, env(safe-area-inset-bottom, 24px));
  background: linear-gradient(to top, var(--bg) 60%, transparent);
}

.sticky-note {
  margin-bottom: 10px;
  color: var(--muted2);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

.offer-screen {
  padding-bottom: 0;
}

.price-screen {
  overflow-y: auto;
  padding-bottom: 118px;
}

.price-screen .floating-btn-dock {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  margin: 0;
  padding: 12px 22px calc(18px + env(safe-area-inset-bottom, 0px));
}

.price-screen .spacer {
  display: none;
}

.offer-screen .report-shell {
  flex: none;
  height: 100%;
  overflow-y: auto;
  position: relative;
  padding-bottom: 118px;
}

.offer-screen .sticky-footer {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  padding: 12px 22px calc(18px + env(safe-area-inset-bottom, 0px));
}

.score-ready-screen {
  overflow: hidden;
  padding: 0 28px;
}

.score-ready-scroll {
  width: calc(100% + 56px);
  height: 100%;
  margin: 0 -28px;
  overflow-y: auto;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 28px 118px;
}

.wait-shell {
  min-height: 44%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 24px;
}

.wait-eyebrow,
.score-ready-eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.wait-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.wait-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(142, 223, 213, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.048);
  opacity: 0;
  transform: translateY(12px);
  animation: motionFadeUp 520ms var(--ease-out-cubic) forwards;
  animation-delay: calc(var(--stagger, 0) * 70ms);
}

.wait-row-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 11px;
  background: rgba(142, 223, 213, 0.09);
  font-size: 21px;
}

.wait-row-copy strong,
.wait-row-copy span {
  display: block;
}

.wait-row-copy strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
}

.wait-row-copy span {
  margin-top: 4px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.35;
}

.wait-row-arrow {
  color: rgba(255, 255, 255, 0.42);
  font-size: 24px;
  line-height: 1;
}

.score-ready-hero {
  display: grid;
  place-items: center;
  padding-top: 26px;
  text-align: center;
}

.score-orb-card {
  position: relative;
  width: 158px;
  height: 158px;
  margin: 20px auto 24px;
  display: grid;
  place-items: center;
}

.score-orb-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 223, 213, 0.22), transparent 64%);
  filter: blur(8px);
}

.score-orb-ring {
  position: relative;
  z-index: 1;
  width: 122px;
  height: 122px;
  overflow: hidden;
  border: 1px solid rgba(142, 223, 213, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 14px rgba(142, 223, 213, 0.045),
    0 18px 48px rgba(0, 0, 0, 0.35);
}

.score-orb-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) saturate(0.8) brightness(0.78);
  transform: scale(1.08);
}

.score-orb-lock {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
  font-size: 24px;
}

.score-orb-scan {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  height: 40%;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(0deg, rgba(142, 223, 213, 0.22), rgba(142, 223, 213, 0));
  animation: lockScanUp 2.6s var(--ease-in-out-cubic) infinite;
}

.score-ready-hero h2 {
  max-width: 340px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(32px, 8vw, 42px);
  line-height: 1.04;
}

.score-ready-hero p {
  max-width: 326px;
  margin: 14px auto 0;
  color: var(--muted2);
  font-size: 15px;
  line-height: 1.55;
}

.score-chip-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.score-chip-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.score-ready-screen .floating-btn-dock {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  margin: 0;
  padding: 12px 22px calc(18px + env(safe-area-inset-bottom, 0px));
}

.scan-intro-screen {
  justify-content: center;
  text-align: center;
}

.scan-intro-shell {
  display: grid;
  width: 100%;
  flex: 1;
  place-items: center;
  gap: 28px;
}

.scan-intro-visual {
  width: 250px;
  max-width: 78vw;
}

.scan-intro-copy {
  width: min(100%, 340px);
  margin: 0 auto;
}

.scan-intro-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1.05;
}

.scan-intro-copy p {
  margin: 14px auto 0;
  color: var(--muted2);
  font-size: 15px;
  line-height: 1.55;
}

.face-scan-sweep {
  animation: sweepY 3.1s var(--ease-in-out-cubic) infinite;
  transform-origin: center;
}

.loading-screen {
  overflow: hidden;
  padding: 0 28px;
}

.loading-shell {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 224px;
  text-align: center;
}

.loading-screen .analysis-visual {
  width: 230px;
  margin: 0 auto 14px;
}

.scan-stage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 320px);
  margin: 0 auto 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scan-stage-row strong {
  color: #ffffff;
  letter-spacing: 0;
}

.scan-progress-track,
.scan-drawer-progress {
  width: min(100%, 320px);
  height: 4px;
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.scan-progress-fill,
.scan-drawer-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
  transition: width 620ms var(--ease-in-out-cubic);
}

.loading-screen .progress-pill {
  margin: 0 auto 14px;
}

.loading-screen .loading-steps {
  width: min(100%, 320px);
  margin: 0 auto;
}

.loading-screen .loading-step {
  border-color: rgba(142, 223, 213, 0.18);
  background: rgba(18, 14, 28, 0.78);
  text-align: left;
  max-height: 0;
  margin-bottom: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
}

.loading-screen .loading-step.done {
  border-color: rgba(142, 223, 213, 0.38);
  max-height: 92px;
  margin-bottom: 10px;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.loading-screen .loading-step.active {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(40, 32, 54, 0.92);
  max-height: 92px;
  margin-bottom: 10px;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scan-drawer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  padding: 24px 24px max(28px, env(safe-area-inset-bottom, 22px));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  background:
    radial-gradient(circle at center top, rgba(142, 223, 213, 0.08), transparent 44%),
    rgba(14, 14, 16, 0.96);
  box-shadow: 0 -24px 72px rgba(0, 0, 0, 0.46);
  opacity: 0;
  transform: translateY(110%);
  transition:
    transform 420ms var(--ease-out-quart),
    opacity 220ms ease;
  pointer-events: none;
  will-change: transform, opacity;
}

.scan-drawer.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scan-drawer-progress {
  width: 80%;
  margin-bottom: 26px;
}

.scan-question {
  display: none;
  text-align: center;
}

.scan-question.active {
  display: block;
  animation: motionFadeUp 240ms var(--ease-out-cubic) both;
}

.scan-question-icon {
  margin-bottom: 20px;
  font-size: 42px;
  filter: drop-shadow(0 14px 30px rgba(142, 223, 213, 0.18));
}

.scan-question h3 {
  max-width: 330px;
  margin: 0 auto;
  color: #f5f2ee;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.18;
}

.scan-question p {
  max-width: 330px;
  margin: 16px auto 22px;
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.55;
}

.scan-answer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.scan-answer {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  transition:
    transform var(--motion-fast) ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.scan-answer.primary {
  background: #ffffff;
  color: #08080d;
}

.scan-answer.selected {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transform: scale(0.985);
}

.scan-answer.primary.selected {
  background: #ffffff;
  color: #08080d;
}

.email-screen {
  justify-content: flex-start;
  padding-top: calc(56px + env(safe-area-inset-top, 0px));
  text-align: center;
}

.email-emoji {
  width: 100%;
  margin-bottom: 24px;
  font-size: 36px;
}

.email-screen .qtitle {
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}

.email-screen .qsub {
  max-width: 350px;
  margin: 10px auto 0;
  text-align: center;
}

.email-row {
  width: 100%;
  margin-top: 30px;
}

.email-row .text-input {
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  font-size: 16px;
}

.email-privacy {
  width: 100%;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.price-screen {
  align-items: center;
}

.price-screen-inner {
  width: 100%;
  padding-top: calc(28px + env(safe-area-inset-top, 0px));
}

.price-title {
  max-width: 370px;
  margin: 0 auto 26px;
  text-align: center;
  color: #ffffff;
  font-size: clamp(31px, 8vw, 40px);
  line-height: 1.18;
}

.price-title em {
  display: block;
  color: var(--glow-teal);
  font-style: italic;
}

.price-benefit-card {
  width: 100%;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.price-benefit-heading {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.price-benefit-list {
  display: grid;
  gap: 12px;
}

.price-benefit {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-benefit span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.price-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.price-field-label {
  margin: 24px 0 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.price-screen .price-grid {
  margin-top: 0;
}

.price-screen .price-btn {
  min-height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 19px;
}

.price-screen .price-btn.selected {
  border-color: rgba(142, 223, 213, 0.72);
  background: rgba(142, 223, 213, 0.16);
  color: #ffffff;
}

.price-screen .price-helper {
  grid-template-columns: minmax(0, 1fr) 42px;
  margin-top: 12px;
}

.price-screen .price-helper p {
  color: var(--muted);
  font-size: 11px;
}

.price-screen .price-helper svg {
  width: 28px;
  margin: 0 auto;
}

.price-screen .disclaimer {
  color: var(--muted);
  font-size: 12px;
}

.offer-expiry-chip {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top, 0px));
  left: 0;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid rgba(255, 139, 123, 0.34);
  border-radius: 7px;
  background: rgba(86, 23, 23, 0.72);
  color: #ffd8d2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.offer-expiry-chip span {
  color: #ffffff;
}

.offer-expiry-chip.expired {
  background: rgba(120, 28, 28, 0.82);
}

.offer-screen .report-hero {
  padding-top: 58px;
}

.offer-screen .report-hero .pill {
  display: none;
}

.offer-screen .report-photo-frame {
  width: 164px;
  margin-top: 12px;
}

.report-unlock-button {
  display: block;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.report-lock {
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.report-lock-scan {
  position: absolute;
  right: 0;
  bottom: -44%;
  left: 0;
  height: 68%;
  background: linear-gradient(0deg, rgba(142, 223, 213, 0.22), rgba(142, 223, 213, 0));
  opacity: 0.72;
  animation: lockScanUp 2.8s var(--ease-in-out-cubic) infinite;
}

.lock-icon {
  position: relative;
  z-index: 1;
  font-size: 20px;
}

.lock-copy {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.offer-screen .report-hero .qtitle {
  max-width: 378px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: clamp(28px, 7vw, 34px);
  line-height: 1.16;
}

.offer-screen .report-hero .qsub {
  max-width: 360px;
  margin-right: auto;
  margin-left: auto;
}

.special-offer-card {
  overflow: hidden;
  margin: 20px 0 16px;
  border: 1px solid rgba(142, 223, 213, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.special-offer-band {
  padding: 10px 14px;
  background: rgba(142, 223, 213, 0.14);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.special-offer-body {
  display: grid;
  gap: 12px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.special-offer-body strong {
  color: var(--glow-teal);
}

.special-offer-total {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.locked-row-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.locked-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.locked-row.featured {
  border-color: rgba(142, 223, 213, 0.32);
  background: rgba(142, 223, 213, 0.08);
}

.locked-row-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
}

.locked-row-copy strong,
.locked-row-copy span {
  display: block;
}

.locked-row-copy strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.25;
}

.locked-row-copy span {
  margin-top: 4px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.45;
}

.locked-row-lock {
  color: rgba(255, 255, 255, 0.46);
  font-size: 17px;
}

.skin-signal-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(142, 223, 213, 0.22);
  border-radius: 14px;
  background: rgba(142, 223, 213, 0.08);
}

.skin-signal-title {
  margin-bottom: 12px;
  color: var(--glow-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skin-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.skin-signal-box {
  min-width: 0;
  padding: 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.065);
}

.skin-signal-box span,
.skin-signal-box strong {
  display: block;
}

.skin-signal-box span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.skin-signal-box strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skin-signal-box.locked strong {
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.88);
  filter: blur(4px);
}

.unlock-line {
  width: 100%;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  padding-top: 10px;
  background: transparent;
  color: var(--glow-teal);
  font: inherit;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}

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

.story-card {
  padding: 16px;
  border: 1px solid rgba(142, 223, 213, 0.14);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.46);
}

.story-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(142, 223, 213, 0.62);
  color: #071012;
  font-weight: 900;
}

.story-card-top strong,
.story-card-top small {
  display: block;
}

.story-card-top strong {
  color: #ffffff;
  font-size: 13px;
}

.story-card-top strong span {
  color: #38a7ff;
}

.story-card-top small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.story-card-top b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.56);
  font-size: 17px;
}

.story-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.48;
}

.story-card time {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.guarantee-large {
  margin-top: 18px;
  border-color: rgba(243, 207, 130, 0.18);
}

.starting-price {
  margin-top: 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.terms-line {
  max-width: 340px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.terms-line a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: underline;
}

.terms-link-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 4px;
}

.offer-screen .sticky-note {
  display: none;
}

@keyframes lockScanUp {
  0% {
    transform: translateY(76%);
    opacity: 0;
  }
  32% {
    opacity: 0.72;
  }
  100% {
    transform: translateY(-92%);
    opacity: 0;
  }
}

.spin-screen,
.spin-offer-screen {
  overflow: hidden;
  padding: 0;
}

.spin-shell {
  display: grid;
  min-height: 100%;
  place-items: center;
  align-content: center;
  padding: 40px 28px;
  text-align: center;
}

.spin-badge,
.spin-win-label {
  color: #b99cff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.spin-shell h2 {
  margin: 10px 0 6px;
  color: #ffffff;
  font-size: clamp(31px, 8vw, 42px);
  line-height: 1.05;
}

.spin-shell p,
.spin-note {
  margin: 0;
  color: var(--muted2);
  font-size: 14px;
}

.wheel-pointer {
  width: 0;
  height: 0;
  margin-top: 14px;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-top: 22px solid #ffd95f;
  filter: drop-shadow(0 8px 18px rgba(255, 217, 95, 0.22));
}

.discount-wheel {
  position: relative;
  width: 260px;
  max-width: 72vw;
  aspect-ratio: 1;
  margin: 6px auto 34px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background:
    conic-gradient(
      from -22.5deg,
      #3e1b99 0 45deg,
      #5b2bd1 45deg 90deg,
      #43209d 90deg 135deg,
      #6b35dc 135deg 180deg,
      #3f1b9a 180deg 225deg,
      #6331d6 225deg 270deg,
      #4d23b7 270deg 315deg,
      #5b2bd1 315deg 360deg
    );
  box-shadow:
    0 0 0 7px rgba(139, 92, 246, 0.16),
    0 22px 70px rgba(89, 35, 205, 0.38);
  transition: transform 1600ms var(--ease-in-out-quart);
}

.discount-wheel.spinning {
  transform: rotate(1775deg);
}

.discount-wheel span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 66px;
  min-height: 24px;
  place-items: center;
  transform: translate(-50%, -50%) rotate(var(--wheel-angle)) translateY(-88px) rotate(var(--wheel-upright));
  transform-origin: center;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
}

.wheel-center {
  position: absolute;
  inset: 50%;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #07070d;
}

.spin-button {
  min-width: 168px;
  min-height: 60px;
  margin-bottom: 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #7a39f4, #b050ff);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 20px 56px rgba(139, 92, 246, 0.34);
  cursor: pointer;
  transition:
    transform var(--motion-fast) ease,
    opacity var(--motion-fast) ease;
}

.spin-button:disabled {
  opacity: 0.78;
}

.spin-offer-screen {
  background: #07070d;
}

.spin-offer-scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 0 16px 140px;
}

.sale-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 92px;
  height: 92px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: #2f289f;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
  padding: 10px 8px 0 0;
  transform-origin: top right;
}

.spin-offer-hero {
  position: relative;
  margin: 0 -16px;
  padding: calc(22px + env(safe-area-inset-top, 0px)) 16px 24px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #5f2bd2, #4b21b5);
  color: #ffffff;
  text-align: center;
}

.spin-offer-timer {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin-top: 8px;
  padding: 7px 12px;
  border-radius: 7px;
  background: rgba(208, 28, 39, 0.88);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.spin-offer-hero h2 {
  margin: 8px 0 0;
  font-size: clamp(78px, 21vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.spin-offer-hero > strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.spin-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 7, 13, 0.34);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.spin-price-pill s {
  color: rgba(255, 255, 255, 0.66);
}

.spin-price-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.spin-price-compare > div {
  display: grid;
  min-height: 106px;
  place-items: center;
  align-content: center;
  gap: 4px;
  text-align: center;
}

.spin-price-compare > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.spin-price-compare span,
.spin-order-head span,
.spin-order-row span,
.spin-order-total span,
.spin-terms,
.spin-locked-preview p {
  color: var(--muted);
}

.spin-price-compare span,
.spin-order-head span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.spin-price-compare s {
  color: rgba(255, 255, 255, 0.28);
  font-size: 24px;
  font-weight: 900;
}

.spin-price-compare strong {
  color: #ffffff;
  font-size: 46px;
  line-height: 1;
}

.spin-price-compare small {
  color: var(--muted2);
  font-size: 11px;
}

.spin-save-line,
.spin-reveal-line {
  text-align: center;
}

.spin-save-line {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.spin-reveal-line {
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.spin-terms {
  margin-top: 6px;
  font-size: 10px;
  text-align: center;
}

.spin-terms a {
  color: rgba(255, 255, 255, 0.56);
  text-decoration: underline;
}

.spin-locked-preview {
  display: grid;
  place-items: center;
  margin: 30px 0;
  text-align: center;
}

.spin-locked-preview h3 {
  max-width: 300px;
  margin: 0 0 18px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.08;
}

.spin-report-lock {
  position: relative;
  width: 150px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #111;
  color: #ffffff;
  cursor: pointer;
}

.spin-report-lock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(9px) brightness(0.72);
  transform: scale(1.08);
}

.spin-report-lock span {
  position: absolute;
  top: 10px;
  right: 0;
  padding: 4px 8px;
  background: #ffffff;
  color: #050507;
  font-size: 10px;
  font-weight: 900;
}

.spin-report-lock b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.spin-report-lock small {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  font-size: 11px;
  font-weight: 900;
}

.spin-order-card,
.spin-warning,
.spin-story,
.spin-offer-screen .guarantee-box {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.spin-order-card {
  overflow: hidden;
}

.spin-order-head {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.045);
}

.spin-order-head b {
  padding: 4px 9px;
  border-radius: 6px;
  background: #ffffff;
  color: #050507;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.spin-order-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 54px;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
}

.spin-order-icon {
  font-size: 23px;
}

.spin-order-row strong,
.spin-order-row span,
.spin-order-price s,
.spin-order-price b {
  display: block;
}

.spin-order-row strong {
  color: #ffffff;
  font-size: 13px;
}

.spin-order-row span {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.25;
}

.spin-order-price {
  text-align: right;
}

.spin-order-price s {
  color: rgba(255, 255, 255, 0.26);
  font-size: 11px;
}

.spin-order-price b {
  margin-top: 2px;
  color: #63ff9c;
  font-size: 11px;
}

.spin-order-total {
  display: grid;
  gap: 10px;
  margin: 0 16px;
  padding: 14px 0 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.spin-order-total div {
  display: flex;
  justify-content: space-between;
}

.spin-order-total b,
.spin-order-total strong {
  color: #ffffff;
}

.spin-order-total small {
  color: var(--muted2);
  font-size: 11px;
}

.spin-warning {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border-color: rgba(255, 42, 42, 0.5);
  background: rgba(88, 0, 0, 0.22);
}

.spin-warning strong,
.spin-warning span {
  display: block;
}

.spin-warning strong {
  color: #ffffff;
  font-size: 14px;
}

.spin-warning span {
  margin-top: 4px;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.4;
}

.spin-story-list {
  display: grid;
  gap: 12px;
}

.spin-story {
  padding: 14px;
}

.spin-story p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.45;
}

.spin-story small {
  color: #ffd747;
}

.spin-sticky {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 10px 16px calc(18px + env(safe-area-inset-bottom, 0px));
}

.limited-offer-pill {
  margin-bottom: 10px;
  min-height: 26px;
  border-radius: 7px;
  background: #ffffff;
  color: #050507;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  display: grid;
  place-items: center;
}

.confetti-field {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  overflow: hidden;
}

.confetti-field span {
  position: absolute;
  top: -20px;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  background: hsl(calc(var(--piece) * 32deg), 90%, 62%);
  animation: confettiDrop 1200ms var(--ease-out-cubic) forwards;
  animation-delay: calc(var(--piece) * 24ms);
}

@keyframes confettiDrop {
  to {
    transform: translateY(340px) rotate(380deg);
    opacity: 0;
  }
}

.modal-overlay {
  position: absolute;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-base) var(--ease-out-cubic);
}

.modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.modal-sheet {
  width: 100%;
  max-width: 380px;
  max-height: 90vh;
  overflow: hidden auto;
  border-radius: 24px;
  background: #161620;
  opacity: 0;
  transform: scale(0.96) translateY(14px);
  transition:
    transform var(--motion-base) var(--ease-out-quart),
    opacity 180ms var(--ease-out-cubic);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  will-change: transform, opacity;
}

.modal-overlay.visible .modal-sheet {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.loading-step {
  transition:
    max-height 320ms var(--ease-out-cubic),
    margin-bottom 320ms var(--ease-out-cubic),
    transform 200ms var(--ease-out-cubic),
    opacity 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.loading-step.active {
  transform: translateY(-1px);
}

.text-input,
.inline-input {
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.text-input:focus,
.inline-input:focus {
  box-shadow: 0 0 0 3px rgba(142, 223, 213, 0.08);
}

.price-btn {
  transition:
    transform var(--motion-fast) ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity var(--motion-fast) ease;
  will-change: transform;
}

.price-btn:active {
  transform: scale(0.985);
}

@media (hover: hover) and (pointer: fine) {
  .back-btn:hover {
    transform: translateY(-1px);
    background: rgba(38, 38, 44, 0.92);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .cta:hover,
  .cta-secondary:hover,
  .price-btn:hover {
    transform: translateY(-1px);
  }

  .cta:hover,
  .cta-secondary:hover {
    filter: brightness(1.03);
  }

  .option:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.065);
  }
}

.back-btn:active,
.cta:active,
.cta-secondary:active {
  transform: scale(0.972);
}

@keyframes motionFadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.992);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes premiumPageIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.996);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes textWordIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.985);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes elementLiftIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes checkSettle {
  0% {
    transform: scale(0.78);
    opacity: 0.2;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.motion-text {
  display: inline;
}

.motion-text-inner {
  display: inline;
}

.motion-word {
  display: inline-block;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transform-origin: 50% 80%;
}

.screen.entering {
  animation: premiumPageIn 260ms var(--ease-out-cubic) both;
}

.screen.entering .motion-word {
  animation: textWordIn 520ms var(--ease-out-quart) both;
  animation-delay: calc(42ms + (var(--word, 0) * 18ms));
  will-change: transform, opacity, filter;
}

.screen.entering .landing-hero-frame,
.screen.entering .landing-feature,
.screen.entering .press-item,
.screen.entering .sp-card.active,
.screen.entering .option,
.screen.entering .rating-choice,
.screen.entering .price-benefit,
.screen.entering .price-btn,
.screen.entering .locked-row,
.screen.entering .skin-signal-card,
.screen.entering .story-card,
.screen.entering .result-chip,
.screen.entering .wait-row,
.screen.entering .score-chip-row span {
  animation: elementLiftIn 300ms var(--ease-out-cubic) both;
  animation-delay: calc(80ms + (var(--stagger, 0) * 42ms));
}

.screen.entering .landing-hero-frame {
  animation-duration: 420ms;
  animation-delay: 60ms;
}

.cta,
.cta-secondary,
.price-btn,
.back-btn,
.option,
.rating-choice,
.modal-sheet,
.scan-drawer {
  transition-timing-function: var(--ease-out-cubic);
}

.cta,
.cta-secondary,
.price-btn,
.back-btn {
  position: relative;
  overflow: hidden;
}

.cta::after,
.cta-secondary::after,
.price-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.2) 48%, transparent 72%);
  opacity: 0;
  transform: translate3d(-48%, 0, 0);
  transition:
    transform 360ms var(--ease-out-cubic),
    opacity 180ms ease;
  pointer-events: none;
}

.option.selected .opt-radio::after,
.rating-choice.selected span,
.price-btn.selected,
.toggle-input:checked::after {
  animation: checkSettle 260ms var(--ease-out-cubic) both;
}

.option.selected .opt-icon {
  transform: scale(1.035);
}

.screen.answer-pending .option.selected,
.screen.answer-pending .rating-choice.selected {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 18px 44px rgba(142, 223, 213, 0.08);
}

.text-input:focus,
.inline-input:focus {
  border-color: rgba(142, 223, 213, 0.55);
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 3px rgba(142, 223, 213, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover::after,
  .cta-secondary:hover::after,
  .price-btn:hover::after {
    opacity: 1;
    transform: translate3d(48%, 0, 0);
  }

  .sp-dot:hover {
    opacity: 0.78;
    transform: scaleX(0.62);
  }
}

body.reduced-motion .bubble,
body.reduced-motion .transition-ring,
body.reduced-motion .motion-word,
body.reduced-motion .landing-hero-frame,
body.reduced-motion .landing-feature,
body.reduced-motion .press-item,
body.reduced-motion .sp-card,
body.reduced-motion .option,
body.reduced-motion .rating-choice,
body.reduced-motion .price-benefit,
body.reduced-motion .price-btn,
body.reduced-motion .toggle-input,
body.reduced-motion .toggle-input:checked::after,
body.reduced-motion .locked-row,
body.reduced-motion .skin-signal-card,
body.reduced-motion .story-card,
body.reduced-motion .result-chip,
body.reduced-motion .wait-row,
body.reduced-motion .score-chip-row span,
body.reduced-motion .report-lock-scan,
body.reduced-motion .score-orb-scan,
body.reduced-motion .face-scan-sweep {
  animation: none;
  filter: none;
}

body.reduced-motion .screen.entering {
  animation: none;
}

body.reduced-motion .back-btn,
body.reduced-motion .progress-fill,
body.reduced-motion .cta,
body.reduced-motion .cta-secondary,
body.reduced-motion .rating-choice,
body.reduced-motion .sp-slider,
body.reduced-motion .sp-card,
body.reduced-motion .sp-dot,
body.reduced-motion .option,
body.reduced-motion .opt-icon,
body.reduced-motion .opt-radio,
body.reduced-motion .loading-step,
body.reduced-motion .text-input,
body.reduced-motion .inline-input,
body.reduced-motion .price-btn,
body.reduced-motion .toggle-input,
body.reduced-motion .modal-overlay,
body.reduced-motion .modal-sheet,
body.reduced-motion .scan-drawer {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .bubble,
  .transition-ring,
  .motion-word,
  .landing-hero-frame,
  .landing-feature,
  .press-item,
  .sp-card,
  .option,
  .rating-choice,
  .price-benefit,
  .price-btn,
  .toggle-input,
  .toggle-input:checked::after,
  .locked-row,
  .skin-signal-card,
  .story-card,
  .result-chip,
  .wait-row,
  .score-chip-row span,
  .report-lock-scan,
  .score-orb-scan,
  .face-scan-sweep,
  .screen.entering {
    animation: none;
    filter: none;
  }

  .back-btn,
  .progress-fill,
  .cta,
  .cta-secondary,
  .rating-choice,
  .sp-slider,
  .sp-card,
  .sp-dot,
  .option,
  .opt-icon,
  .opt-radio,
  .loading-step,
  .text-input,
  .inline-input,
  .price-btn,
  .toggle-input,
  .modal-overlay,
  .modal-sheet,
  .scan-drawer {
    transition: none;
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.checkout-head {
  padding: 28px 24px 18px;
  text-align: center;
}

.checkout-body {
  padding: 0 24px 24px;
}

.whop-modal-sheet {
  position: relative;
  max-height: calc(100% - 8px);
  border-radius: 12px 12px 0 0;
  background: #15151f;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.48);
}

.whop-modal-sheet .modal-close {
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.whop-checkout-head {
  padding: 18px 14px 18px;
  text-align: left;
  background: linear-gradient(180deg, #120626 0%, #110721 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-product-title {
  max-width: calc(100% - 46px);
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.checkout-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  min-height: 24px;
}

.whop-checkout-head .strike {
  color: rgba(255, 255, 255, 0.45);
  text-decoration-color: rgba(255, 96, 116, 0.8);
}

.whop-checkout-head .save-chip {
  border-radius: 999px;
  background: rgba(239, 68, 88, 0.28);
  color: #ff8998;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.checkout-today-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.checkout-today-price > span:first-child {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.whop-checkout-body {
  display: grid;
  gap: 14px;
  padding: 18px 12px 22px;
}

.checkout-benefits {
  display: grid;
  gap: 12px;
  padding: 2px 4px 4px;
}

.checkout-benefit {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}

.checkout-benefit-mark {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #8b5cf6;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.checkout-email-issue {
  display: none;
  gap: 10px;
  padding: 14px 12px 12px;
  border-radius: 7px;
  background: rgba(109, 31, 50, 0.5);
  border: 1px solid rgba(255, 108, 134, 0.08);
  text-align: center;
}

.checkout-email-issue.visible {
  display: grid;
}

.checkout-email-error {
  color: #ff6f83;
  font-size: 13px;
  font-weight: 600;
}

.checkout-email-retry,
.checkout-email-update {
  justify-self: center;
  min-height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.checkout-email-edit {
  display: none;
  gap: 10px;
}

.checkout-email-edit.visible {
  display: grid;
}

.checkout-email-input {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
}

.checkout-email-update {
  width: 100%;
  border-radius: 8px;
  min-height: 40px;
  font-size: 14px;
}

.whop-provider-card {
  min-height: 108px;
}

.whop-provider-card.blocked {
  display: grid;
  gap: 10px;
  min-height: 114px;
}

.whop-provider-card.blocked::before,
.whop-provider-card.blocked::after {
  content: "";
  display: block;
  height: 50px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.whop-provider-card.blocked::after {
  height: 52px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 47%, transparent 47% 53%, rgba(255, 255, 255, 0.055) 53% 100%);
  border: 0;
}

.checkout-loading-card {
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 16px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-loading-card.visible {
  display: flex;
}

.checkout-loading-card strong,
.checkout-loading-card span {
  display: block;
}

.checkout-loading-card strong {
  color: #fff;
  font-size: 14px;
}

.checkout-loading-card span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.4;
}

.checkout-spinner {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.25);
  border-top-color: #8b5cf6;
  animation: spin 0.8s linear infinite;
}

.whop-checkout-slot {
  overflow: hidden;
  border-radius: 9px;
}

.whop-checkout-slot iframe,
#stripe-checkout-slot iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 9px;
}

.whop-checkout-mount iframe {
  display: block;
  min-height: 312px;
}

.checkout-main-submit {
  position: sticky;
  bottom: 0;
  z-index: 4;
  min-height: 60px;
  border-radius: 12px;
  box-shadow: 0 -14px 24px rgba(21, 21, 31, 0.92);
}

.checkout-main-submit:disabled {
  opacity: 0.62;
  cursor: default;
}

.checkout-main-submit[hidden] {
  display: none;
}

.checkout-trust,
.checkout-address,
.checkout-legal,
.whop-checkout-body .disclaimer {
  text-align: center;
  color: rgba(255, 255, 255, 0.32);
  font-size: 11px;
  line-height: 1.35;
}

.checkout-trust {
  margin-top: -2px;
}

.checkout-complete-root {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.checkout-complete-note {
  position: fixed;
  left: 28px;
  right: 28px;
  bottom: max(32px, env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.4;
}

.checkout-trust span {
  margin-inline: 5px;
}

.checkout-payment-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.checkout-payment-row span {
  display: inline-grid;
  min-width: 38px;
  height: 26px;
  place-items: center;
  border-radius: 3px;
  background: #fff;
  color: #0d0d12;
  font-size: 10px;
  font-weight: 900;
}

.checkout-payment-row span:nth-child(1) {
  background: #050505;
  color: #fff;
}

.checkout-payment-row span:nth-child(3) {
  background: #1b3998;
  color: #ffe15a;
}

.checkout-payment-row span:nth-child(4) {
  background: linear-gradient(90deg, #ef4444 0 50%, #f59e0b 50% 100%);
  color: transparent;
}

.checkout-payment-row span:nth-child(5) {
  background: #0473ba;
  color: #fff;
}

.checkout-legal a {
  color: rgba(255, 255, 255, 0.46);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.toggle-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.toggle-input {
  margin-top: 4px;
}

.toggle-copy {
  display: grid;
  gap: 4px;
}

.toggle-copy span {
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.5;
}

.result-screen {
  justify-content: center;
}

@media (max-width: 540px) {
  .screen {
    padding-inline: 22px;
  }

  .sticky-footer,
  .floating-btn-dock {
    width: calc(100% + 44px);
    margin-inline: -22px;
    padding-inline: 22px;
  }

  .sp-slider-wrap {
    width: calc(100% + 44px);
    margin-inline: -22px;
  }

  .sp-slider {
    padding-inline: 22px;
  }

  .sp-card {
    width: calc(min(100vw, var(--app-width)) - 44px);
  }

  .score-ready-scroll {
    width: calc(100% + 44px);
    margin-inline: -22px;
    padding-inline: 22px;
  }
}

/* Post-purchase and member app */
.product-app-body {
  margin: 0;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 20% 8%, rgba(142, 223, 213, 0.09), transparent 26%),
    radial-gradient(circle at 82% 28%, rgba(255, 139, 123, 0.08), transparent 28%),
    #06070b;
  color: #f7f4ef;
  font-family: "Instrument Sans", system-ui, sans-serif;
}

.app-loading {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: rgba(247, 244, 239, 0.72);
  font-weight: 800;
}

.app-loading img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(142, 223, 213, 0.42));
  animation: appLogoFloat 2.2s ease-in-out infinite;
}

.post-purchase-root,
.dashboard-app,
.manage-page {
  width: min(100%, 430px);
  min-height: 100dvh;
  margin: 0 auto;
  background: #08090f;
  position: relative;
  overflow-x: hidden;
}

.post-purchase-root::before,
.dashboard-app::before,
.manage-page::before {
  content: "";
  position: fixed;
  inset: 0;
  width: min(100%, 430px);
  margin: 0 auto;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 13%, rgba(255, 139, 123, 0.16), transparent 8%),
    radial-gradient(circle at 75% 22%, rgba(142, 223, 213, 0.14), transparent 9%),
    radial-gradient(circle at 52% 58%, rgba(242, 196, 98, 0.10), transparent 7%);
  filter: blur(10px);
  opacity: 0.72;
  z-index: 0;
}

.post-screen,
.dash-shell,
.manage-page > * {
  position: relative;
  z-index: 1;
}

.post-screen {
  min-height: 100dvh;
  padding: 28px 18px 210px;
}

.post-screen-enter,
.dash-content-enter {
  animation: appScreenIn 260ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.post-progress-title {
  text-align: center;
  color: rgba(247, 244, 239, 0.44);
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 14px;
}

.post-step-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-bottom: 26px;
}

.post-step-dots span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.14);
  color: rgba(247, 244, 239, 0.45);
  font-weight: 900;
}

.post-step-dots span.done,
.post-step-dots span.active {
  background: rgba(142, 223, 213, 0.2);
  border-color: rgba(142, 223, 213, 0.68);
  color: #fff;
  box-shadow: 0 0 22px rgba(142, 223, 213, 0.18);
}

.post-upsell-card {
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(142, 223, 213, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(21, 28, 30, 0.94), rgba(12, 10, 17, 0.94)),
    radial-gradient(circle at 50% 12%, rgba(142, 223, 213, 0.16), transparent 30%);
}

.post-orbit {
  width: 160px;
  height: 160px;
  margin: 4px auto 12px;
  border-radius: 999px;
  border: 1px dashed rgba(142, 223, 213, 0.22);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 0 32px rgba(255, 255, 255, 0.018), 0 0 45px rgba(142, 223, 213, 0.08);
}

.post-orbit-core {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(142, 223, 213, 0.14);
  font-size: 34px;
  animation: postPulse 2.4s ease-in-out infinite;
}

.post-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  animation: postOrbit 8s linear infinite;
  transform-origin: 0 78px;
}

.post-orbit span:nth-child(2) {
  animation-delay: -2.6s;
  background: rgba(142, 223, 213, 0.9);
}

.post-orbit span:nth-child(3) {
  animation-delay: -5.2s;
  background: rgba(242, 196, 98, 0.9);
}

.post-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 28px;
}

.post-chip-cloud span {
  padding: 10px 12px;
  border: 1px solid rgba(142, 223, 213, 0.2);
  border-radius: 8px;
  color: rgba(247, 244, 239, 0.76);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 900;
  font-size: 13px;
}

.post-upsell-card h1,
.post-ready-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  line-height: 0.98;
  margin: 0 0 18px;
  letter-spacing: 0;
}

.post-upsell-card p,
.post-ready-hero p,
.post-ready-panel p,
.post-reader-card p {
  color: rgba(247, 244, 239, 0.62);
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

.post-section-label {
  margin: 28px 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: rgba(247, 244, 239, 0.36);
  font-size: 13px;
}

.post-check-list {
  display: grid;
  gap: 12px;
}

.post-check-row {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(247, 244, 239, 0.86);
}

.post-check-row span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #07080d;
  flex: 0 0 auto;
}

.post-bottom-actions {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 4;
  width: min(100%, 430px);
  transform: translateX(-50%);
  padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, #08090f 72%, rgba(8, 9, 15, 0));
  display: grid;
  gap: 12px;
}

.post-primary,
.post-dashboard-cta,
.manage-cta {
  min-height: 66px;
  border-radius: 8px;
  font-size: 20px;
}

.post-secondary,
.post-text-link {
  min-height: 58px;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  color: rgba(247, 244, 239, 0.62);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.post-text-link {
  min-height: auto;
  border: 0;
  background: transparent;
  font-size: 14px;
}

.post-ready-screen {
  padding-bottom: 42px;
}

.post-ready-hero {
  text-align: center;
  padding: 46px 8px 28px;
}

.post-ready-hero img {
  width: 62px;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 26px rgba(142, 223, 213, 0.34));
}

.post-ready-panel,
.post-reader-card {
  border-radius: 8px;
  border: 1px solid rgba(142, 223, 213, 0.18);
  background: rgba(255, 255, 255, 0.035);
  padding: 20px;
  margin-bottom: 18px;
}

.post-ready-panel h2 {
  text-align: center;
  margin: 0 0 8px;
  font-size: 22px;
}

.post-dashboard-links {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.post-dashboard-link {
  border: 1px solid rgba(142, 223, 213, 0.22);
  border-radius: 8px;
  background: rgba(142, 223, 213, 0.08);
  color: #f7f4ef;
  padding: 14px;
  text-align: left;
  font: inherit;
}

.post-dashboard-link span,
.post-reader-card strong {
  display: block;
  font-weight: 950;
  font-size: 18px;
}

.post-dashboard-link small,
.post-reader-card span {
  color: rgba(247, 244, 239, 0.58);
  font-weight: 800;
  margin-top: 4px;
  display: block;
}

.post-reader-card {
  display: flex;
  gap: 16px;
}

.post-reader-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: rgba(142, 223, 213, 0.12);
  display: grid;
  place-items: center;
  font-size: 28px;
  flex: 0 0 auto;
}

.post-price-note {
  text-align: center;
  color: rgba(247, 244, 239, 0.48);
  font-weight: 800;
}

.dash-shell {
  min-height: 100dvh;
}

.dash-content {
  padding: 18px 16px 112px;
}

.dash-hero-card {
  margin: -18px -16px 22px;
  padding: 22px 16px 32px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(142, 223, 213, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(18, 20, 31, 0.96), rgba(10, 11, 17, 0.96));
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-brand-mark {
  width: 28px;
  height: 28px;
  filter: invert(1);
  opacity: 0.94;
}

.dash-settings-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}

.dash-avatar-wrap {
  width: 136px;
  height: 136px;
  margin: 20px auto 14px;
  position: relative;
}

.dash-avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 5px solid rgba(142, 223, 213, 0.38);
  filter: saturate(0.88);
}

.dash-avatar-score {
  position: absolute;
  right: -2px;
  bottom: 4px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f7f4ef;
  color: #050608;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.dash-hero-card h1,
.dash-page-head h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: 0;
}

.dash-hero-card p,
.dash-page-head p,
.dash-card p,
.settings-help-card p,
.settings-disclaimer {
  color: rgba(247, 244, 239, 0.62);
  font-size: 18px;
  line-height: 1.48;
}

.dash-pill {
  margin-top: 12px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  font-weight: 950;
}

.dash-date-row,
.dash-horizontal,
.dash-rings,
.tracker-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.dash-date-row::-webkit-scrollbar,
.dash-horizontal::-webkit-scrollbar,
.dash-rings::-webkit-scrollbar {
  display: none;
}

.dash-date-row button {
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  color: rgba(247, 244, 239, 0.64);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-weight: 950;
}

.dash-date-row button.active {
  color: #050608;
  background: #fff;
}

.dash-card,
.dash-note-card,
.daily-practice,
.settings-profile-card,
.settings-row,
.settings-help-card,
.signed-out-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  margin: 16px 0;
}

.dash-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-ring-card {
  min-width: 92px;
  text-align: center;
}

.dash-ring {
  --value: 50;
  --ring: #8edfd5;
  width: 74px;
  height: 74px;
  margin: 0 auto 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #08090f 57%, transparent 59%),
    conic-gradient(var(--ring) calc(var(--value) * 1%), rgba(255, 255, 255, 0.12) 0);
  font-weight: 950;
}

.dash-ring.big {
  width: 86px;
  height: 86px;
  margin: 0;
  flex: 0 0 auto;
}

.dash-ring-card strong,
.dash-ring-card small {
  display: block;
}

.dash-ring-card small {
  color: rgba(247, 244, 239, 0.5);
  font-weight: 800;
  margin-top: 3px;
}

.dash-note-card {
  display: flex;
  gap: 16px;
  align-items: center;
  border-color: rgba(142, 223, 213, 0.24);
  background: rgba(142, 223, 213, 0.08);
}

.dash-note-card.blue {
  border-color: rgba(117, 154, 255, 0.25);
  background: rgba(117, 154, 255, 0.08);
}

.dash-note-card span {
  font-size: 30px;
}

.dash-note-card p {
  margin: 0;
  color: rgba(247, 244, 239, 0.82);
  font-weight: 750;
}

.dash-horizontal article {
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.dash-horizontal span {
  color: #8edfd5;
  font-size: 24px;
}

.dash-horizontal strong {
  display: block;
  font-size: 20px;
  margin: 12px 0 8px;
}

.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.split-list h2 {
  grid-column: 1 / -1;
}

.split-list strong {
  display: block;
  margin-bottom: 8px;
}

.split-list p {
  margin: 6px 0;
  font-size: 16px;
}

.split-list .yes {
  color: #73e084;
}

.split-list .no {
  color: #ff6b6b;
}

.dash-page-head {
  padding: 22px 4px 6px;
}

.dash-scan-photo-card {
  position: relative;
  height: 330px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(142, 223, 213, 0.28);
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.04);
}

.dash-scan-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.72);
}

.scan-zone {
  position: absolute;
  border: 2px solid rgba(142, 223, 213, 0.72);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(142, 223, 213, 0.18);
  animation: postPulse 2.2s ease-in-out infinite;
}

.zone-a {
  width: 110px;
  height: 70px;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
}

.zone-b {
  width: 92px;
  height: 92px;
  left: 42px;
  top: 150px;
  animation-delay: -0.4s;
}

.zone-c {
  width: 92px;
  height: 92px;
  right: 42px;
  top: 150px;
  animation-delay: -0.8s;
}

.scan-lock-free {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(8, 9, 15, 0.78);
  color: #8edfd5;
  font-weight: 950;
}

.score-card > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.score-card span,
.dash-grid-signals span,
.routine-card span,
.manage-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 244, 239, 0.48);
  font-weight: 950;
  font-size: 13px;
}

.score-card strong {
  font-size: 46px;
}

.score-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin: 14px 0;
}

.score-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #8edfd5, #f2c462);
}

.dash-grid-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-grid-signals article {
  min-height: 100px;
  border: 1px solid rgba(142, 223, 213, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
}

.dash-grid-signals strong {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  line-height: 1.15;
}

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

.zone-list div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.daily-practice {
  display: flex;
  gap: 20px;
  align-items: center;
  border-color: rgba(142, 223, 213, 0.28);
}

.daily-practice h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.challenge-row {
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(247, 244, 239, 0.86);
  font-size: 20px;
  font-weight: 850;
}

.challenge-row input {
  width: 28px;
  height: 28px;
  accent-color: #8edfd5;
}

.mood-row {
  display: flex;
  gap: 10px;
}

.mood-row button {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 25px;
}

.mood-row button.active {
  border-color: #8edfd5;
  box-shadow: 0 0 0 4px rgba(142, 223, 213, 0.12);
}

.intention-label {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: rgba(247, 244, 239, 0.55);
  font-weight: 850;
}

.intention-label input {
  min-height: 58px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 16px;
  font: inherit;
}

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

.tracker-grid div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.tracker-grid span {
  grid-column: 1 / -1;
  color: rgba(247, 244, 239, 0.56);
  font-weight: 850;
}

.tracker-grid button {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-weight: 950;
}

.tracker-grid strong {
  text-align: center;
  font-size: 24px;
}

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

.test-list button {
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 16px;
  font: inherit;
  font-weight: 950;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.routine-card {
  border-color: rgba(142, 223, 213, 0.24);
  background: rgba(142, 223, 213, 0.07);
}

.routine-steps {
  display: grid;
  gap: 12px;
}

.routine-steps div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.routine-steps b {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #06070b;
}

.routine-steps span {
  font-size: 18px;
  font-weight: 850;
}

.product-link-list {
  display: grid;
  gap: 12px;
}

.product-link-list a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
}

.product-link-list a span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(142, 223, 213, 0.11);
  font-size: 24px;
  grid-row: span 2;
}

.product-link-list a strong,
.product-link-list a small {
  display: block;
}

.product-link-list a small {
  color: rgba(247, 244, 239, 0.58);
  font-weight: 800;
}

.product-link-list a em {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: #8edfd5;
  font-style: normal;
  font-weight: 950;
}

.settings-profile-card {
  display: flex;
  gap: 16px;
  align-items: center;
}

.settings-person-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(142, 223, 213, 0.12);
  border: 1px solid rgba(142, 223, 213, 0.28);
  font-size: 32px;
}

.settings-profile-card strong,
.settings-profile-card span {
  display: block;
}

.settings-profile-card strong {
  font-size: 22px;
  overflow-wrap: anywhere;
}

.settings-profile-card span,
.settings-email-row {
  color: rgba(247, 244, 239, 0.56);
  font-weight: 850;
}

.settings-email-row {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.settings-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  color: #fff;
  text-decoration: none;
  width: 100%;
  font: inherit;
  text-align: left;
}

.settings-row.danger {
  color: #ff6378;
  border-color: rgba(255, 99, 120, 0.35);
  background: rgba(255, 99, 120, 0.08);
}

.settings-help-card {
  text-align: center;
}

.settings-help-card div {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.settings-help-card a {
  min-width: 92px;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  font-weight: 950;
}

.settings-help-card a.primary {
  color: #8edfd5;
  border-color: rgba(142, 223, 213, 0.38);
  background: rgba(142, 223, 213, 0.08);
}

.settings-disclaimer {
  text-align: center;
  color: rgba(247, 244, 239, 0.36);
}

.signed-out-shell {
  display: grid;
  place-items: center;
  padding: 22px;
}

.signed-out-card {
  text-align: center;
}

.signed-out-card img {
  width: 54px;
}

.dash-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: rgba(8, 9, 15, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  z-index: 20;
}

.dash-tab {
  min-height: 70px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(247, 244, 239, 0.45);
  font: inherit;
  display: grid;
  place-items: center;
  gap: 3px;
}

.dash-tab span {
  font-size: 26px;
  line-height: 1;
}

.dash-tab strong {
  font-size: 12px;
}

.dash-tab.active {
  color: #fff;
  border-color: rgba(142, 223, 213, 0.62);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.88), 0 0 26px rgba(142, 223, 213, 0.16);
}

.manage-page {
  padding: 52px 18px 64px;
  box-sizing: border-box;
}

.manage-hero {
  text-align: center;
  margin-bottom: 46px;
}

.manage-hero img {
  width: 58px;
  margin: 0 auto 26px;
  filter: invert(1);
  opacity: 0.94;
}

.app-loading img,
.signed-out-card img {
  filter: invert(1);
  opacity: 0.94;
}

.manage-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0 0 18px;
}

.manage-hero p,
.manage-section p,
.manage-refund-card p,
.manage-support-card p,
.manage-faq p,
.manage-small {
  color: rgba(247, 244, 239, 0.62);
  font-size: 18px;
  line-height: 1.48;
}

.manage-section,
.manage-refund-card,
.manage-support-card {
  margin: 34px 0;
}

.manage-charge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.manage-charge-grid article,
.manage-refund-card,
.manage-support-card,
.manage-faq details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.manage-charge-grid span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}

.manage-charge-grid strong {
  font-size: 28px;
}

.manage-charge-grid p {
  font-size: 15px;
  margin: 6px 0 0;
}

.manage-steps {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}

.manage-steps div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.manage-steps b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #07080d;
  flex: 0 0 auto;
}

.manage-small {
  text-align: center;
}

.manage-page a {
  color: #8edfd5;
}

.manage-refund-card div,
.manage-support-card div:last-child,
.manage-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.manage-refund-card a,
.manage-support-card a {
  font-weight: 950;
}

.manage-faq {
  display: grid;
  gap: 12px;
  margin: 44px 0;
}

.manage-faq summary {
  cursor: pointer;
  font-size: 21px;
  font-weight: 950;
}

.manage-support-card {
  text-align: center;
}

.manage-support-card > div:first-child {
  font-size: 46px;
  color: rgba(247, 244, 239, 0.64);
}

.manage-footer {
  justify-content: center;
  color: rgba(247, 244, 239, 0.38);
  padding-top: 30px;
}

.manage-footer span {
  flex-basis: 100%;
  text-align: center;
}

@keyframes appScreenIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes appLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes postPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes postOrbit {
  from {
    transform: rotate(0deg) translateX(0);
  }
  to {
    transform: rotate(360deg) translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-screen-enter,
  .dash-content-enter,
  .app-loading img,
  .post-orbit span,
  .post-orbit-core,
  .scan-zone {
    animation: none !important;
  }
}

/* Glowlo warm trust theme: light, diagnostic, and skincare-native. */
:root {
  --bg: #fbf5ec;
  --bg-soft: #f5eadc;
  --panel: rgba(255, 252, 246, 0.86);
  --panel-strong: #fffdf8;
  --panel-weak: rgba(255, 255, 255, 0.58);
  --text: #232824;
  --muted: rgba(35, 40, 36, 0.58);
  --muted2: rgba(35, 40, 36, 0.72);
  --faint: rgba(35, 40, 36, 0.34);
  --border: rgba(78, 63, 48, 0.14);
  --accent-coral: #bd6e72;
  --accent-aqua: #438f84;
  --accent-gold: #c49339;
  --accent-ink: #173d38;
  --glow-teal: #438f84;
  --glow-gold: #c49339;
  --glow-rose: #bd6e72;
  --shadow: 0 22px 70px rgba(69, 52, 36, 0.18);
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(189, 110, 114, 0.16), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(67, 143, 132, 0.14), transparent 24%),
    linear-gradient(180deg, #fffaf2 0%, #fbf5ec 48%, #f3e8d8 100%);
  color: var(--text);
}

.page-shell,
body.product-app-body,
.post-purchase-root,
.dashboard-app,
.manage-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(189, 110, 114, 0.12), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(67, 143, 132, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #fbf5ec 58%, #f3e8d8 100%);
  color: var(--text);
}

.ambient-layer {
  background:
    radial-gradient(circle at 18% 22%, rgba(189, 110, 114, 0.18), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(67, 143, 132, 0.14), transparent 18%),
    radial-gradient(circle at 22% 84%, rgba(196, 147, 57, 0.14), transparent 20%);
  filter: blur(54px);
}

.phone-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 14%),
    radial-gradient(circle at top center, rgba(67, 143, 132, 0.08), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #fbf4ea 100%);
  border-color: rgba(68, 58, 45, 0.14);
  box-shadow: 0 26px 72px rgba(70, 55, 38, 0.2);
}

.bubble {
  background:
    radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 54%),
    radial-gradient(circle at center, rgba(67, 143, 132, 0.18), rgba(189, 110, 114, 0.08));
  border-color: rgba(67, 143, 132, 0.12);
  opacity: 0.34;
}

.screen {
  color: var(--text);
}

.boot-screen,
.qsub,
.section-label,
.landing-subhead,
.sp-card-text,
.scan-stage-row,
.progress-pill,
.email-screen .qsub,
.price-screen .disclaimer,
.offer-screen .report-hero .qsub,
.spin-subtitle,
.spin-footnote,
.result-subcopy,
.checkout-trust,
.checkout-address,
.checkout-legal,
.whop-checkout-body .disclaimer {
  color: var(--muted2);
}

.section-label::before,
.section-label::after,
.stat-divider {
  background: rgba(68, 58, 45, 0.14);
}

.progress-bar,
.scan-progress-track,
.scan-drawer-progress,
.spin-progress-track {
  background: rgba(68, 58, 45, 0.13);
}

.progress-fill,
.scan-progress-fill,
.scan-drawer-progress-fill,
.spin-progress-fill {
  background: linear-gradient(90deg, var(--glow-teal), #f6d99d);
}

.back-btn,
.modal-close,
.whop-modal-sheet .modal-close {
  border-color: rgba(68, 58, 45, 0.16);
  background: rgba(255, 253, 248, 0.82);
  color: var(--text);
}

.floating-btn-dock {
  background: linear-gradient(to top, rgba(251, 245, 236, 0.98) 68%, rgba(251, 245, 236, 0));
}

.cta,
.post-primary,
.post-dashboard-cta,
.manage-cta,
.checkout-main-submit {
  border-radius: 8px;
  background: #173d38;
  color: #fffaf2;
  box-shadow: 0 14px 36px rgba(23, 61, 56, 0.18);
}

.cta:hover,
.post-primary:hover,
.post-dashboard-cta:hover,
.manage-cta:hover,
.checkout-main-submit:hover {
  filter: brightness(1.03);
}

.cta-secondary,
.post-secondary,
.post-text-link {
  border-color: rgba(68, 58, 45, 0.16);
  background: rgba(255, 253, 248, 0.72);
  color: var(--text);
}

.glowlo-mark-img,
.dash-brand-mark {
  filter: none;
}

.cta .glowlo-mark-img,
.post-primary .glowlo-mark-img,
.post-dashboard-cta .glowlo-mark-img,
.checkout-main-submit .glowlo-mark-img {
  filter: invert(1);
}

.landing-screen {
  padding: 0 20px;
  background:
    radial-gradient(circle at 20% 18%, rgba(67, 143, 132, 0.07), transparent 24%),
    radial-gradient(circle at 82% 42%, rgba(189, 110, 114, 0.07), transparent 22%),
    linear-gradient(180deg, #fffaf2 0%, #fbf5ec 68%, #fffaf2 100%);
}

.landing-shell {
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
}

.landing-pill,
.pill {
  margin-bottom: 10px;
  border-color: rgba(67, 143, 132, 0.22);
  background: rgba(255, 253, 248, 0.76);
  color: rgba(35, 40, 36, 0.72);
  box-shadow: 0 10px 30px rgba(69, 52, 36, 0.08);
  letter-spacing: 0.1em;
}

.landing-scan-hero {
  width: min(100%, 320px);
  margin: 0 auto 10px;
  transform-origin: 50% 18%;
}

.landing-phone-mock {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(67, 143, 132, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 238, 0.84)),
    #fffdf8;
  box-shadow: 0 18px 44px rgba(70, 55, 38, 0.16);
}

.landing-phone-mock::before {
  content: "";
  position: absolute;
  inset: auto 18px 48px;
  height: 58px;
  border-radius: 999px;
  background: rgba(67, 143, 132, 0.15);
  filter: blur(24px);
  pointer-events: none;
}

.landing-phone-bar,
.landing-phone-status {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  color: var(--muted2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.landing-phone-bar {
  border-bottom: 1px solid rgba(68, 58, 45, 0.1);
}

.landing-phone-mark {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.landing-phone-bar span:last-child {
  margin-right: auto;
}

.landing-phone-status {
  border-top: 1px solid rgba(68, 58, 45, 0.1);
}

.landing-phone-status strong {
  color: #173d38;
}

.landing-phone-photo {
  position: relative;
  height: 188px;
  overflow: hidden;
  background: #eadfce;
}

.landing-phone-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.95) contrast(0.96) brightness(1.05);
}

.landing-face-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 242, 0.34) 1px, transparent 1px);
  background-size: 38px 38px;
}

.landing-scan-line {
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(67, 143, 132, 0.95), transparent);
  box-shadow: 0 0 22px rgba(67, 143, 132, 0.44);
  animation: landingScanLine 3.2s ease-in-out infinite alternate;
}

.scan-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #fffaf2;
  border-radius: 999px;
  background: #438f84;
  box-shadow: 0 0 0 5px rgba(67, 143, 132, 0.2), 0 8px 20px rgba(35, 40, 36, 0.18);
}

.dot-forehead {
  top: 25%;
  left: 49%;
}

.dot-cheek-left {
  top: 52%;
  left: 34%;
}

.dot-cheek-right {
  top: 50%;
  right: 32%;
}

.dot-jaw {
  left: 52%;
  bottom: 22%;
}

.scan-label {
  position: absolute;
  padding: 6px 8px;
  border: 1px solid rgba(67, 143, 132, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  color: #173d38;
  box-shadow: 0 10px 26px rgba(70, 55, 38, 0.12);
  font-size: 10px;
  font-weight: 950;
}

.label-age {
  top: 18px;
  right: 16px;
}

.label-tone {
  left: 14px;
  bottom: 52px;
}

.label-hydration {
  right: 12px;
  bottom: 18px;
}

.landing-headline-wrap {
  margin-bottom: 8px;
}

.landing-title-main,
.landing-title-accent {
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.03;
  text-shadow: none;
}

.landing-title-main {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.06;
}

.landing-title-accent {
  color: #173d38;
  font-size: 29px;
  line-height: 1.04;
}

.landing-subhead {
  max-width: 350px;
  margin-bottom: 8px;
  color: rgba(35, 40, 36, 0.74);
  font-size: 11.8px;
  font-weight: 750;
  word-spacing: 0.03em;
  line-height: 1.34;
}

.landing-stat-row {
  margin-bottom: 9px;
}

.landing-stat-block,
.landing-stat-highlight,
.landing-stat-split,
.star-rating-value {
  color: rgba(35, 40, 36, 0.82);
}

.landing-stat-tail {
  color: rgba(35, 40, 36, 0.58);
}

.star-rating-stars {
  color: #d49d2b;
}

.landing-preview-list {
  display: grid;
  width: 100%;
  gap: 6px;
  margin-top: 2px;
}

.landing-preview-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(67, 143, 132, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 8px 22px rgba(70, 55, 38, 0.08);
}

.landing-preview-item span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #173d38;
  color: #fffaf2;
  font-size: 13px;
  font-weight: 950;
}

.landing-preview-item strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.landing-feature {
  border-color: rgba(67, 143, 132, 0.16);
  background: rgba(255, 253, 248, 0.7);
}

.landing-feature strong {
  color: var(--text);
}

.landing-feature span {
  color: var(--muted);
}

.press-item {
  border-color: rgba(68, 58, 45, 0.14);
  background: rgba(255, 253, 248, 0.7);
  color: rgba(35, 40, 36, 0.68);
}

.press-item-brand,
.sp-name {
  color: var(--text);
}

.sp-card {
  border-color: rgba(67, 143, 132, 0.18);
  background: rgba(255, 253, 248, 0.76);
}

.sp-card.active {
  border-color: rgba(67, 143, 132, 0.3);
  background: rgba(255, 253, 248, 0.88);
}

.sp-card::before {
  background: rgba(255, 253, 248, 0.88);
  border-color: rgba(67, 143, 132, 0.22);
}

.sp-card-text {
  color: rgba(35, 40, 36, 0.72);
}

.sp-dot {
  background: rgba(68, 58, 45, 0.22);
}

.sp-dot.active {
  background: #173d38;
}

.screen.entering .landing-scan-hero,
.screen.entering .landing-preview-item {
  animation: screenItemIn 300ms var(--ease-out-quart) both;
  animation-delay: calc(70ms * var(--stagger, 0));
}

.screen.entering .landing-headline-wrap .motion-word {
  animation: elementLiftIn 260ms var(--ease-out-quart) both;
  animation-delay: calc(20ms + (var(--word, 0) * 10ms));
  filter: none;
  will-change: transform, opacity;
}

.qtitle,
.offer-screen .report-hero .qtitle,
.score-ready-title,
.spin-title,
.spin-offer-title,
.result-title,
.post-upsell-card h1,
.post-ready-hero h1,
.dash-hero-card h1,
.dash-page-head h1,
.manage-hero h1 {
  color: var(--text);
  letter-spacing: 0;
  text-shadow: none;
}

.option,
.rating-choice,
.upload-card,
.camera-card,
.email-card,
.email-row,
.price-benefit-card,
.price-card,
.price-screen .price-btn,
.price-screen .price-helper,
.offer-timer,
.locked-row,
.skin-signal-card,
.story-card,
.guarantee-card,
.scan-drawer,
.loading-screen .loading-step,
.scan-intro-card,
.score-ready-card,
.spin-wheel-card,
.spin-offer-summary,
.spin-order-card,
.spin-warning,
.spin-proof-card,
.modal-sheet,
.whop-modal-sheet,
.checkout-body,
.checkout-loading-card {
  border-color: rgba(68, 58, 45, 0.14);
  background: rgba(255, 253, 248, 0.78);
  color: var(--text);
  box-shadow: 0 12px 32px rgba(70, 55, 38, 0.1);
}

.option:hover,
.option.selected,
.rating-choice.selected,
.price-screen .price-btn.selected,
.screen.answer-pending .option.selected,
.screen.answer-pending .rating-choice.selected {
  border-color: rgba(23, 61, 56, 0.42);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(23, 61, 56, 0.12);
}

.opt-icon,
.option-icon,
.visual-icon,
.locked-icon,
.checkout-benefit-mark,
.post-check-row span,
.settings-person-icon,
.manage-charge-grid span {
  background: rgba(67, 143, 132, 0.12);
  color: #173d38;
}

.opt-radio,
.option-check {
  border-color: rgba(35, 40, 36, 0.28);
}

.option.selected .opt-radio,
.option.selected .option-check,
.rating-choice.selected .rating-dot {
  border-color: #173d38;
  background: #173d38;
}

.text-input,
.inline-input,
.checkout-email-input,
.intention-label input,
.price-screen select {
  border-color: rgba(68, 58, 45, 0.18);
  background: rgba(255, 253, 248, 0.82);
  color: var(--text);
}

.text-input::placeholder,
.inline-input::placeholder,
.checkout-email-input::placeholder,
.intention-label input::placeholder {
  color: rgba(35, 40, 36, 0.42);
}

.text-input:focus,
.inline-input:focus,
.checkout-email-input:focus,
.intention-label input:focus {
  border-color: rgba(23, 61, 56, 0.48);
  box-shadow: 0 0 0 4px rgba(67, 143, 132, 0.12);
}

.scan-stage-row strong,
.price-screen .price-helper strong,
.offer-timer-value,
.score-card strong,
.dash-grid-signals strong,
.product-link-list a em,
.manage-page a,
.spin-offer-accent,
.checkout-today-price {
  color: #173d38;
}

.analysis-visual,
.visual-wrap,
.scan-intro-visual,
.loading-screen .analysis-visual {
  color: #173d38;
}

.modal-overlay {
  background: rgba(63, 51, 40, 0.42);
}

.checkout-head,
.whop-checkout-head {
  background:
    radial-gradient(circle at 10% 0%, rgba(189, 110, 114, 0.16), transparent 36%),
    linear-gradient(180deg, #f7ebdc, #fffaf2);
  color: var(--text);
}

.checkout-head .strike,
.whop-checkout-head .strike,
.save-chip {
  color: rgba(35, 40, 36, 0.62);
}

.checkout-benefit {
  color: var(--text);
}

.checkout-benefit-mark {
  background: #173d38;
  color: #fffaf2;
}

.whop-checkout-slot,
.whop-checkout-mount,
#stripe-checkout-slot {
  background: #fffdf8;
}

.dash-hero-card {
  background:
    radial-gradient(circle at 50% 32%, rgba(67, 143, 132, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #f2e5d2 100%);
  color: var(--text);
}

.dash-settings-link,
.dash-date-row button,
.dash-card,
.dash-note-card,
.daily-practice,
.settings-profile-card,
.settings-row,
.settings-help-card,
.signed-out-card,
.dash-horizontal article,
.dash-scan-photo-card,
.dash-grid-signals article,
.zone-list div,
.mood-row button,
.tracker-grid div,
.tracker-grid button,
.test-list button,
.product-link-list a,
.manage-section,
.manage-charge-grid article,
.manage-refund-card,
.manage-support-card,
.manage-faq details {
  border-color: rgba(68, 58, 45, 0.14);
  background: rgba(255, 253, 248, 0.74);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(70, 55, 38, 0.08);
}

.dash-hero-card p,
.dash-page-head p,
.dash-card p,
.settings-help-card p,
.settings-disclaimer,
.dash-ring-card small,
.score-card span,
.dash-grid-signals span,
.routine-card span,
.manage-label,
.product-link-list a small,
.settings-profile-card span,
.settings-email-row,
.challenge-row,
.intention-label,
.tracker-grid span,
.manage-section p,
.manage-hero p,
.manage-refund-card p,
.manage-support-card p,
.manage-footer {
  color: var(--muted2);
}

.manage-hero img {
  filter: none;
}

.manage-section p,
.manage-refund-card p,
.manage-support-card p,
.manage-hero p {
  font-size: 18px;
  line-height: 1.55;
}

.dash-pill,
.dash-date-row button.active {
  background: #173d38;
  color: #fffaf2;
}

.dash-ring {
  background:
    radial-gradient(circle at center, #fffaf2 57%, transparent 59%),
    conic-gradient(var(--ring) calc(var(--value) * 1%), rgba(68, 58, 45, 0.14) 0);
}

.dash-note-card,
.daily-practice,
.routine-card {
  border-color: rgba(67, 143, 132, 0.22);
  background: rgba(67, 143, 132, 0.08);
}

.dash-nav {
  background: rgba(255, 250, 242, 0.94);
  border-top-color: rgba(68, 58, 45, 0.12);
  box-shadow: 0 -18px 44px rgba(70, 55, 38, 0.12);
}

.dash-tab {
  color: rgba(35, 40, 36, 0.48);
}

.dash-tab.active {
  border-color: rgba(23, 61, 56, 0.44);
  color: #173d38;
  background: rgba(67, 143, 132, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.92), 0 12px 24px rgba(23, 61, 56, 0.12);
}

.product-link-list a,
.settings-row {
  text-decoration: none;
}

.settings-row.danger {
  color: #b04456;
  border-color: rgba(176, 68, 86, 0.24);
  background: rgba(176, 68, 86, 0.08);
}

.settings-help-card a,
.manage-refund-card a,
.manage-support-card a {
  border-color: rgba(68, 58, 45, 0.16);
  color: var(--text);
}

.settings-help-card a.primary,
.manage-page a {
  color: #173d38;
}

.app-loading span {
  color: var(--muted2);
}

.app-loading img {
  filter: none;
}

@keyframes landingScanLine {
  from {
    transform: translateY(12px);
  }
  to {
    transform: translateY(190px);
  }
}

@media (max-height: 720px) {
  .landing-shell {
    padding-top: calc(10px + env(safe-area-inset-top, 0px));
  }

  .landing-pill {
    margin-bottom: 6px;
  }

  .landing-scan-hero {
    width: min(100%, 302px);
    margin-bottom: 8px;
  }

  .landing-phone-bar,
  .landing-phone-status {
    padding: 6px 9px;
    font-size: 10px;
  }

  .landing-phone-photo {
    height: 126px;
  }

  .landing-title-main {
    font-size: 22px;
    line-height: 1.04;
  }

  .landing-title-accent {
    font-size: 24px;
    line-height: 1.03;
  }

  .landing-subhead {
    max-width: 338px;
    margin-bottom: 7px;
    font-size: 10.8px;
    line-height: 1.25;
  }

  .landing-stat-row {
    margin-bottom: 7px;
  }

  .landing-preview-list {
    display: none;
  }

  .landing-preview-item {
    min-height: 36px;
    padding: 8px 10px;
  }

  .landing-dock {
    padding-top: 0;
  }

  .landing-cta-arrow {
    margin-bottom: 6px;
    font-size: 12px;
  }
}

@media (max-width: 370px) {
  .landing-title-main {
    font-size: 22px;
  }

  .landing-title-accent {
    font-size: 24px;
  }

  .landing-subhead {
    font-size: 10.8px;
  }
}

/* Final light-theme contrast pass for deeper funnel screens. */
.scan-question h3,
.scan-question p,
.price-title,
.price-title .motion-word,
.price-benefit-heading,
.price-benefit p,
.price-field-label,
.special-offer-band,
.special-offer-body,
.special-offer-total,
.locked-row-copy strong,
.locked-row-copy span,
.skin-signal-box strong,
.checkout-product-title,
.checkout-price-row,
.checkout-today-price,
.checkout-today-price > span:first-child {
  color: var(--text);
  text-shadow: none;
}

.scan-question p,
.price-benefit p,
.locked-row-copy span,
.special-offer-body,
.checkout-today-price span:last-child {
  color: var(--muted2);
}

.scan-answer,
.scan-answer.selected {
  border-color: rgba(68, 58, 45, 0.2);
  background: rgba(255, 253, 248, 0.72);
  color: var(--text);
}

.scan-answer.primary,
.scan-answer.primary.selected {
  border-color: rgba(23, 61, 56, 0.34);
  background: #173d38;
  color: #fffdf8;
}

.price-title em,
.price-title em .motion-word,
.special-offer-body strong,
.special-offer-total strong,
.skin-signal-title,
.unlock-line,
.checkout-today-price > span:first-child {
  color: #173d38;
}

.price-benefit-card,
.special-offer-card,
.locked-row,
.skin-signal-card {
  border-color: rgba(68, 58, 45, 0.14);
  background: rgba(255, 253, 248, 0.84);
}

.price-benefit-heading {
  letter-spacing: 0;
}

.price-benefit span {
  background: #173d38;
  color: #fffdf8;
}

.price-screen .price-btn {
  border-color: rgba(68, 58, 45, 0.18);
  background: rgba(255, 253, 248, 0.86);
  color: var(--text);
}

.price-screen .price-btn.selected {
  border-color: rgba(23, 61, 56, 0.46);
  background: rgba(67, 143, 132, 0.14);
  color: #173d38;
}

.price-screen .price-helper p,
.price-screen .disclaimer {
  color: var(--muted2);
}

.special-offer-band {
  background: rgba(67, 143, 132, 0.12);
  color: #173d38;
}

.special-offer-total {
  border-top-color: rgba(68, 58, 45, 0.14);
}

.locked-row.featured {
  border-color: rgba(67, 143, 132, 0.32);
  background: rgba(67, 143, 132, 0.1);
}

.locked-row-icon,
.skin-signal-box {
  background: rgba(67, 143, 132, 0.1);
}

.locked-row-lock {
  color: rgba(35, 40, 36, 0.48);
}

.skin-signal-box span {
  color: rgba(35, 40, 36, 0.52);
}

.skin-signal-box.locked strong {
  color: rgba(35, 40, 36, 0.84);
  text-shadow: 0 0 15px rgba(35, 40, 36, 0.72);
}

.unlock-line {
  border-top-color: rgba(68, 58, 45, 0.14);
}

.checkout-product-title {
  font-family: "Instrument Sans", system-ui, sans-serif;
}

.whop-checkout-head .strike {
  color: rgba(35, 40, 36, 0.54);
}

.checkout-loading-card {
  background: rgba(255, 253, 248, 0.92);
}

.checkout-error {
  color: #a03d3f;
}

.checkout-legal a {
  color: rgba(23, 61, 56, 0.86);
}

.checkout-address,
.checkout-legal,
.checkout-trust,
.whop-checkout-body .disclaimer {
  color: rgba(35, 40, 36, 0.58);
}

.landing-dock {
  position: relative;
  padding-top: 8px;
  background: transparent;
}

.landing-dock::before {
  content: "";
  position: absolute;
  inset: auto 12px max(14px, env(safe-area-inset-bottom, 10px));
  height: 72px;
  border-radius: 16px;
  background: rgba(255, 250, 242, 0.54);
  filter: blur(18px);
  pointer-events: none;
}

.landing-dock .cta {
  position: relative;
  z-index: 1;
}

.landing-cta-arrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 8px;
  color: #173d38;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  pointer-events: none;
}

.landing-cta-arrow strong {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  animation: landingArrowNudge 950ms ease-in-out infinite;
}

@keyframes landingArrowNudge {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(3px);
  }
}

body.reduced-motion .landing-cta-arrow strong {
  animation: none;
}

/* Final Glowlo polish pass: product-specific visuals, light-mode contrast, and checkout escape offer. */
.social-stat-inline .social-mark {
  width: 0.9em;
  height: 0.9em;
  transform: translateY(0.02em);
}

.social-stat-inline .social-mark .glowlo-mark-img {
  filter: none;
}

.landing-dock::before {
  display: none;
}

.signal-visual {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.signal-orbit {
  fill: none;
  stroke: rgba(23, 61, 56, 0.16);
  stroke-dasharray: 3 9;
  transform-origin: 130px 130px;
  animation: signalOrbit 18s linear infinite;
}

.signal-orbit-small {
  stroke: rgba(67, 143, 132, 0.24);
  stroke-dasharray: none;
  animation-duration: 13s;
  animation-direction: reverse;
}

.signal-core {
  fill: #fffdf8;
  filter: drop-shadow(0 0 14px rgba(67, 143, 132, 0.34));
  animation: signalPulse 2.2s ease-in-out infinite;
}

.signal-visual g path,
.signal-visual g rect,
.signal-visual g circle {
  fill: none;
  stroke: rgba(67, 143, 132, 0.88);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(67, 143, 132, 0.18));
}

.signal-visual g circle,
.signal-visual g .signal-node {
  fill: #fffdf8;
  stroke: rgba(67, 143, 132, 0.62);
  animation: signalPulse 2.6s ease-in-out infinite;
}

.signal-visual g .signal-node.teal {
  fill: #7fdad0;
}

.signal-visual g .signal-node.coral {
  fill: #efad9b;
}

.signal-visual g .signal-node.gold {
  fill: #f3cf82;
}

.signal-visual text {
  fill: #173d38;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.signal-sweep-line {
  animation: signalSweep 2.6s ease-in-out infinite;
}

.signal-sweep-line.delay {
  animation-delay: 0.55s;
}

.signal-flow {
  stroke-dasharray: 18 10;
  animation: signalFlow 2.8s linear infinite;
}

.signal-coin {
  fill: rgba(243, 207, 130, 0.28);
  stroke: rgba(243, 207, 130, 0.84);
}

.signal-coin.delay {
  animation-delay: 0.5s;
}

.signal-spend text {
  fill: rgba(23, 61, 56, 0.74);
  font-size: 26px;
}

.scan-intro-screen .scan-intro-copy h2,
.scan-intro-screen .scan-intro-copy .motion-word {
  color: var(--text);
  text-shadow: none;
}

.scan-intro-screen .scan-intro-copy p,
.scan-intro-screen .scan-intro-copy p .motion-word {
  color: var(--muted2);
}

.scan-intro-screen .scan-intro-shell {
  background:
    radial-gradient(circle at 50% 24%, rgba(67, 143, 132, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(244, 236, 225, 0.78));
}

.face-scan-ready rect {
  fill: rgba(255, 253, 248, 0.44);
  stroke: rgba(23, 61, 56, 0.22);
}

.face-scan-ready path {
  stroke: rgba(67, 143, 132, 0.78);
}

.face-scan-ready circle {
  fill: rgba(23, 61, 56, 0.18);
  stroke: rgba(23, 61, 56, 0.16);
}

.face-scan-ready .face-scan-sweep {
  fill: rgba(67, 143, 132, 0.16);
}

.loading-screen .scan-stage-row,
.loading-screen .scan-stage-row span,
.loading-screen .progress-pill {
  color: var(--text);
}

.loading-screen .scan-stage-row strong {
  color: #173d38;
}

.loading-screen .scan-progress-track,
.loading-screen .scan-drawer-progress {
  background: rgba(68, 58, 45, 0.14);
}

.loading-screen .scan-progress-fill,
.loading-screen .scan-drawer-progress-fill {
  background: linear-gradient(90deg, #438f84, #f3cf82);
}

.loading-screen .loading-step {
  border-color: rgba(67, 143, 132, 0.18);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 34px rgba(70, 55, 38, 0.1);
}

.loading-screen .loading-step.done,
.loading-screen .loading-step.active {
  border-color: rgba(67, 143, 132, 0.36);
  background: rgba(255, 253, 248, 0.96);
}

.loading-step .step-copy strong {
  color: var(--text);
}

.loading-step .step-copy span {
  color: var(--muted2);
}

.loading-step .step-icon {
  background: rgba(67, 143, 132, 0.12);
}

.option.selected .opt-radio::after,
.option.selected .option-check::after {
  color: #fffdf8;
}

.price-screen .price-helper {
  grid-template-columns: minmax(0, 1fr) 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.price-screen .price-helper p {
  color: rgba(35, 40, 36, 0.7);
}

.price-screen .price-helper svg {
  width: 20px;
  opacity: 0.72;
}

.offer-screen .report-hero .qtitle {
  max-width: 330px;
  margin-inline: auto;
}

.offer-screen .story-card {
  border-color: rgba(68, 58, 45, 0.14);
  background: rgba(255, 253, 248, 0.94);
  color: var(--text);
}

.offer-screen .story-card-top strong,
.offer-screen .story-card p,
.offer-screen .guarantee-large strong {
  color: var(--text);
}

.offer-screen .story-card-top small,
.offer-screen .story-card time,
.offer-screen .guarantee-large span {
  color: var(--muted2);
}

.offer-screen .story-card-top b {
  color: rgba(23, 61, 56, 0.54);
}

.offer-screen .guarantee-large {
  border-color: rgba(243, 207, 130, 0.42);
  background: rgba(255, 253, 248, 0.94);
}

.offer-screen .starting-price {
  color: var(--text);
  text-shadow: none;
}

.offer-screen .terms-line,
.offer-screen .terms-line a,
.offer-screen .terms-link-row {
  color: rgba(35, 40, 36, 0.72);
}

.skin-signal-box.locked strong {
  color: rgba(35, 40, 36, 0.74);
  filter: blur(3px);
  text-shadow: none;
}

.spin-screen .spin-shell h2,
.spin-screen .spin-shell h2 .motion-word {
  color: var(--text);
  text-shadow: none;
}

.spin-screen .spin-shell p,
.spin-screen .spin-note {
  color: var(--muted2);
}

.discount-wheel {
  transition: none;
}

.discount-wheel.spinning {
  animation: wheelPrizeSpin 2550ms cubic-bezier(0.12, 0.72, 0.13, 1) forwards;
}

.spin-offer-screen,
.spin-offer-screen .spin-offer-scroll {
  background: #07070d;
  color: #ffffff;
}

.spin-offer-screen .spin-price-compare,
.spin-offer-screen .spin-order-card,
.spin-offer-screen .spin-warning,
.spin-offer-screen .spin-story,
.spin-offer-screen .guarantee-large {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  box-shadow: none;
}

.spin-offer-screen .spin-price-compare span,
.spin-offer-screen .spin-price-compare small,
.spin-offer-screen .spin-order-head span,
.spin-offer-screen .spin-order-row span,
.spin-offer-screen .spin-order-total span,
.spin-offer-screen .spin-order-total small,
.spin-offer-screen .spin-warning span,
.spin-offer-screen .guarantee-large span,
.spin-offer-screen .spin-locked-preview p,
.spin-offer-screen .spin-terms {
  color: rgba(255, 255, 255, 0.72);
}

.spin-offer-screen .spin-price-compare strong,
.spin-offer-screen .spin-order-row strong,
.spin-offer-screen .spin-order-total b,
.spin-offer-screen .spin-order-total strong,
.spin-offer-screen .spin-warning strong,
.spin-offer-screen .guarantee-large strong,
.spin-offer-screen .spin-locked-preview h3,
.spin-offer-screen .spin-reveal-line,
.spin-offer-screen .spin-save-line {
  color: #ffffff;
}

.spin-offer-screen .spin-terms a {
  color: rgba(255, 255, 255, 0.86);
}

.spin-offer-screen .spin-order-head b {
  color: #07070d;
  background: #ffffff;
}

.spin-offer-screen .section-title-row .label {
  color: rgba(255, 255, 255, 0.48);
}

.spin-offer-screen .section-title-row .line {
  background: rgba(255, 255, 255, 0.12);
}

.spin-offer-screen .story-card-top strong,
.spin-offer-screen .spin-story p {
  color: #ffffff;
}

.spin-offer-screen .story-card-top small {
  color: #ffd65a;
}

.spin-offer-screen .spin-order-price b {
  color: #64ef99;
}

/* Conversion polish: upload-first scan, sticky LP CTA, and faster-trust checkout. */
.landing-dock {
  position: sticky;
  bottom: 0;
  z-index: 30;
  padding-top: 10px;
  background: linear-gradient(to top, rgba(255, 250, 242, 0.96) 72%, rgba(255, 250, 242, 0));
}

.landing-dock .cta {
  min-height: 62px;
  border-radius: 14px;
  background: #143f39;
  color: #fffaf2;
  box-shadow:
    0 18px 46px rgba(20, 63, 57, 0.26),
    0 5px 0 rgba(9, 34, 31, 0.18);
}

.landing-dock .cta:hover {
  filter: brightness(1.03);
}

.landing-cta-arrow {
  margin-bottom: 10px;
  color: #143f39;
  font-size: 14px;
}

.landing-cta-arrow strong {
  font-size: 27px;
}

.camera-upload-cta {
  cursor: pointer;
}

.camera-secondary {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(20, 63, 57, 0.22);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.76);
  color: #143f39;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.camera-secondary:active {
  transform: translateY(1px);
}

.email-skip {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: rgba(35, 40, 36, 0.56);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.checkout-guarantee-strip,
.checkout-wallet-strip {
  border: 1px solid rgba(20, 63, 57, 0.12);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(70, 55, 38, 0.08);
}

.checkout-guarantee-strip {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
}

.checkout-guarantee-strip strong {
  color: #143f39;
  font-size: 13px;
}

.checkout-guarantee-strip span {
  color: rgba(35, 40, 36, 0.66);
  font-size: 12px;
  line-height: 1.35;
}

.checkout-wallet-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 12px;
}

.checkout-wallet-strip span {
  width: 100%;
  color: rgba(35, 40, 36, 0.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-wallet-strip strong {
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(20, 63, 57, 0.08);
  color: #143f39;
  font-size: 11px;
  font-weight: 900;
}

.whop-provider-card {
  min-height: 72px;
}

.checkout-loading-card {
  min-height: 68px;
  background: rgba(255, 253, 248, 0.92);
}

.checkout-loading-card strong {
  color: var(--text);
}

.checkout-loading-card span {
  color: rgba(35, 40, 36, 0.58);
}

.checkout-main-submit {
  min-height: 56px;
  background: #143f39;
  color: #fffaf2;
  box-shadow: 0 16px 36px rgba(20, 63, 57, 0.18);
}

.checkout-main-submit:disabled {
  opacity: 0.72;
}

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

@keyframes signalPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes signalSweep {
  0%,
  100% {
    transform: translateY(-8px);
    opacity: 0.34;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

@keyframes signalFlow {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes wheelPrizeSpin {
  0% {
    transform: rotate(0deg);
  }
  74% {
    transform: rotate(1960deg);
  }
  88% {
    transform: rotate(2074deg);
  }
  100% {
    transform: rotate(2115deg);
  }
}
