.regen-page {
  padding-bottom: 22px;
}

.regen-assessment {
  --regen-ink: #2c1c15;
  --regen-soft: #60463b;
  --regen-muted: #8b776b;
  --regen-cream: #f8f1e7;
  --regen-ivory: #fffaf1;
  --regen-panel: rgba(255, 250, 241, 0.78);
  --regen-panel-strong: rgba(255, 252, 246, 0.94);
  --regen-line: rgba(168, 128, 92, 0.28);
  --regen-gold: #b7945e;
  --regen-gold-soft: rgba(183, 148, 94, 0.18);
  --regen-brown: #3a241b;
  --regen-shadow: 0 28px 70px rgba(55, 32, 21, 0.13);
  min-height: 100vh;
  color: var(--regen-ink);
}

.regen-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.regen-topbar ul {
  align-items: center;
}

.regen-nav-button {
  border: 0;
  padding: 0;
  color: var(--accent);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.regen-nav-button:hover,
.regen-nav-button:focus-visible {
  color: var(--accent-soft);
  outline: none;
}

.regen-link,
.regen-button {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(58, 36, 27, 0.24);
  padding: 0.72rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.regen-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--regen-brown);
  background: rgba(255, 255, 255, 0.5);
}

.regen-button {
  color: var(--regen-brown);
  background: rgba(255, 255, 255, 0.56);
}

.regen-link.primary,
.regen-button.primary {
  border-color: var(--regen-brown);
  color: #fff7e9;
  background: var(--regen-brown);
  box-shadow: 0 12px 28px rgba(58, 36, 27, 0.18);
}

.regen-link:hover,
.regen-button:hover,
.regen-option:hover,
.regen-card-button:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 148, 94, 0.72);
  box-shadow: 0 16px 32px rgba(58, 36, 27, 0.12);
}

.regen-link.primary:hover,
.regen-button.primary:hover {
  background: #6b5030;
  border-color: #6b5030;
}

.regen-button:focus-visible,
.regen-link:focus-visible,
.regen-option:focus-visible,
.regen-card-button:focus-visible,
.regen-input:focus-visible {
  outline: 3px solid rgba(183, 148, 94, 0.42);
  outline-offset: 3px;
}

.regen-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
  box-shadow: none;
}

.regen-module-hero {
  display: block;
  text-align: left;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.72), rgba(239, 224, 211, 0.38)),
    rgba(255, 255, 255, 0.36);
  box-shadow: var(--glass-shadow-soft);
  backdrop-filter: blur(16px) saturate(128%);
  -webkit-backdrop-filter: blur(16px) saturate(128%);
}

.regen-module-hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-sans);
  font-style: normal;
  text-transform: none;
  font-size: clamp(2rem, 4.8vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--regen-ink);
}

.regen-subhead {
  max-width: 650px;
  margin: 22px 0 0 !important;
  text-align: left;
  font-size: clamp(1.02rem, 1.9vw, 1.3rem);
  line-height: 1.45;
  color: var(--regen-soft);
}

.regen-supporting {
  max-width: 620px;
  margin: 14px 0 0 !important;
  text-align: left;
  color: var(--regen-muted);
  font-size: 1rem;
}

.regen-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0 0;
}

.regen-disclaimer {
  max-width: 610px;
  margin: 14px 0 0 !important;
  text-align: left;
  color: var(--regen-muted);
  font-size: 0.86rem;
}

.regen-landing-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.regen-clinical-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
}

.regen-clinical-panel::before {
  display: none;
}

.regen-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.regen-panel-title {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--regen-soft);
}

.regen-panel-subtitle {
  margin: 8px 0 0;
  color: var(--regen-muted);
  font-size: 0.92rem;
}

.regen-mini-score {
  width: 92px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--regen-brown);
  background:
    radial-gradient(circle at center, var(--regen-ivory) 0 55%, transparent 56%),
    conic-gradient(var(--regen-gold) 0 74%, rgba(58, 36, 27, 0.1) 74% 100%);
  box-shadow: inset 0 0 0 1px rgba(183, 148, 94, 0.22);
}

.regen-mini-score strong {
  font-size: 1.45rem;
}

.regen-scan {
  position: relative;
  display: grid;
  place-items: center;
  margin: 20px auto;
  width: min(100%, 310px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.94) 0 28%, rgba(241, 221, 196, 0.6) 29% 30%, transparent 31%),
    radial-gradient(circle at center, transparent 0 56%, rgba(183, 148, 94, 0.2) 57% 58%, transparent 59%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.54), rgba(217, 190, 165, 0.28));
}

