/* ========================================
   Marriage Reset — Full Stylesheet
   Tailwind palette as CSS custom properties
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #fdfcf8;
  color: #2d251e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
::selection { background-color: #c7d9cf; color: #243a30; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input { font: inherit; }
ul, ol { list-style: none; }

/* --- Color Tokens --- */
:root {
  --cream-50: #fdfcf8; --cream-100: #faf7f0; --cream-200: #f5efe1; --cream-300: #ede3cc;
  --sage-50: #f4f7f5; --sage-100: #e3ece6; --sage-200: #c7d9cf; --sage-300: #a0c0b1;
  --sage-400: #7ba892; --sage-500: #5c8a73; --sage-600: #466e5a; --sage-700: #385847;
  --sage-800: #2d4639; --sage-900: #243a30;
  --warm-50: #faf8f6; --warm-100: #f2ede8; --warm-200: #e5dcd3; --warm-300: #d4c6ba;
  --warm-400: #b8a595; --warm-500: #9c8775; --warm-600: #7d6a5a; --warm-700: #5e4f42;
  --warm-800: #43382e; --warm-900: #2d251e;
  --sky-50: #f0f6f8; --sky-100: #dae9ee; --sky-200: #b8d3de; --sky-300: #88b5c8;
  --sky-400: #5a93af; --sky-500: #3d7795; --sky-600: #2f5e7a; --sky-700: #264c64;
  --sky-800: #1f3d51; --sky-900: #162d3d;
  --accent-50: #fef5f0; --accent-100: #fde8de; --accent-200: #fbcfbc; --accent-300: #f7ab91;
  --accent-400: #f08366; --accent-500: #e86544; --accent-600: #d44e2a; --accent-700: #b03d20;
  --accent-800: #8a321c; --accent-900: #6b2817;
}

/* --- Font --- */
.font-serif { font-family: 'Fraunces', Georgia, serif; }

