.advisor-v42 {
  --advisor-green: #2f746c;
  --advisor-green-soft: #e7f1ee;
  --advisor-pink: #c75f76;
  --advisor-pink-soft: #f9e9ed;
  --advisor-gold: #b4772a;
  --advisor-gold-soft: #fbf0dd;
  --advisor-purple: #7057a5;
  --advisor-purple-soft: #eee9f7;
  --advisor-red: #b43e42;
  --advisor-red-soft: #fae8e7;
  --advisor-ink: #18312e;
  --advisor-muted: #64736f;
  min-height: 100vh;
  background: #f6f8f7;
  color: var(--advisor-ink);
  letter-spacing: 0;
}

.advisor-v42 *,
.advisor-v42 *::before,
.advisor-v42 *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.advisor-v42 button,
.advisor-v42 textarea {
  font: inherit;
}

.advisor-v42 button {
  color: inherit;
}

.advisor-v42__app,
.advisor-v42__gate,
.advisor-v42__state {
  width: min(100%, 920px);
  margin: 0 auto;
}

.advisor-v42__tabs {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 10px 16px;
  background: rgba(246, 248, 247, 0.96);
  border-bottom: 1px solid #dfe6e3;
  backdrop-filter: blur(12px);
}

.advisor-v42__tab {
  min-width: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #536560;
  font-size: 14px;
  cursor: pointer;
}

.advisor-v42__tab--active {
  background: var(--advisor-green);
  color: #fff;
  font-weight: 700;
}

.advisor-v42__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 16px calc(28px + env(safe-area-inset-bottom));
}

.advisor-v42__hero,
.advisor-v42__view-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 2px 4px;
}

.advisor-v42__hero h1,
.advisor-v42__view-title h1,
.advisor-v42__gate h1,
.advisor-v42__emergency-head h1 {
  margin: 4px 0 0;
  font-size: 26px;
  line-height: 1.24;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.advisor-v42__hero p:not(.advisor-v42__eyebrow),
.advisor-v42__view-title p:not(.advisor-v42__eyebrow) {
  margin: 7px 0 0;
  color: var(--advisor-muted);
  font-size: 13px;
  line-height: 1.55;
}

.advisor-v42__eyebrow {
  margin: 0;
  color: var(--advisor-green);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
}

.advisor-v42__source,
.advisor-v42__text-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--advisor-green);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.advisor-v42__progress-band,
.advisor-v42__profile-band {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #dfe7e4;
  border-radius: 8px;
}

.advisor-v42__progress-band > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.advisor-v42__progress-band strong {
  color: var(--advisor-green);
  font-size: 22px;
}

.advisor-v42__progress-band span,
.advisor-v42__profile-band span {
  color: var(--advisor-muted);
  font-size: 13px;
}

.advisor-v42__progress {
  width: 100%;
  height: 7px;
  overflow: hidden;
  background: #e4ebe8;
  border-radius: 4px;
}

.advisor-v42__progress > span {
  display: block;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  background: var(--advisor-green);
  border-radius: inherit;
  transition: width 180ms ease;
}

.advisor-v42__profile-band,
.advisor-v42__profile-band > div,
.advisor-v42__profile-band > div > div {
  display: flex;
  align-items: center;
}

.advisor-v42__profile-band {
  justify-content: space-between;
  gap: 12px;
}

.advisor-v42__profile-band > div {
  min-width: 0;
  gap: 10px;
}