.regen-scan::before,
.regen-scan::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.regen-scan::before {
  inset: 14%;
  border: 1px solid rgba(58, 36, 27, 0.16);
}

.regen-scan::after {
  inset: 25%;
  border: 1px dashed rgba(183, 148, 94, 0.5);
  animation: regenRotate 18s linear infinite;
}

.regen-head-map {
  position: relative;
  z-index: 1;
  width: 48%;
  aspect-ratio: 0.74;
  border-radius: 52% 52% 44% 44%;
  background:
    linear-gradient(180deg, rgba(58, 36, 27, 0.05), rgba(183, 148, 94, 0.12)),
    rgba(255, 250, 241, 0.8);
  border: 1px solid rgba(58, 36, 27, 0.28);
}

.regen-head-map span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 1px;
  background: rgba(58, 36, 27, 0.22);
}

.regen-head-map span:nth-child(1) { top: 19%; }
.regen-head-map span:nth-child(2) { top: 38%; width: 48%; }
.regen-head-map span:nth-child(3) { top: 58%; width: 34%; }

.regen-scan-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.regen-scan-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(168, 128, 92, 0.18);
  padding-top: 10px;
  color: var(--regen-soft);
  font-size: 0.9rem;
}

.regen-scan-list b {
  color: var(--regen-brown);
  font-weight: 400;
}

.regen-workspace {
  padding: 0 0 54px;
}

.regen-assessment-panel,
.regen-results-panel,
.regen-processing-panel {
  padding: clamp(16px, 3vw, 30px);
}

.regen-progress-row {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.regen-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--regen-muted);
  font-size: 0.88rem;
}

.regen-progress-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(58, 36, 27, 0.1);
}

.regen-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7a5a32, var(--regen-gold));
  transition: width 0.35s ease;
}

.regen-step-head h2,
.regen-results-head h2,
.regen-processing-panel h2,
.regen-lead-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.regen-step-head p,
.regen-results-head p,
.regen-processing-panel p,
.regen-lead-card p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--regen-soft);
}

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

.regen-option {
  position: relative;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 168px;
  width: 100%;
  border: 1px solid var(--regen-line);
  border-radius: 18px;
  padding: 16px;
  text-align: left;
  color: var(--regen-ink);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.72), rgba(239, 224, 211, 0.44)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 8px 18px rgba(74, 48, 33, 0.06);
}

.regen-option img {
  width: 92px;
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.82;
}

.regen-option.no-illustration {
  grid-template-columns: 1fr;
  min-height: 140px;
}

.regen-option strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 400;
}

.regen-option small {
  display: block;
  margin-top: 8px;
  color: var(--regen-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.regen-option[aria-pressed="true"],
.regen-card-button[aria-pressed="true"],
.regen-zone[aria-pressed="true"] {
  border-color: rgba(183, 148, 94, 0.95);
  box-shadow: 0 16px 34px rgba(183, 148, 94, 0.17), inset 0 0 0 1px rgba(183, 148, 94, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.96), rgba(245, 230, 207, 0.78)),
    var(--regen-gold-soft);
}

.regen-option[aria-pressed="true"]::after,
.regen-card-button[aria-pressed="true"]::after {
  content: "Selected";
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(58, 36, 27, 0.88);
  color: #fff7e9;
  font-size: 0.72rem;
}

.regen-concern-field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border: 1px solid var(--regen-line);
  border-radius: 18px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(246, 231, 211, 0.54)),
    rgba(255, 250, 241, 0.7);
}

.regen-concern-field span {
  color: var(--regen-brown);
  font-size: 1.05rem;
}

.regen-concern-field small {
  color: var(--regen-soft);
  line-height: 1.45;
}

.regen-textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.48;
}

.regen-scalp-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.regen-scalp-card {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--regen-line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.95), transparent 34%),
    rgba(255, 250, 241, 0.78);
  overflow: hidden;
}

.regen-scalp-figure {
  position: absolute;
  left: 50%;
  top: 48px;
  width: min(78%, 340px);
  height: auto;
  transform: translateX(-50%);
  opacity: 0.88;
  pointer-events: none;
}

