/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #e8a0bf;
  --pink-light: #fdf2f8;
  --pink-dark: #c97b9e;
  --purple: #6c5ce7;
  --purple-light: #a29bfe;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--pink-light);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== LANDING ========== */
.landing {
  position: relative;
  overflow-x: hidden;
}

.landing-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 160, 191, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(162, 155, 254, 0.2) 0%, transparent 50%),
    var(--pink-light);
  z-index: 0;
}

/* Hero Section */
.landing-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.landing-hero-inner {
  width: 100%;
  max-width: 520px;
}

.landing-hero-img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(232, 160, 191, 0.35);
  animation: fadeUp 0.6s ease-out, float 4s ease-in-out 0.6s infinite;
  border: 4px solid rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
}

.landing-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 60px 40px 50px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: fadeUp 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.landing-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.landing-title em {
  color: var(--pink-dark);
  font-style: italic;
}

.landing-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 30px;
}

.landing-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 35px;
}

.feature {
  text-align: center;
}

.feature span {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple-light) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232, 160, 191, 0.4);
}

.btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 160, 191, 0.5);
}

.btn-start-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.landing-disclaimer {
  margin-top: 24px;
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.5;
}

/* ========== ARCHETYPES PREVIEW ========== */
.archetypes-preview {
  position: relative;
  z-index: 1;
  padding: 40px 20px 60px;
  text-align: center;
}

.archetypes-preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.archetypes-preview-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.archetypes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.archetype-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
}

.archetype-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.archetype-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--card-color) 30%, transparent);
  border-color: color-mix(in srgb, var(--card-color) 40%, transparent);
}

.archetype-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.archetype-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.archetype-card:hover .archetype-card-img img {
  transform: scale(1.08);
}

.archetype-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, color-mix(in srgb, var(--card-color) 35%, transparent) 100%);
  pointer-events: none;
}

.archetype-card-info {
  padding: 16px 12px 20px;
  text-align: center;
}

.archetype-card-emoji {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.archetype-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.archetype-card-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ========== LANDING CTA ========== */
.landing-cta-section {
  position: relative;
  z-index: 1;
  padding: 20px 20px 60px;
}

.landing-cta-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto;
}

.landing-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

/* ========== QUIZ ========== */
.quiz-container {
  min-height: 100vh;
  position: relative;
}

.quiz-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(232, 160, 191, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
    var(--pink-light);
  z-index: 0;
  transition: background 0.6s ease;
}

/* Floating particles */
.particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-20px) scale(1); }
}

/* Sparkle burst on select */
.sparkle-container {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: sparkleBurst 0.6s ease-out forwards;
}

@keyframes sparkleBurst {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(0); }
}

/* Progress */
.progress-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(232, 160, 191, 0.1);
}

.btn-back-top {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 160, 191, 0.3);
  background: transparent;
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-back-top:hover {
  background: rgba(232, 160, 191, 0.1);
  border-color: var(--pink);
  transform: scale(1.05);
}

.btn-back-top:active {
  transform: scale(0.95);
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(232, 160, 191, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple-light) 100%);
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px rgba(162, 155, 254, 0.6);
  transition: opacity 0.3s;
}

.progress-text {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  white-space: nowrap;
  min-width: 65px;
  text-align: right;
  letter-spacing: 0.5px;
}

/* Questions */
.questions-wrapper {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  padding: 76px 20px 40px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.question-slide {
  display: none;
  width: 100%;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.question-slide.active {
  display: flex;
}

/* Question card */
.question-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
}

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

.question-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  animation-delay: 0.15s;
}

@keyframes iconPop {
  from { opacity: 0; transform: scale(0.3) rotate(-15deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.question-number {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--pink-dark);
  opacity: 0.7;
}

.question-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 24px;
  color: var(--text);
  animation: textReveal 0.5s ease-out backwards;
  animation-delay: 0.1s;
}

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

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Option buttons */
.option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 2px solid rgba(232, 160, 191, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  animation: optionSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.option-btn:nth-child(1) { animation-delay: 0.15s; }
.option-btn:nth-child(2) { animation-delay: 0.2s; }
.option-btn:nth-child(3) { animation-delay: 0.25s; }
.option-btn:nth-child(4) { animation-delay: 0.3s; }
.option-btn:nth-child(5) { animation-delay: 0.35s; }
.option-btn:nth-child(6) { animation-delay: 0.4s; }

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

.option-emoji {
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(232, 160, 191, 0.08);
  flex-shrink: 0;
  transition: var(--transition);
}

.option-text {
  flex: 1;
}

.option-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(232, 160, 191, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: transparent;
}

.option-btn:hover {
  border-color: var(--pink);
  background: rgba(253, 242, 248, 0.8);
  transform: translateX(4px);
  box-shadow: 0 2px 12px rgba(232, 160, 191, 0.15);
}

.option-btn:hover .option-emoji {
  transform: scale(1.15);
  background: rgba(232, 160, 191, 0.15);
}

.option-btn:active {
  transform: scale(0.98);
}

.option-btn.selected {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(232, 160, 191, 0.12), rgba(162, 155, 254, 0.08));
  box-shadow: 0 2px 16px rgba(232, 160, 191, 0.2);
  animation: selectPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.option-btn.selected .option-check {
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  border-color: transparent;
  color: white;
  animation: checkPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.option-btn.selected .option-emoji {
  transform: scale(1.1);
}

@keyframes selectPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

@keyframes checkPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Ripple effect on click */
.option-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 160, 191, 0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* Slide animations */
.question-slide.slide-out-left {
  animation: slideOutLeft 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.question-slide.slide-out-right {
  animation: slideOutRight 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.question-slide.slide-in-right {
  animation: slideInRight 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.question-slide.slide-in-left {
  animation: slideInLeft 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(-60px) scale(0.96); }
}
@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(60px) scale(0.96); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Contact form */
.contact-card {
  text-align: center;
}

.contact-emoji {
  font-size: 50px;
  display: block;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.contact-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-form {
  max-width: 360px;
  margin: 0 auto;
}

.input-group {
  margin-bottom: 18px;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.input-group input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(232, 160, 191, 0.2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.input-group input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(232, 160, 191, 0.12);
}

.input-group input::placeholder {
  color: #ccc;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple-light) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232, 160, 191, 0.4);
  font-family: 'Inter', sans-serif;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 160, 191, 0.5);
}

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

.privacy-note {
  font-size: 0.75rem;
  color: #bbb;
  margin-top: 16px;
  line-height: 1.4;
}

/* ========== RESULT ========== */
.result-container {
  min-height: 100vh;
  position: relative;
  padding: 20px;
}

.result-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, color-mix(in srgb, var(--archetype-color) 20%, transparent) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(108, 92, 231, 0.12) 0%, transparent 50%),
    var(--pink-light);
  z-index: 0;
}

.result-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.result-hero-img {
  width: 100%;
  max-width: 320px;
  margin: 20px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 50px color-mix(in srgb, var(--archetype-color) 35%, transparent);
  animation: fadeUp 0.5s ease-out;
  position: relative;
}

.result-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.result-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--archetype-color) 20%, transparent) 100%);
  pointer-events: none;
}