.advisor-v42__profile-band > div > div {
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.advisor-v42__profile-band span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

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

.advisor-v42__reminder {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  padding: 13px;
  border: 1px solid #dde5e2;
  border-left-width: 3px;
  border-radius: 8px;
  background: #fff;
}

.advisor-v42__reminder strong,
.advisor-v42__reminder p {
  overflow-wrap: anywhere;
}

.advisor-v42__reminder strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.advisor-v42__reminder p {
  margin: 4px 0 0;
  color: var(--advisor-muted);
  font-size: 12px;
  line-height: 1.55;
}

.advisor-v42__tone--accent { border-left-color: var(--advisor-green); }
.advisor-v42__tone--green { border-left-color: #4a8b64; }
.advisor-v42__tone--gold { border-left-color: var(--advisor-gold); }
.advisor-v42__tone--red { border-left-color: var(--advisor-red); }
.advisor-v42__tone--gray { border-left-color: #88938f; }

.advisor-v42__routine {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe7e4;
  border-radius: 8px;
}

.advisor-v42__section-head {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #e7ecea;
}

.advisor-v42__section-head > div,
.advisor-v42__section-head h2 {
  display: flex;
  align-items: center;
}

.advisor-v42__section-head > div { gap: 8px; }

.advisor-v42__section-head h2 {
  margin: 0;
  font-size: 16px;
}

.advisor-v42__section-head > span {
  color: var(--advisor-muted);
  font-size: 12px;
}

.advisor-v42__step {
  min-height: 66px;
  display: grid;
  grid-template-columns: 34px 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #edf1ef;
}

.advisor-v42__step:last-child { border-bottom: 0; }

.advisor-v42__check {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #b8c7c2;
  border-radius: 50%;
  background: #fff;
  color: var(--advisor-green);
  cursor: pointer;
}

.advisor-v42__check:disabled { opacity: 0.55; }

.advisor-v42__step--done .advisor-v42__check {
  border-color: var(--advisor-green);
  background: var(--advisor-green);
  color: #fff;
}

.advisor-v42__step-index {
  color: #899590;
  font-size: 12px;
  text-align: center;
}

.advisor-v42__step-copy { min-width: 0; }

.advisor-v42__step-copy strong,
.advisor-v42__step-copy p {
  display: block;
  overflow-wrap: anywhere;
}

.advisor-v42__step-copy strong {
  font-size: 14px;
  line-height: 1.42;
}

.advisor-v42__step-copy p {
  margin: 4px 0 0;
  color: var(--advisor-muted);
  font-size: 12px;
  line-height: 1.5;
}

.advisor-v42__step--done .advisor-v42__step-copy {
  opacity: 0.58;
}

.advisor-v42__step--done .advisor-v42__step-copy strong {
  text-decoration: line-through;
}

.advisor-v42__button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 18px;
  border: 1px solid var(--advisor-green);
  border-radius: 7px;
  background: var(--advisor-green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.advisor-v42__button--secondary {
  background: #fff;
  color: var(--advisor-green) !important;
}

.advisor-v42__button--danger {
  border-color: var(--advisor-red);
  background: var(--advisor-red);
}

.advisor-v42__button:disabled {
  cursor: default;
  opacity: 0.55;
}

.advisor-v42__empty,
.advisor-v42__state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.advisor-v42__empty {
  min-height: 270px;
  padding: 32px 20px;
  background: #fff;
  border: 1px dashed #cbd7d3;
  border-radius: 8px;
}

.advisor-v42__empty h2,
.advisor-v42__empty p { margin: 0; }
.advisor-v42__empty h2 { margin-top: 13px; font-size: 18px; }
.advisor-v42__empty p { max-width: 480px; margin: 8px 0 20px; color: var(--advisor-muted); font-size: 13px; line-height: 1.65; }

.advisor-v42__phase-chip,
.advisor-v42__status,
.advisor-v42__current {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.advisor-v42__phase-chip {
  max-width: 45%;
  padding: 6px 8px;
  background: var(--advisor-purple-soft);
  color: var(--advisor-purple);
  overflow-wrap: anywhere;
}

.advisor-v42__week {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe7e4;
  border-radius: 8px;
}

.advisor-v42__week-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #e8edeb;
}

.advisor-v42__week-row:last-child { border-bottom: 0; }
.advisor-v42__week-row--today { background: #f0f7f4; }

.advisor-v42__week-date,
.advisor-v42__week-counts {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.advisor-v42__week-date strong { font-size: 14px; }
.advisor-v42__week-date span { color: var(--advisor-muted); font-size: 12px; }
.advisor-v42__week-counts > span { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; }
.advisor-v42__week-counts small { color: var(--advisor-muted); font-size: 11px; }

.advisor-v42__status { padding: 5px 6px; }
.advisor-v42__status--accent { color: var(--advisor-green); background: var(--advisor-green-soft); }
.advisor-v42__status--green { color: #397750; background: #e8f4ec; }
.advisor-v42__status--gold { color: #976019; background: var(--advisor-gold-soft); }
.advisor-v42__status--gray { color: #6c7874; background: #edf1ef; }

.advisor-v42__phases {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advisor-v42__phase {
  padding: 16px;
  background: #fff;
  border: 1px solid #dfe7e4;
  border-radius: 8px;
}

.advisor-v42__phase--current {
  border-color: var(--advisor-green);
  box-shadow: inset 3px 0 0 var(--advisor-green);
}

.advisor-v42__phase > header {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.advisor-v42__phase-index {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--advisor-purple-soft);
  color: var(--advisor-purple);
  font-size: 13px;
  font-weight: 700;
}

.advisor-v42__phase h2,
.advisor-v42__phase header p { margin: 0; }
.advisor-v42__phase h2 { font-size: 16px; line-height: 1.4; overflow-wrap: anywhere; }
.advisor-v42__phase header p { margin-top: 2px; color: var(--advisor-muted); font-size: 12px; }
.advisor-v42__current { padding: 5px 7px; color: var(--advisor-green); background: var(--advisor-green-soft); }

.advisor-v42__phase-target,
.advisor-v42__principle {
  margin: 13px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: #4d5e59;
  font-size: 13px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.advisor-v42__phase-target { background: #f5f7f6; }
.advisor-v42__principle { background: var(--advisor-green-soft); }

.advisor-v42__phase-actions {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e8edeb;
}

.advisor-v42__phase-actions > strong { font-size: 13px; }
.advisor-v42__phase-actions ul { margin: 8px 0 0; padding: 0; list-style: none; }
.advisor-v42__phase-actions li { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 7px; margin-top: 7px; padding-left: 13px; }
.advisor-v42__phase-actions li::before { position: absolute; top: 7px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--advisor-green); content: ""; }
.advisor-v42__phase-actions li.advisor-v42__bullet--night::before { background: var(--advisor-purple); }
.advisor-v42__phase-actions li.advisor-v42__bullet--shared::before { background: var(--advisor-pink); }
.advisor-v42__phase-actions li span { color: var(--advisor-muted); font-size: 12px; white-space: nowrap; }
.advisor-v42__phase-actions li p { margin: 0; font-size: 13px; line-height: 1.5; overflow-wrap: anywhere; }

.advisor-v42__precautions {
  padding: 16px;
  background: var(--advisor-gold-soft);
  border: 1px solid #ecd2a5;
  border-radius: 8px;
}

.advisor-v42__precautions h2 { display: flex; align-items: center; gap: 7px; margin: 0; font-size: 15px; }
.advisor-v42__precautions ul { margin: 10px 0 0; padding-left: 20px; }
.advisor-v42__precautions li { margin-top: 6px; font-size: 13px; line-height: 1.55; }

.advisor-v42__emergency-form,
.advisor-v42__emergency-plan {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.advisor-v42__symptoms,
.advisor-v42__note-input,
.advisor-v42__emergency-head,
.advisor-v42__trigger,
.advisor-v42__emergency-section,
.advisor-v42__stop,
.advisor-v42__observe {
  padding: 16px;
  background: #fff;
  border: 1px solid #dfe7e4;
  border-radius: 8px;
}

.advisor-v42__symptoms h2,
.advisor-v42__emergency-section h2,
.advisor-v42__stop h2 { margin: 0 0 12px; font-size: 15px; }
.advisor-v42__symptoms > div { display: flex; flex-wrap: wrap; gap: 8px; }

.advisor-v42__symptom {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  border: 1px solid #cbd6d2;
  border-radius: 6px;
  background: #fff;
  color: #4e605b;
  font-size: 13px;
  cursor: pointer;
}

.advisor-v42__symptom--selected {
  border-color: var(--advisor-pink);
  background: var(--advisor-pink-soft);
  color: #9f4055;
  font-weight: 700;
}

.advisor-v42__note-input { position: relative; }
.advisor-v42__note-input label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 700; }
.advisor-v42__note-input textarea { width: 100%; min-height: 100px; resize: vertical; padding: 10px 12px 24px; border: 1px solid #cbd6d2; border-radius: 6px; background: #fbfcfc; color: var(--advisor-ink); font-size: 13px; line-height: 1.55; outline: none; }
.advisor-v42__note-input textarea:focus { border-color: var(--advisor-green); box-shadow: 0 0 0 2px rgba(47, 116, 108, 0.12); }
.advisor-v42__note-input small { position: absolute; right: 26px; bottom: 22px; color: #8b9692; font-size: 11px; }

.advisor-v42__emergency-head > div,
.advisor-v42__observe { display: flex; align-items: center; gap: 10px; }
.advisor-v42__emergency-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; border-color: #bcd2cb; }
.advisor-v42__emergency-head span { color: var(--advisor-green); font-size: 12px; font-weight: 700; }
.advisor-v42__emergency-head h1 { margin-top: 2px; font-size: 21px; }
.advisor-v42__emergency-head small { color: var(--advisor-muted); font-size: 11px; text-align: right; }
.advisor-v42__emergency-plan--urgent .advisor-v42__emergency-head { border-color: #e2a9a7; background: var(--advisor-red-soft); }
.advisor-v42__emergency-plan--urgent .advisor-v42__emergency-head span { color: var(--advisor-red); }

.advisor-v42__trigger strong { display: block; margin-bottom: 5px; font-size: 13px; }
.advisor-v42__trigger p,
.advisor-v42__observe p { margin: 0; font-size: 13px; line-height: 1.6; overflow-wrap: anywhere; }
.advisor-v42__emergency-section ol { margin: 0; padding: 0; list-style: none; }
.advisor-v42__emergency-section li { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 9px; align-items: start; margin-top: 10px; }
.advisor-v42__emergency-section li > span { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--advisor-green-soft); color: var(--advisor-green); font-size: 11px; font-weight: 700; }
.advisor-v42__emergency-section li p { margin: 2px 0 0; font-size: 13px; line-height: 1.55; }
.advisor-v42__stop { border-color: #ead1aa; background: var(--advisor-gold-soft); }
.advisor-v42__stop ul { margin: 0; padding-left: 20px; }
.advisor-v42__stop li { margin-top: 5px; font-size: 13px; line-height: 1.55; }
.advisor-v42__observe { border-color: #d4cae7; background: var(--advisor-purple-soft); }

.advisor-v42__gate {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 52px 20px calc(36px + env(safe-area-inset-bottom));
  text-align: center;
}

.advisor-v42__gate-mark {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid #edc6cf;
  border-radius: 50%;
  background: var(--advisor-pink-soft);
}

.advisor-v42__gate-copy { max-width: 520px; margin: 12px 0 24px; color: var(--advisor-muted); font-size: 14px; line-height: 1.7; }
.advisor-v42__gate-points { width: min(100%, 540px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 26px; border: 1px solid #dfe7e4; border-radius: 8px; background: #fff; }
.advisor-v42__gate-points > div { min-width: 0; min-height: 106px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 9px; padding: 14px 8px; border-right: 1px solid #e6ece9; }
.advisor-v42__gate-points > div:last-child { border-right: 0; }
.advisor-v42__gate-points span { font-size: 12px; line-height: 1.45; overflow-wrap: anywhere; }

/* 鏈闃呭叆鍙ｏ細鍙覆鏌撳浐瀹氱殑涓€灞忎粙缁嶆ā鏉匡紝椤甸潰涓笉瀛樺湪鏃х増 gate銆?*/
.advisor-v42--intro-only {
  min-height: 100vh;
  background: #edf7f1;
}

.advisor-v42__intro-overlay { position: fixed; inset: 0; width: 100vw; min-height: 100vh; height: 100%; box-sizing: border-box; z-index: 80; display: flex; align-items: flex-start; justify-content: center; padding: 12px max(8px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left)); background: #edf7f1; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; }

.advisor-v42__intro-modal { position: relative; width: min(100%, 585px); max-width: 585px; margin: 0 auto; box-sizing: border-box; padding: 18px 16px calc(24px + env(safe-area-inset-bottom)); background: transparent; color: #173f34; }

.advisor-v42__intro-heading { padding: 0 20px 16px; text-align: center; }
.advisor-v42__intro-heading h1 { margin: 0; color: #145d47; font-size: 35px; line-height: 1.15; font-weight: 800; }
.advisor-v42__intro-heading h2 { margin: 4px 0 0; color: #477a6b; font-size: 20px; line-height: 1.35; }
.advisor-v42__intro-heading p { margin: 12px 0 0; color: #83a89b; font-size: 13px; line-height: 1.5; }

.advisor-v42__intro-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.advisor-v42__intro-benefits article { min-width: 0; display: flex; align-items: center; flex-direction: column; gap: 7px; padding: 16px 8px 14px; border: 1px solid #dcece5; border-radius: 14px; background: rgba(255, 255, 255, 0.86); text-align: center; }
.advisor-v42__intro-benefits strong { color: #245f4e; font-size: 14px; line-height: 1.35; }
.advisor-v42__intro-benefits span { color: #7b9c91; font-size: 11px; line-height: 1.45; overflow-wrap: anywhere; }
.advisor-v42__intro-benefits .advisor-v42__intro-benefit-icon { height: 32px; color: inherit; font-size: 27px; line-height: 32px; }

.advisor-v42__intro-reasons { margin-top: 12px; padding: 14px 18px 4px; border: 1px solid #dcece5; border-radius: 16px; background: rgba(255, 255, 255, 0.9); }
.advisor-v42__intro-reasons h2 { margin: 0 0 4px; padding-bottom: 10px; border-bottom: 1px solid #e0ece7; color: #176047; font-size: 18px; text-align: center; }
.advisor-v42__intro-reason { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 10px; align-items: start; padding: 7px 0; border-bottom: 1px dashed #deebe6; }
.advisor-v42__intro-reason:last-child { border-bottom: 0; }
.advisor-v42__intro-number { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; font-size: 13px; font-weight: 800; }
.advisor-v42__intro-reason--red .advisor-v42__intro-number { background: #c95c57; }
.advisor-v42__intro-reason--gold .advisor-v42__intro-number { background: #b07c27; }
.advisor-v42__intro-reason--purple .advisor-v42__intro-number { background: #8c6bc8; }
.advisor-v42__intro-reason--green .advisor-v42__intro-number { background: #338261; }
.advisor-v42__intro-reason--teal .advisor-v42__intro-number { background: #168b9b; }
.advisor-v42__intro-reason--deep .advisor-v42__intro-number { background: #19624e; }
.advisor-v42__intro-reason--violet .advisor-v42__intro-number { background: #7057b6; }
.advisor-v42__intro-reason strong { display: block; color: #245447; font-size: 14px; line-height: 1.35; }
.advisor-v42__intro-reason p { margin: 3px 0 0; color: #77978d; font-size: 12px; line-height: 1.45; overflow-wrap: anywhere; }
.advisor-v42__intro-modal > .advisor-v42__button { width: 100%; min-height: 50px; margin-top: 10px; border-radius: 999px; background: #217e5f; box-shadow: 0 8px 18px rgba(33, 126, 95, 0.24); font-size: 16px; }
.advisor-v42__intro-cta { justify-content: center; gap: 8px; }
.advisor-v42__intro-arrow { font-size: 20px; line-height: 1; }
.advisor-v42__intro-price { display: flex; align-items: baseline; justify-content: center; gap: 7px; margin-top: 10px; color: #8aa89d; font-size: 13px; }
.advisor-v42__intro-price strong { color: #b17a26; font-size: 35px; line-height: 1; }
.advisor-v42__intro-price em { padding: 4px 9px; border: 1px solid #edd6a7; border-radius: 999px; color: #bd8c3e; font-size: 11px; font-style: normal; }
.advisor-v42__intro-footnote { margin: 5px 0 0; color: #9bb7ad; font-size: 12px; text-align: center; }

.advisor-v42__state {
  min-height: calc(100vh - 90px);
  padding: 32px 20px;
  gap: 9px;
}

.advisor-v42__state strong { margin-top: 6px; font-size: 16px; }
.advisor-v42__state span { color: var(--advisor-muted); font-size: 13px; line-height: 1.55; }
.advisor-v42__state .advisor-v42__button { margin-top: 10px; }
.advisor-v42__spinner { width: 28px; height: 28px; border: 3px solid #d8e5e0; border-top-color: var(--advisor-green); border-radius: 50%; animation: advisor-v42-spin 0.8s linear infinite; }

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

@media (max-width: 640px) {
  .advisor-v42__tabs { padding-inline: 10px; }
  .advisor-v42__tab { font-size: 13px; }
  .advisor-v42__content { padding-inline: 12px; }
  .advisor-v42__hero,
  .advisor-v42__view-title { align-items: flex-start; flex-direction: column; gap: 6px; }
  .advisor-v42__hero h1,
  .advisor-v42__view-title h1,
  .advisor-v42__gate h1 { font-size: 23px; }
  .advisor-v42__source { padding-block: 4px; }
  .advisor-v42__reminders { grid-template-columns: minmax(0, 1fr); }
  .advisor-v42__week-row { grid-template-columns: 86px minmax(0, 1fr) 52px; padding-inline: 11px; }
  .advisor-v42__phase-chip { max-width: 100%; }
  .advisor-v42__gate { padding-top: 34px; }
  .advisor-v42__gate-points { grid-template-columns: minmax(0, 1fr); }
  .advisor-v42__gate-points > div { min-height: 70px; display: grid; grid-template-columns: 28px minmax(0, 1fr); text-align: left; border-right: 0; border-bottom: 1px solid #e6ece9; }
  .advisor-v42__gate-points > div:last-child { border-bottom: 0; }
  .advisor-v42__intro-overlay { padding: 4px max(4px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(4px, env(safe-area-inset-left)); }
  .advisor-v42__intro-modal { padding: 16px 8px 10px; }
  .advisor-v42__intro-heading { padding: 0 14px 12px; }
  .advisor-v42__intro-heading h1 { font-size: 30px; }
  .advisor-v42__intro-heading h2 { font-size: 17px; }
  .advisor-v42__intro-benefits { gap: 6px; }
  .advisor-v42__intro-benefits article { padding-inline: 5px; }
  .advisor-v42__intro-benefits strong { font-size: 12px; }
  .advisor-v42__intro-benefits span { font-size: 10px; }
  .advisor-v42__intro-reasons { padding-inline: 12px; }
  .advisor-v42__emergency-head { align-items: flex-start; flex-direction: column; }
  .advisor-v42__emergency-head small { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .advisor-v42__spinner { animation-duration: 1.8s; }
  .advisor-v42__progress > span { transition: none; }
}

/* advisor-intro-v113: isolate template from legacy page styles */
main.advisor-v42__intro-overlay{position:fixed!important;inset:0!important;display:flex!important;width:100vw!important;height:100%!important;min-height:100vh!important;box-sizing:border-box!important;overflow-x:hidden!important;overflow-y:auto!important;z-index:999!important}
main.advisor-v42__intro-overlay>.advisor-v42__intro-modal{position:relative!important;flex:0 1 585px!important;width:min(100%,585px)!important;max-width:585px!important;min-width:0!important;margin:0 auto!important;box-sizing:border-box!important}