.regen-zone {
  position: absolute;
  z-index: 2;
  min-width: 118px;
  min-height: 42px;
  border: 1px solid rgba(58, 36, 27, 0.22);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.84);
  color: var(--regen-brown);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  cursor: pointer;
}

.zone-front { top: 38px; left: 50%; transform: translateX(-50%); }
.zone-temples { top: 150px; left: 16px; }
.zone-top { top: 184px; left: 50%; transform: translateX(-50%); }
.zone-crown { bottom: 98px; left: 50%; transform: translateX(-50%); }
.zone-diffuse { right: 16px; top: 150px; }

.regen-pattern-note {
  margin-top: 14px;
  min-height: 26px;
  color: var(--regen-soft);
}

.regen-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.regen-card-button {
  position: relative;
  min-height: 92px;
  border: 1px solid var(--regen-line);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
  background: rgba(255, 250, 244, 0.72);
  color: var(--regen-ink);
  cursor: pointer;
}

.regen-card-button strong {
  display: block;
  font-weight: 400;
}

.regen-card-button small {
  display: block;
  margin-top: 6px;
  color: var(--regen-muted);
}

.regen-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.regen-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.regen-pill {
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--regen-line);
  padding: 0.7rem 1rem;
  color: var(--regen-brown);
  background: rgba(255, 250, 241, 0.78);
  cursor: pointer;
}

.regen-pill[aria-pressed="true"] {
  background: var(--regen-brown);
  border-color: var(--regen-brown);
  color: #fff7e9;
}

.regen-nav-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.regen-lead-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 34px);
}

.regen-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.regen-form-grid,
.regen-text-prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.regen-form label {
  display: grid;
  gap: 7px;
  color: var(--regen-soft);
  font-size: 0.9rem;
}

.regen-input {
  font-size: 0.92rem;
}

.regen-inline-note {
  max-width: 680px;
  margin: 8px 0 14px;
  color: var(--regen-muted);
  font-size: 0.9rem;
}

.regen-status {
  min-height: 24px;
  color: var(--regen-soft);
}

.regen-status[data-tone="bad"] {
  color: #8c2c22;
}

.regen-processing-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.regen-analysis-orb {
  position: relative;
  width: 170px;
  aspect-ratio: 1;
  margin: 26px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 250, 241, 0.98) 0 42%, transparent 43%),
    conic-gradient(var(--regen-gold) 0 25%, rgba(58, 36, 27, 0.1) 25% 100%);
  animation: regenPulse 1.8s ease-in-out infinite;
}

.regen-profile-animation {
  width: min(100%, 560px);
  height: clamp(220px, 45vw, 330px);
  margin: 16px auto 22px;
  overflow: hidden;
}

.regen-profile-animation svg {
  width: 100% !important;
  height: 100% !important;
}

.regen-checklist {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.regen-checklist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--regen-line);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--regen-muted);
  background: rgba(255, 250, 241, 0.72);
}

.regen-checklist li.complete {
  color: var(--regen-brown);
  border-color: rgba(183, 148, 94, 0.66);
}

.regen-check-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: var(--regen-gold);
}

.regen-check-lottie {
  display: block;
  width: 34px;
  height: 34px;
}

.regen-loading-spinner {
  display: block;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(183, 148, 94, 0.24);
  border-top-color: var(--regen-gold);
  border-radius: 999px;
  animation: regenSpin 0.8s linear infinite;
}

.regen-results-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.regen-result-card {
  border: 1px solid var(--regen-line);
  border-radius: 18px;
  padding: 20px;
  background: var(--regen-panel-strong);
  box-shadow: 0 16px 34px rgba(58, 36, 27, 0.08);
  opacity: 0;
  transform: translateY(16px);
  animation: regenReveal 0.55s ease forwards;
}

.regen-result-card:nth-child(2) { animation-delay: 0.12s; }
.regen-result-card:nth-child(3) { animation-delay: 0.22s; }
.regen-result-card:nth-child(4) { animation-delay: 0.32s; }

.regen-score-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  max-width: 960px;
  margin-inline: auto;
}

