/* ==========================================================================
   CLARKE VITALITY · THRIVE PILLAR STYLES
   Per-pillar accent: var(--pillar-thrive) — deep navy (#4E6B8A).
   Vision-document feel with more breathing room than protocol pillars.
   ========================================================================== */

#panel-thrive {
  --pillar-accent: var(--pillar-thrive);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.thrive-hero {
  padding: var(--s-6) 0 var(--s-7);
  border-bottom: 1px solid var(--ink-border);
  margin-bottom: var(--s-7);
}

.thrive-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-tiny);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--pillar-accent);
  margin-bottom: var(--s-3);
}

.thrive-hero__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}

.thrive-hero__subtitle {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--s-5);
  letter-spacing: 0.01em;
}

.thrive-hero__body {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: var(--s-4);
}

.thrive-hero__anchor {
  display: inline-block;
  padding: var(--s-3) var(--s-4);
  border-left: 2px solid var(--pillar-accent);
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  color: var(--text-primary);
  background: rgba(78, 107, 138, 0.06);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.thrive-section {
  margin-bottom: var(--s-7);
}

.thrive-section-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-tiny);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--pillar-accent);
  margin-bottom: var(--s-2);
}

.thrive-section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.thrive-section-sub {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 740px;
  margin-bottom: var(--s-5);
}

.thrive-subsection__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--pillar-accent);
  margin-bottom: var(--s-3);
  margin-top: var(--s-4);
  font-weight: 600;
}

/* ==========================================================================
   BEST PRACTICES
   ========================================================================== */

.thrive-practices {
  margin-bottom: var(--s-7);
}

.thrive-practice {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--ink-elev);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  padding: var(--s-4);
  margin-bottom: var(--s-3);
  cursor: pointer;
  transition: all 0.2s ease-out;
  position: relative;
}

.thrive-practice:hover {
  border-color: rgba(78, 107, 138, 0.4);
}

.thrive-practice.open {
  border-color: var(--pillar-accent);
}

.thrive-practice__main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--s-4);
  align-items: baseline;
}

.thrive-practice__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.thrive-practice__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--pillar-accent);
  letter-spacing: var(--tracking-med);
}

.thrive-practice__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.thrive-practice__chevron {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--pillar-accent);
  transition: transform 0.2s ease-out;
}

.thrive-practice.open .thrive-practice__chevron {
  transform: rotate(45deg);
}

.thrive-practice__detail {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--ink-line);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.thrive-practice.open .thrive-practice__detail {
  max-height: 500px;
  opacity: 1;
}

/* ==========================================================================
   DECADE MAP - the centerpiece
   ========================================================================== */

.thrive-decades {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.thrive-decade {
  background: var(--ink-elev);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.thrive-decade--current {
  border-color: var(--pillar-accent);
  background: rgba(78, 107, 138, 0.05);
}

.thrive-decade:hover {
  border-color: rgba(78, 107, 138, 0.4);
}

.thrive-decade.open {
  border-color: var(--pillar-accent);
}

.thrive-decade__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-4);
  align-items: center;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--s-4);
  cursor: pointer;
}

.thrive-decade__n {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pillar-accent);
  padding: 2px 8px;
  border: 1px solid var(--pillar-accent);
  border-radius: 2px;
  white-space: nowrap;
}

.thrive-decade__title-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.thrive-decade__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.thrive-decade__status {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.thrive-decade--current .thrive-decade__status {
  color: #8FC78F;
}

.thrive-decade__chevron {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--pillar-accent);
  transition: transform 0.2s ease-out;
}

.thrive-decade.open .thrive-decade__chevron {
  transform: rotate(45deg);
}

.thrive-decade__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.thrive-decade.open .thrive-decade__body {
  max-height: 3000px;
  opacity: 1;
  padding: 0 var(--s-4) var(--s-4);
  border-top: 1px solid var(--ink-line);
}

.thrive-decade__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--pillar-accent);
  line-height: 1.6;
  padding: var(--s-4);
  background: rgba(78, 107, 138, 0.08);
  border-left: 3px solid var(--pillar-accent);
  border-radius: 0 4px 4px 0;
  margin: var(--s-4) 0;
}