/* --- Layout Utilities --- */
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-6xl { max-width: 1152px; }
.max-w-md { max-width: 448px; }
.max-w-xl { max-width: 576px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-balance { text-wrap: balance; }

/* --- Display & Flex --- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-8 { gap: 2rem; }

/* --- Spacing --- */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-12 { padding-top: 3rem; }
.pt-32 { padding-top: 8rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pl-12 { padding-left: 3rem; }
.pr-4 { padding-right: 1rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.ml-2 { margin-left: 0.5rem; }
.-mt-1 { margin-top: -0.25rem; }

/* --- Sizing --- */
.w-1 { width: 0.25rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }
.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-64 { height: 16rem; }
.min-w-0 { min-width: 0; }

/* --- Typography --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.-mt-1 { margin-top: -0.25rem; }
.tabular-nums { font-variant-numeric: tabular-nums; }

/* --- Colors --- */
.bg-cream-50 { background-color: var(--cream-50); }
.bg-cream-100 { background-color: var(--cream-100); }
.bg-sage-50 { background-color: var(--sage-50); }
.bg-sage-100 { background-color: var(--sage-100); }
.bg-sage-200 { background-color: var(--sage-200); }
.bg-sage-300 { background-color: var(--sage-300); }
.bg-sage-500 { background-color: var(--sage-500); }
.bg-sage-600 { background-color: var(--sage-600); }
.bg-sage-700 { background-color: var(--sage-700); }
.bg-sage-900 { background-color: var(--sage-900); }
.bg-warm-100 { background-color: var(--warm-100); }
.bg-warm-200 { background-color: var(--warm-200); }
.bg-sky-50 { background-color: var(--sky-50); }
.bg-sky-100 { background-color: var(--sky-100); }
.bg-sky-400 { background-color: var(--sky-400); }
.bg-accent-50 { background-color: var(--accent-50); }
.bg-accent-100 { background-color: var(--accent-100); }
.bg-accent-500 { background-color: var(--accent-500); }
.bg-white { background-color: #fff; }
.bg-white\/60 { background-color: rgba(255,255,255,0.6); }
.bg-cream-50\/10 { background-color: rgba(253,252,248,0.1); }
.bg-cream-50\/50 { background-color: rgba(253,252,248,0.5); }
.bg-cream-50\/90 { background-color: rgba(253,252,248,0.9); }
.bg-sage-50\/50 { background-color: rgba(244,247,245,0.5); }
.bg-sage-200\/30 { background-color: rgba(199,217,207,0.3); }
.bg-sage-500\/20 { background-color: rgba(92,138,115,0.2); }
.bg-sky-100\/40 { background-color: rgba(218,233,238,0.4); }
.bg-sky-500\/10 { background-color: rgba(61,119,149,0.1); }
.bg-cream-50\/5 { background-color: rgba(253,252,248,0.05); }

/* Text colors */
.text-cream-50 { color: var(--cream-50); }
.text-cream-100 { color: var(--cream-100); }
.text-cream-200 { color: var(--cream-200); }
.text-cream-300 { color: var(--cream-300); }
.text-sage-300 { color: var(--sage-300); }
.text-sage-500 { color: var(--sage-500); }
.text-sage-600 { color: var(--sage-600); }
.text-sage-700 { color: var(--sage-700); }
.text-sage-800 { color: var(--sage-800); }
.text-warm-400 { color: var(--warm-400); }
.text-warm-500 { color: var(--warm-500); }
.text-warm-600 { color: var(--warm-600); }
.text-warm-700 { color: var(--warm-700); }
.text-warm-800 { color: var(--warm-800); }
.text-warm-900 { color: var(--warm-900); }
.text-sky-700 { color: var(--sky-700); }
.text-accent-600 { color: var(--accent-600); }
.text-accent-700 { color: var(--accent-700); }
.text-accent-800 { color: var(--accent-800); }

/* --- Borders --- */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-warm-200 { border-color: var(--warm-200); }
.border-sage-200 { border-color: var(--sage-200); }
.border-sage-300 { border-color: var(--sage-300); }
.border-sky-200 { border-color: var(--sky-200); }
.border-sky-300 { border-color: var(--sky-300); }
.border-accent-200 { border-color: var(--accent-200); }
.border-accent-300 { border-color: var(--accent-300); }
.border-accent-400 { border-color: var(--accent-400); }
.border-cream-50\/10 { border-color: rgba(253,252,248,0.1); }
.border-cream-50\/20 { border-color: rgba(253,252,248,0.2); }
.border-white\/60 { border-color: rgba(255,255,255,0.6); }
.border-sage-500 { border-color: var(--sage-500); }
.border-sage-400 { border-color: var(--sage-400); }
.border-accent-500 { border-color: var(--accent-500); }

/* --- Border Radius --- */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* --- Shadows --- */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

/* --- Component Shadows --- */
.section-shadow {
  box-shadow: 0 1px 3px rgba(45,70,57,0.04), 0 8px 24px rgba(45,70,57,0.06);
}
.section-shadow-lg {
  box-shadow: 0 4px 12px rgba(45,70,57,0.06), 0 20px 48px rgba(45,70,57,0.1);
}

/* --- Glass Card --- */
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
}

/* --- Transitions --- */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-1000 { transition-duration: 1000ms; }
.ease-out { transition-timing-function: cubic-bezier(0,0,0.2,1); }

/* --- Hover Effects --- */
.hover\:bg-sage-50:hover { background-color: var(--sage-50); }
.hover\:bg-sage-100:hover { background-color: var(--sage-100); }
.hover\:bg-sage-700:hover { background-color: var(--sage-700); }
.hover\:bg-cream-100:hover { background-color: var(--cream-100); }
.hover\:bg-sage-50\/50:hover { background-color: rgba(244,247,245,0.5); }
.hover\:text-sage-800:hover { color: var(--sage-800); }
.hover\:text-warm-800:hover { color: var(--warm-800); }
.hover\:text-warm-900:hover { color: var(--warm-900); }
.hover\:border-sage-400:hover { border-color: var(--sage-400); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-2px); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(4px); }

/* --- Disabled State --- */
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:opacity-70:disabled { opacity: 0.7; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* --- Form Inputs --- */
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border-radius: 0.75rem;
  border: 2px solid var(--warm-200);
  background-color: var(--cream-50);
  color: var(--warm-800);
  transition: border-color 0.2s;
  outline: none;
  font-size: 1rem;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  border-color: var(--sage-500);
}
input::placeholder { color: var(--warm-400); }
input.input-error { border-color: var(--accent-400); }
input.input-error:focus { border-color: var(--accent-500); }

/* --- Button Base --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--sage-600);
  color: var(--cream-50);
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background-color: var(--sage-700);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-primary .icon-arrow { transition: transform 0.3s; }
.btn-primary:hover .icon-arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-600);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--warm-900); }

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.25rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* --- Scrollbar --- */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-fade-in-scale { animation: fadeInScale 0.5s ease-out forwards; }
.animate-slide-in { animation: slideIn 0.4s ease-out forwards; }
.animate-slide-in-left { animation: slideInLeft 0.4s ease-out forwards; }
.animate-count-up { animation: countUp 1s ease-out forwards; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* --- Backdrop --- */
.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* --- Gradient (transparent layers — from/via/to set color) --- */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, transparent, transparent); }
.bg-gradient-to-r { background-image: linear-gradient(to right, transparent, transparent); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, transparent, transparent); }
.from-sage-50 { --tw-gradient-from: var(--sage-50); background-image: linear-gradient(to bottom, var(--sage-50), transparent); }
.from-sage-700 { --tw-gradient-from: var(--sage-700); }
.to-cream-50 { --tw-gradient-to: var(--cream-50); }
.to-sage-50 { --tw-gradient-to: var(--sage-50); }
.to-sage-100 { --tw-gradient-to: var(--sage-100); }
.to-sage-900 { --tw-gradient-to: var(--sage-900); }
.via-cream-50 { --tw-gradient-via: var(--cream-50); }