.regen-score-block {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.regen-score-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.regen-result-label {
  display: block;
  margin-bottom: 0;
  color: var(--regen-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.regen-info-button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(168, 128, 92, 0.38);
  border-radius: 50%;
  color: var(--regen-brown);
  background: rgba(255, 250, 241, 0.84);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(58, 36, 27, 0.08);
}

.regen-info-button:hover,
.regen-info-button:focus-visible {
  border-color: rgba(183, 148, 94, 0.8);
  outline: none;
  box-shadow: 0 0 0 4px rgba(183, 148, 94, 0.16);
}

.regen-score-gauge {
  --score-color: #b7945e;
  --score-track: rgba(58, 36, 27, 0.12);
  --score-glow: rgba(183, 148, 94, 0.22);
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  margin: 12px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 251, 244, 0.98) 0 50%, transparent 51%),
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.9), transparent 34%),
    conic-gradient(var(--score-color) var(--score-angle), var(--score-track) 0),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(229, 206, 181, 0.36));
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.84),
    inset 0 -10px 20px rgba(73, 45, 31, 0.08),
    0 18px 42px var(--score-glow),
    0 10px 24px rgba(58, 36, 27, 0.1);
  overflow: hidden;
}

.regen-score-gauge::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.78),
    0 0 0 1px rgba(122, 78, 57, 0.06);
  pointer-events: none;
}

.regen-score-gauge::after {
  content: "";
  position: absolute;
  inset: 18px 36px auto;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  filter: blur(0.2px);
  pointer-events: none;
}

.regen-score-gauge.is-green {
  --score-color: #5d8d66;
  --score-glow: rgba(93, 141, 102, 0.26);
}

.regen-score-gauge.is-amber {
  --score-color: #bd8b3f;
  --score-glow: rgba(189, 139, 63, 0.28);
}

.regen-score-gauge.is-red {
  --score-color: #a64c42;
  --score-glow: rgba(166, 76, 66, 0.24);
}

.regen-score-gauge > div {
  position: relative;
  z-index: 1;
}

.regen-score-gauge strong {
  font-size: 2.4rem;
  font-weight: 400;
}

.regen-score-gauge span {
  color: var(--regen-muted);
}

.regen-score-label {
  display: block;
  color: var(--regen-brown);
  font-size: 1.08rem;
  font-weight: 400;
}

.regen-score-caption {
  max-width: 420px;
  margin: 8px auto 0;
  color: var(--regen-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.regen-score-info-panel {
  width: min(100%, 620px);
  margin-top: 18px;
  border: 1px solid rgba(183, 148, 94, 0.34);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  background: rgba(255, 250, 241, 0.82);
}

.regen-score-info-panel > strong {
  display: block;
  color: var(--regen-brown);
  font-weight: 500;
}

.regen-status-brief h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  text-align: center;
}

.regen-status-brief > .regen-result-label {
  margin-bottom: 10px;
  text-align: center;
}

.regen-readable-list {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--regen-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.regen-readable-list li {
  position: relative;
  padding-left: 22px;
}

.regen-readable-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--regen-gold);
}

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

.regen-personal-insight {
  margin-top: 16px;
  border: 1px solid rgba(183, 148, 94, 0.34);
  border-radius: 16px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.92), rgba(245, 230, 207, 0.58)),
    rgba(255, 250, 241, 0.72);
}

.regen-personal-insight strong {
  display: block;
  color: var(--regen-brown);
  font-weight: 400;
}

.regen-personal-insight p {
  margin: 8px 0 0;
  color: var(--regen-soft);
  font-size: 0.94rem;
  line-height: 1.54;
}

.regen-brief-grid > div {
  border: 1px solid rgba(168, 128, 92, 0.24);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 250, 241, 0.74);
}

.regen-brief-grid strong {
  display: block;
  color: var(--regen-brown);
  font-weight: 400;
}

.regen-brief-grid p {
  margin: 8px 0 0;
  color: var(--regen-soft);
  font-size: 0.92rem;
  line-height: 1.52;
}

.regen-brief-grid .regen-readable-list {
  font-size: 0.91rem;
}

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

.regen-accordion {
  border: 1px solid var(--regen-line);
  border-radius: 18px;
  background: var(--regen-panel-strong);
  box-shadow: 0 12px 26px rgba(58, 36, 27, 0.06);
  overflow: hidden;
}

.regen-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.regen-accordion summary::-webkit-details-marker {
  display: none;
}

.regen-accordion summary strong {
  display: block;
  color: var(--regen-brown);
  font-size: 1.05rem;
  font-weight: 400;
}

.regen-accordion summary small {
  display: block;
  margin-top: 5px;
  color: var(--regen-soft);
  font-size: 0.88rem;
  line-height: 1.35;
}