.thrive-decade__what {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--s-4);
}

.thrive-decade__priorities {
  margin-bottom: var(--s-4);
}

.thrive-priority {
  padding: var(--s-3);
  background: rgba(15, 20, 25, 0.5);
  border-left: 2px solid var(--pillar-accent);
  border-radius: 0 3px 3px 0;
  margin-bottom: var(--s-2);
}

.thrive-priority__label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: var(--s-1);
  letter-spacing: 0.02em;
}

.thrive-priority__detail {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.thrive-decade__warnings {
  margin-bottom: var(--s-4);
}

.thrive-decade__warnings ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thrive-decade__warnings li {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: var(--s-2) 0 var(--s-2) var(--s-4);
  position: relative;
  border-bottom: 1px solid var(--ink-line);
}

.thrive-decade__warnings li:last-child {
  border-bottom: none;
}

.thrive-decade__warnings li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--pillar-accent);
}

.thrive-decade__readiness {
  margin-top: var(--s-4);
  padding: var(--s-3) var(--s-4);
  background: rgba(78, 107, 138, 0.06);
  border-radius: 3px;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.thrive-decade__readiness em {
  color: var(--pillar-accent);
  font-style: italic;
}

/* ==========================================================================
   FOUR PILLARS OF LONGEVITY · the four goals
   ========================================================================== */

.thrive-goals {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.thrive-goal {
  background: var(--ink-elev);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.thrive-goal:hover {
  border-color: rgba(78, 107, 138, 0.4);
}

.thrive-goal.open {
  border-color: var(--pillar-accent);
}

.thrive-goal__head {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--s-4);
  cursor: pointer;
  position: relative;
}

.thrive-goal__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.thrive-goal__chevron {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--pillar-accent);
  transition: transform 0.2s ease-out;
}

.thrive-goal.open .thrive-goal__chevron {
  transform: rotate(45deg);
}

.thrive-goal__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.thrive-goal.open .thrive-goal__body {
  max-height: 2000px;
  opacity: 1;
  padding: 0 var(--s-4) var(--s-4);
  border-top: 1px solid var(--ink-line);
}

.thrive-goal__why {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: var(--s-3) 0;
}

.thrive-requirement {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--s-3);
  padding: var(--s-2) var(--s-3);
  background: rgba(15, 20, 25, 0.5);
  border-radius: 3px;
  margin-bottom: var(--s-2);
}

.thrive-requirement__source {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--pillar-accent);
  letter-spacing: 0.06em;
}

.thrive-requirement__practice {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.thrive-goal__markers {
  margin-top: var(--s-4);
  padding: var(--s-3);
  background: rgba(78, 107, 138, 0.06);
  border-radius: 3px;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.thrive-goal__markers strong {
  color: var(--pillar-accent);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 8px;
}

/* ==========================================================================
   CLARKE CODE SECTION
   ========================================================================== */

.thrive-code-section {
  padding: var(--s-5);
  background: linear-gradient(
    180deg,
    rgba(78, 107, 138, 0.04) 0%,
    rgba(78, 107, 138, 0.01) 100%
  );
  border: 1px solid rgba(78, 107, 138, 0.25);
  border-radius: 4px;
}

.thrive-values {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.thrive-value {
  background: var(--ink-elev);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.thrive-value:hover {
  border-color: rgba(78, 107, 138, 0.4);
}

.thrive-value.open {
  border-color: var(--pillar-accent);
}

.thrive-value__head {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--s-4);
  cursor: pointer;
  position: relative;
}

.thrive-value__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--pillar-accent);
  letter-spacing: 0.04em;
  margin-bottom: var(--s-1);
}

.thrive-value__essence {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.thrive-value__chevron {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--pillar-accent);
  transition: transform 0.2s ease-out;
}

.thrive-value.open .thrive-value__chevron {
  transform: rotate(45deg);
}

.thrive-value__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.thrive-value.open .thrive-value__body {
  max-height: 2500px;
  opacity: 1;
  padding: 0 var(--s-4) var(--s-4);
  border-top: 1px solid var(--ink-line);
}

.thrive-value__chapter {
  margin-top: var(--s-4);
  padding: var(--s-3);
  background: rgba(15, 20, 25, 0.5);
  border-left: 2px solid var(--pillar-accent);
  border-radius: 0 3px 3px 0;
}

.thrive-value__chapter-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--pillar-accent);
  margin-bottom: var(--s-2);
  font-weight: 600;
}