/* Actual gradient overrides for common combos */
.hero-gradient { background: linear-gradient(to bottom, var(--sage-50), var(--cream-50), var(--sage-50)); }
.lead-gradient { background: linear-gradient(to bottom right, var(--sage-50), var(--cream-50), var(--sage-100)); }
.protocol-gradient { background: linear-gradient(to bottom right, var(--sage-700), var(--sage-900)); }

/* --- Progress Bar --- */
.progress-bar {
  height: 0.5rem;
  background-color: var(--warm-200);
  border-radius: 9999px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background-color: var(--sage-500);
  border-radius: 9999px;
  transition: width 0.5s ease-out;
}

/* --- Score Bar --- */
.score-bar {
  height: 0.5rem;
  background-color: var(--warm-100);
  border-radius: 9999px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 1s ease-out;
}
.score-bar-fill.crisis { background-color: var(--accent-500); }
.score-bar-fill.warning { background-color: var(--sky-400); }
.score-bar-fill.healthy { background-color: var(--sage-500); }

/* --- Section Indicator --- */
.section-indicator {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
}
.section-dot {
  height: 0.375rem;
  border-radius: 9999px;
  transition: all 0.3s;
  flex: 1;
}
.section-dot.active { flex: 2; background-color: var(--sage-500); }
.section-dot.past { flex: 1; background-color: var(--sage-300); }
.section-dot.future { flex: 1; background-color: var(--warm-200); }

/* --- Question Card --- */
.question-card {
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid var(--warm-200);
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .question-card { padding: 2rem; }
}

/* --- Rating Option --- */
.rating-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 2px solid var(--warm-200);
  background: #fff;
  transition: all 0.3s;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 640px) {
  .rating-option { padding: 1.25rem 1.5rem; }
}
.rating-option:hover { border-color: var(--sage-400); background-color: rgba(244,247,245,0.5); }
.rating-option.selected { border-color: var(--sage-600); background-color: var(--sage-50); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.rating-option + .rating-option { margin-top: 0.75rem; }

.rating-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: all 0.3s;
  background-color: var(--warm-100);
  color: var(--warm-600);
}
.rating-option:hover .rating-circle { background-color: var(--sage-100); color: var(--sage-700); }
.rating-option.selected .rating-circle {
  background-color: var(--sage-600);
  color: var(--cream-50);
  transform: scale(1.1);
}

.rating-label {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--warm-700);
  transition: color 0.3s;
}
.rating-option.selected .rating-label { color: var(--sage-800); }

/* --- CTA Banner --- */
.cta-gradient {
  padding: 1.5rem;
  background: linear-gradient(to right, var(--sage-600), var(--sage-700));
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(45,70,57,0.04), 0 8px 24px rgba(45,70,57,0.06);
}
.cta-sage {
  padding: 1.5rem;
  background-color: var(--sage-50);
  border-radius: 1rem;
  border: 1px solid var(--sage-200);
  text-align: center;
  box-shadow: 0 1px 3px rgba(45,70,57,0.04), 0 8px 24px rgba(45,70,57,0.06);
}
.cta-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--cream-50);
  color: var(--sage-800);
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.cta-btn-light:hover { background-color: var(--cream-100); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.cta-btn-light .icon-arrow { transition: transform 0.3s; }
.cta-btn-light:hover .icon-arrow { transform: translateX(4px); }

.cta-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--sage-600);
  color: var(--cream-50);
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.cta-btn-dark:hover { background-color: var(--sage-700); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-2px); }
.cta-btn-dark .icon-arrow { transition: transform 0.3s; }
.cta-btn-dark:hover .icon-arrow { transform: translateX(4px); }