.regen-accordion summary:focus-visible {
  outline: 2px solid rgba(183, 148, 94, 0.9);
  outline-offset: -4px;
}

.regen-accordion-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(168, 128, 92, 0.32);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.78);
}

.regen-accordion-icon::before,
.regen-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--regen-brown);
  transform: translate(-50%, -50%);
}

.regen-accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.regen-accordion[open] .regen-accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.regen-accordion-body {
  border-top: 1px solid rgba(168, 128, 92, 0.2);
  padding: 18px 20px 20px;
}

.regen-accordion-body h4 {
  margin: 12px 0 8px;
  color: var(--regen-brown);
  font-size: 1.25rem;
  font-weight: 400;
}

.regen-accordion-body > p {
  color: var(--regen-soft);
  line-height: 1.55;
}

.regen-section-note {
  margin: 0 0 14px !important;
  color: var(--regen-muted) !important;
  font-size: 0.92rem;
}

.regen-timeline-card .regen-readable-list,
.regen-roadmap-card .regen-readable-list {
  font-size: 0.9rem;
}

.regen-plain-card {
  margin-top: 16px;
  border: 1px solid rgba(168, 128, 92, 0.24);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 250, 241, 0.74);
}

.regen-plain-card > strong {
  display: block;
  color: var(--regen-brown);
  font-weight: 500;
}

.regen-contributor-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.regen-bar-row {
  display: grid;
  gap: 6px;
}

.regen-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--regen-soft);
}

.regen-bar-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(58, 36, 27, 0.09);
}

.regen-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7a5a32, var(--regen-gold));
}

.regen-timeline-cards,
.regen-focus-grid,
.regen-roadmap-grid,
.regen-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.regen-focus-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.regen-timeline-card,
.regen-focus-card,
.regen-roadmap-card,
.regen-hairtag-card {
  border: 1px solid rgba(168, 128, 92, 0.24);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 250, 241, 0.72);
}

.regen-timeline-card strong,
.regen-focus-card strong,
.regen-roadmap-card strong {
  display: block;
  font-weight: 400;
  color: var(--regen-brown);
}

.regen-timeline-card p,
.regen-focus-card p,
.regen-roadmap-card p,
.regen-hairtag-card p {
  margin: 8px 0 0;
  color: var(--regen-soft);
  font-size: 0.9rem;
}

.regen-roadmap-card ul {
  margin: 12px 0 0;
  padding-left: 1.05rem;
  color: var(--regen-soft);
}

.regen-cta-card {
  border-color: rgba(183, 148, 94, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 231, 211, 0.8)),
    var(--regen-panel-strong);
}

.regen-cta-card ul {
  margin: 14px 0 0;
  padding-left: 1.05rem;
  color: var(--regen-soft);
}

.regen-footer {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--regen-muted);
  font-size: 0.84rem;
}

.regen-journey-card {
  display: grid;
  align-content: center;
  gap: 12px;
}

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

.regen-mini-steps span {
  border: 1px solid rgba(122, 78, 57, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 250, 244, 0.66);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

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

@keyframes regenPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.04); filter: brightness(1.05); }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .regen-assessment *,
  .regen-assessment *::before,
  .regen-assessment *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 880px) {
  .regen-hero,
  .regen-scalp-grid,
  .regen-score-summary,
  .regen-brief-grid {
    grid-template-columns: 1fr;
  }

  .regen-landing-grid {
    grid-template-columns: 1fr !important;
  }

  .regen-option-grid,
  .regen-card-grid,
  .regen-timeline,
  .regen-timeline-cards,
  .regen-focus-grid,
  .regen-roadmap-grid,
  .regen-cta-grid,
  .regen-form-grid,
  .regen-text-prompt-grid {
    grid-template-columns: 1fr;
  }

  .regen-hero {
    min-height: auto;
    padding-top: 42px;
  }

}

@media (max-width: 620px) {
  .regen-topbar {
    align-items: flex-start;
  }

  .regen-link.hide-mobile {
    display: none;
  }

  .regen-option {
    grid-template-columns: 76px 1fr;
    min-height: 142px;
  }

  .regen-option img {
    width: 74px;
  }

  .regen-scalp-card {
    min-height: 390px;
  }

  .regen-zone {
    min-width: 102px;
    font-size: 0.76rem;
  }
}