.thrive-value__chapter p {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.thrive-value__commitment {
  margin-top: var(--s-4);
  padding: var(--s-3);
  background: rgba(78, 107, 138, 0.08);
  border-radius: 3px;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.thrive-value__commitment strong {
  color: var(--pillar-accent);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 8px;
}

/* ==========================================================================
   DREAM HOUSE ROOMS
   ========================================================================== */

.thrive-rooms {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}

.thrive-room {
  background: var(--ink-elev);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.thrive-room:hover {
  border-color: rgba(78, 107, 138, 0.4);
}

.thrive-room.open {
  border-color: var(--pillar-accent);
}

.thrive-room__head {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--s-3) var(--s-4);
  cursor: pointer;
  position: relative;
}

.thrive-room__name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.thrive-room__chevron {
  position: absolute;
  top: var(--s-3);
  right: var(--s-4);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--pillar-accent);
  transition: transform 0.2s ease-out;
}

.thrive-room.open .thrive-room__chevron {
  transform: rotate(45deg);
}

.thrive-room__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.thrive-room.open .thrive-room__body {
  max-height: 600px;
  opacity: 1;
  padding: 0 var(--s-4) var(--s-3);
  border-top: 1px solid var(--ink-line);
}

.thrive-room__crossref {
  margin-top: var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--pillar-accent);
}

.thrive-room__purpose {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: var(--s-2) 0 0;
}

.thrive-design-philosophy {
  margin-top: var(--s-5);
  padding: var(--s-5);
  background: rgba(78, 107, 138, 0.1);
  border: 1px solid var(--pillar-accent);
  border-radius: 4px;
}

.thrive-design-philosophy__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--pillar-accent);
  margin-bottom: var(--s-2);
  font-weight: 600;
}

.thrive-design-philosophy__body {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   RELATIONSHIPS
   ========================================================================== */

.thrive-relationships {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.thrive-relationship {
  background: var(--ink-elev);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.thrive-relationship:hover {
  border-color: rgba(78, 107, 138, 0.4);
}

.thrive-relationship.open {
  border-color: var(--pillar-accent);
}

.thrive-relationship__head {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--s-4);
  cursor: pointer;
  position: relative;
}

.thrive-relationship__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.thrive-relationship__chevron {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--pillar-accent);
  transition: transform 0.2s ease-out;
}

.thrive-relationship.open .thrive-relationship__chevron {
  transform: rotate(45deg);
}

.thrive-relationship__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.thrive-relationship.open .thrive-relationship__body {
  max-height: 2000px;
  opacity: 1;
  padding: 0 var(--s-4) var(--s-4);
  border-top: 1px solid var(--ink-line);
}

.thrive-relationship__row {
  margin-top: var(--s-3);
}

.thrive-relationship__row-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--pillar-accent);
  margin-bottom: var(--s-1);
  font-weight: 600;
}