/* --- Phase Cards --- */
.phase-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid;
}
.phase-card.sky { background-color: var(--sky-50); border-color: var(--sky-200); }
.phase-card.accent { background-color: var(--accent-50); border-color: var(--accent-200); }
.phase-card.sage { background-color: var(--sage-50); border-color: var(--sage-200); }

.phase-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.phase-badge.sky { background-color: var(--sky-100); color: var(--sky-700); }
.phase-badge.accent { background-color: var(--accent-100); color: var(--accent-700); }
.phase-badge.sage { background-color: var(--sage-100); color: var(--sage-700); }

/* --- Testimonial Card --- */
.testimonial-card {
  padding: 1.25rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--warm-200);
  box-shadow: 0 1px 3px rgba(45,70,57,0.04), 0 8px 24px rgba(45,70,57,0.06);
}

/* --- Feature Card (What You Get) --- */
.feature-card {
  padding: 1.25rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--warm-200);
  box-shadow: 0 1px 3px rgba(45,70,57,0.04), 0 8px 24px rgba(45,70,57,0.06);
}

/* --- Steps --- */
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--cream-50);
  border-radius: 0.75rem;
}
.step-number {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: var(--sage-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-number span {
  font-size: 0.75rem;
  font-family: 'Fraunces', Georgia, serif;
  color: var(--sage-700);
}

/* --- What's Inside Grid (Protocol CTA) --- */
.protocol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  text-align: left;
}
@media (min-width: 640px) { .protocol-grid { grid-template-columns: repeat(2, 1fr); } }
.protocol-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(253,252,248,0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(253,252,248,0.1);
}
.protocol-item svg { color: var(--sage-300); flex-shrink: 0; }
.protocol-item span { color: var(--cream-100); font-size: 0.875rem; }

/* --- Error Message --- */
.error-msg {
  color: var(--accent-600);
  font-size: 0.875rem;
  margin-top: 0.375rem;
}

/* --- Info Box (Results) --- */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.info-box svg { flex-shrink: 0; margin-top: 2px; }

/* --- Guarantee Card --- */
.guarantee-card {
  padding: 2rem;
  background-color: var(--cream-100);
  border-radius: 1.5rem;
  border: 2px solid var(--sage-300);
  text-align: center;
}

/* --- Quick Win Card --- */
.quick-win-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid var(--warm-200);
  box-shadow: 0 4px 12px rgba(45,70,57,0.06), 0 20px 48px rgba(45,70,57,0.1);
}

/* --- Score Preview Card --- */
.score-preview {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid var(--warm-200);
  box-shadow: 0 4px 12px rgba(45,70,57,0.06), 0 20px 48px rgba(45,70,57,0.1);
  margin-bottom: 1.5rem;
}

/* --- Section Breakdown Card --- */
.breakdown-card {
  padding: 1.25rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--warm-200);
  box-shadow: 0 1px 3px rgba(45,70,57,0.04), 0 8px 24px rgba(45,70,57,0.06);
}

/* --- Status Badge --- */
.status-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
  margin-top: 0.125rem;
}

/* --- Background Blur Circles (Hero) --- */
.blur-circle-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(199,217,207,0.3);
  border-radius: 9999px;
  filter: blur(64px);
}
.blur-circle-2 {
  position: absolute;
  top: 10rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(218,233,238,0.4);
  border-radius: 9999px;
  filter: blur(64px);
}

/* --- Header Scroll State --- */
.main-header { background-color: transparent; padding-top: 1.25rem; padding-bottom: 1.25rem; }
.main-header.header-scrolled {
  background-color: rgba(253,252,248,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* --- Misc --- */
.inline-block { display: inline-block; }
.-mt-1 { margin-top: -0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* --- Responsive --- */
@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:p-8 { padding: 2rem; }
}
@media (min-width: 768px) {
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