.result-header {
  text-align: center;
  padding: 24px 20px 30px;
  animation: fadeUp 0.6s ease-out;
}

.result-emoji-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--archetype-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--archetype-color) 40%, transparent);
  animation: pulse 2s ease-in-out infinite;
}

.result-emoji {
  font-size: 45px;
}

.result-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.result-subtitle {
  color: var(--archetype-color);
  font-size: 1rem;
  font-weight: 500;
}

.result-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: fadeUp 0.6s ease-out backwards;
}

.result-card:nth-child(2) { animation-delay: 0.1s; }
.result-card:nth-child(3) { animation-delay: 0.2s; }
.result-card:nth-child(4) { animation-delay: 0.3s; }
.result-card:nth-child(5) { animation-delay: 0.4s; }

.result-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text);
}

.result-trait {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.result-trait:last-child {
  border-bottom: none;
}

.trait-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--archetype-color);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Scores chart */
.scores-chart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.score-label {
  font-size: 0.8rem;
  width: 120px;
  flex-shrink: 0;
  color: var(--text);
}

.score-bar-bg {
  flex: 1;
  height: 8px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  min-width: 18px;
  text-align: right;
}

/* Tip card */
.tip-card {
  background: linear-gradient(135deg, rgba(253, 242, 248, 0.9), rgba(240, 230, 255, 0.9));
  border: 1px solid rgba(232, 160, 191, 0.2);
}

.tip-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.email-card {
  text-align: center;
}

.email-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.result-actions {
  text-align: center;
  margin-top: 24px;
}

.btn-retry {
  display: inline-block;
  padding: 14px 32px;
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-retry:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.result-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: #bbb;
  margin-top: 24px;
  line-height: 1.5;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px color-mix(in srgb, var(--archetype-color, #e8a0bf) 30%, transparent); }
  50% { box-shadow: 0 8px 40px color-mix(in srgb, var(--archetype-color, #e8a0bf) 50%, transparent); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  .landing-card {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .landing-hero-img {
    width: 150px;
    height: 150px;
    margin-bottom: -30px;
  }

  .landing-card {
    padding: 50px 24px 40px;
  }

  .landing-title {
    font-size: 1.75rem;
  }

  .result-hero-img {
    max-width: 250px;
  }

  .landing-features {
    gap: 16px;
  }

  .archetypes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .archetypes-preview-title {
    font-size: 1.4rem;
  }

  .archetype-card-emoji {
    font-size: 22px;
  }

  .archetype-card-info h3 {
    font-size: 0.88rem;
  }

  .archetype-card-info p {
    font-size: 0.7rem;
  }

  .archetype-card-info {
    padding: 12px 10px 16px;
  }

  .landing-cta-card {
    padding: 36px 24px;
  }

  .landing-cta-text {
    font-size: 1.3rem;
  }

  .btn-start-lg {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .question-card {
    padding: 28px 20px;
  }

  .question-text {
    font-size: 1.15rem;
  }

  .option-btn {
    padding: 12px 14px;
    font-size: 0.82rem;
    gap: 10px;
  }

  .option-emoji {
    width: 28px;
    height: 28px;
    font-size: 15px;
    border-radius: 7px;
  }

  .option-check {
    width: 20px;
    height: 20px;
  }

  .option-check svg {
    width: 14px;
    height: 14px;
  }

  .question-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
    border-radius: 12px;
  }

  .result-title {
    font-size: 1.6rem;
  }

  .result-card {
    padding: 22px 18px;
  }

  .score-label {
    width: 95px;
    font-size: 0.7rem;
  }

  .questions-wrapper {
    padding: 68px 14px 30px;
  }
}