.thrive-relationship__row p {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   LEGACY STREAMS
   ========================================================================== */

.thrive-legacy-streams {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.thrive-legacy-stream {
  background: var(--ink-elev);
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.thrive-legacy-stream:hover {
  border-color: rgba(78, 107, 138, 0.4);
}

.thrive-legacy-stream.open {
  border-color: var(--pillar-accent);
}

.thrive-legacy-stream__head {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--s-4);
  cursor: pointer;
  position: relative;
}

.thrive-legacy-stream__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.thrive-legacy-stream__chevron {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--pillar-accent);
  transition: transform 0.2s ease-out;
}

.thrive-legacy-stream.open .thrive-legacy-stream__chevron {
  transform: rotate(45deg);
}

.thrive-legacy-stream__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.thrive-legacy-stream.open .thrive-legacy-stream__body {
  max-height: 1500px;
  opacity: 1;
  padding: 0 var(--s-4) var(--s-4);
  border-top: 1px solid var(--ink-line);
}

.thrive-legacy-stream__what {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: var(--s-3) 0;
}

.thrive-legacy-stream__across {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: var(--s-3);
  background: rgba(15, 20, 25, 0.5);
  border-radius: 3px;
  margin-bottom: var(--s-2);
}

.thrive-legacy-stream__across strong {
  color: var(--pillar-accent);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 8px;
}

.thrive-legacy-stream__invitation {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--pillar-accent);
  padding: var(--s-3);
  background: rgba(78, 107, 138, 0.06);
  border-left: 2px solid var(--pillar-accent);
  border-radius: 0 3px 3px 0;
}

/* ==========================================================================
   MARKERS SECTION
   ========================================================================== */

.thrive-markers-section {
  padding: var(--s-5);
  background: linear-gradient(
    180deg,
    rgba(78, 107, 138, 0.04) 0%,
    rgba(78, 107, 138, 0.01) 100%
  );
  border: 1px solid rgba(78, 107, 138, 0.25);
  border-radius: 4px;
}

.thrive-markers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}

@media (min-width: 720px) {
  .thrive-markers {
    grid-template-columns: 1fr 1fr;
  }
}

.thrive-marker {
  padding: var(--s-4);
  background: var(--ink-elev);
  border-left: 2px solid var(--pillar-accent);
  border-radius: 0 3px 3px 0;
}

.thrive-marker__name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: var(--s-2);
  letter-spacing: 0.02em;
}

.thrive-marker__question {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--pillar-accent);
  line-height: 1.5;
  margin-bottom: var(--s-3);
}

.thrive-marker__why {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   AVOID SECTION
   ========================================================================== */

.thrive-avoid-section {
  padding-top: var(--s-5);
  border-top: 2px dashed rgba(220, 90, 90, 0.4);
}

.thrive-avoid-items {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.thrive-avoid-item {
  background: var(--ink-elev);
  border: 1px solid rgba(220, 90, 90, 0.25);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.thrive-avoid-item:hover {
  border-color: rgba(220, 90, 90, 0.4);
}

.thrive-avoid-item.open {
  border-color: #DC5A5A;
}

.thrive-avoid-item__head {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--s-3) var(--s-4);
  cursor: pointer;
  position: relative;
}

.thrive-avoid-item__name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #DC5A5A;
  letter-spacing: 0.02em;
}

.thrive-avoid-item__chevron {
  position: absolute;
  top: var(--s-3);
  right: var(--s-4);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: #DC5A5A;
  transition: transform 0.2s ease-out;
}

.thrive-avoid-item.open .thrive-avoid-item__chevron {
  transform: rotate(45deg);
}

.thrive-avoid-item__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.thrive-avoid-item.open .thrive-avoid-item__body {
  max-height: 600px;
  opacity: 1;
  padding: 0 var(--s-4) var(--s-3);
  border-top: 1px solid rgba(220, 90, 90, 0.2);
}

.thrive-avoid-item__body p {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: var(--s-3) 0 0;
}

/* ==========================================================================
   REVIEW FOOTER
   ========================================================================== */

.thrive-review-footer {
  margin-top: var(--s-7);
  padding: var(--s-5);
  background: rgba(78, 107, 138, 0.08);
  border: 1px solid var(--pillar-accent);
  border-radius: 4px;
}

.thrive-review-footer__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-tiny);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--pillar-accent);
  margin-bottom: var(--s-2);
  font-weight: 600;
}

.thrive-review-footer__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: var(--s-3);
  letter-spacing: -0.005em;
}

.thrive-review-footer__body {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 720px) {
  .thrive-hero__title {
    font-size: 2.5rem;
  }
  .thrive-section-title {
    font-size: 1.75rem;
  }
  .thrive-practice__main {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }
  .thrive-decade__head {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }
  .thrive-requirement {
    grid-template-columns: 1fr;
    gap: var(--s-1);
  }
}
