body.buyguide-page,
body[data-buy-guide],
body[data-buy-guide-hub],
body[data-buy-guide-timing] {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-y: auto;
}

.buyguide-root {
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

.buyguide-root,
.buyguide-root *,
.buyguide-root *::before,
.buyguide-root *::after {
  box-sizing: border-box;
}

.buyguide-root :where(
  .buyguide-hero,
  .buyguide-section,
  .buyguide-hero__inner,
  .buyguide-section__inner,
  .buyguide-shell,
  #buyguide-app,
  .buyguide-entry-grid,
  .buyguide-usecase-grid,
  .buyguide-tool-panel,
  .buyguide-preset-grid,
  .buyguide-filter-row,
  .buyguide-question-card,
  .buyguide-option-list,
  .buyguide-result,
  .buyguide-result__block,
  .buyguide-compare-cards,
  .buyguide-decision-cards,
	  .buyguide-status-grid,
	  .buyguide-timing-summary-grid,
	  .buyguide-timing-card-grid,
	  .buyguide-timing-definitions,
	  .buyguide-timing-details,
	  .buyguide-performance-card,
	  .buyguide-performance-card__copy
	) {
	  min-width: 0;
	  max-width: 100%;
	}

.buyguide-root :where(h1, h2, h3, h4, p, li, a, button, span, strong, em, dt, dd, th, td) {
  overflow-wrap: anywhere;
}

.buyguide-hero {
  padding: 86px 0 36px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
}

.buyguide-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.buyguide-hero__kicker {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}

.buyguide-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  max-width: 960px;
  font-size: clamp(58px, 12vw, 132px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--text);
  margin: 0 auto;
  overflow-wrap: anywhere;
}

.buyguide-hero__title--long {
  font-size: clamp(46px, 7vw, 86px);
  line-height: 1.05;
}

.buyguide-hero__sub {
  max-width: 620px;
  margin: 16px auto 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  color: var(--text);
}

.buyguide-hero__lead {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-2);
  margin: 14px auto 0;
}

.buyguide-hero__meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.buyguide-hero__meta-badge {
  display: inline-block;
  font-weight: 800;
  background: #111;
  color: #fff;
  padding: 3px 8px;
}

.buyguide-section {
  padding: 42px 0;
  border-bottom: 1px solid var(--border);
}

.buyguide-section:last-child {
  border-bottom: 0;
}

.buyguide-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.buyguide-section__title {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
  color: #111;
  overflow-wrap: anywhere;
}

.buyguide-section__lead {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.buyguide-entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.buyguide-entry-grid--priority {
  max-width: 760px;
}

.buyguide-entry-grid--auxiliary {
  max-width: 760px;
}

.buyguide-simple-entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyguide-simple-entry-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 20px 16px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.buyguide-simple-entry-card:hover {
  transform: translateY(-3px);
  background: #111;
  color: #fff;
}

.buyguide-entry-card {
  display: block;
  border: 1px solid #111;
  padding: 20px 18px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
  overflow-wrap: anywhere;
}

.buyguide-entry-card:hover {
  transform: translateY(-3px);
  background: #111;
  color: #fff;
}

.buyguide-entry-card--primary {
  background: #111;
  color: #fff;
  padding: 24px 22px;
}

.buyguide-entry-card--primary:hover {
  background: #171717;
  color: #fff;
}

.buyguide-rumor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyguide-rumor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}

.buyguide-rumor-card:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.buyguide-performance-link {
  background: #f5f5f7;
}

.buyguide-performance-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 178px;
  padding: 28px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.buyguide-performance-card:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.buyguide-performance-card:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.buyguide-performance-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.buyguide-performance-card__kicker {
  margin: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.buyguide-performance-card__title {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  color: inherit;
}

.buyguide-performance-card__lead {
  max-width: 660px;
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.buyguide-performance-card:hover .buyguide-performance-card__lead {
  color: rgba(255, 255, 255, 0.76);
}

.buyguide-performance-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid currentColor;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.buyguide-performance-card__cta {
  justify-self: end;
  gap: 4px;
  background: #111;
  color: #fff;
  border-color: #111;
}

.buyguide-performance-card:hover .buyguide-performance-card__cta {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.buyguide-rumor-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  align-items: start;
}

.buyguide-rumor-group {
  border: 1px solid #111;
  background: transparent;
  color: #111;
}

.buyguide-rumor-group__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 0 14px;
  cursor: pointer;
  list-style: none;
}

.buyguide-rumor-group__summary::-webkit-details-marker {
  display: none;
}

.buyguide-rumor-group__summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.buyguide-rumor-group[open] .buyguide-rumor-group__summary {
  border-bottom: 1px solid #111;
}

.buyguide-rumor-group[open] .buyguide-rumor-group__summary::after {
  content: "-";
}

.buyguide-rumor-group__summary:focus-visible,
.buyguide-rumor-pill:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.buyguide-rumor-group__title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.buyguide-rumor-group__count {
  margin-left: auto;
  padding: 4px 8px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 999px;
  background: #f5f5f7;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.buyguide-rumor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 12px 14px 14px;
  list-style: none;
}

.buyguide-rumor-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 17, 17, 0.5);
  border-radius: 999px;
  color: #111;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.buyguide-rumor-pill:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

.buyguide-path-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: inherit;
  opacity: 0.72;
}

.buyguide-entry-card__title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 8px;
}

.buyguide-entry-card__desc {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.7;
}

.buyguide-entry-card__meta {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  overflow-wrap: anywhere;
}

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

.buyguide-usecase-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  padding: 16px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.buyguide-usecase-card:hover {
  transform: translateY(-3px);
  background: #111;
  color: #fff;
}

.buyguide-usecase-card span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.66;
}

.buyguide-usecase-card strong {
  font-size: 18px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.buyguide-feature-list,
.buyguide-note-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.buyguide-feature-list li,
.buyguide-note-list li {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.75;
}

.buyguide-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 56px;
  min-width: 0;
}

#buyguide-app {
  min-width: 0;
}

.buyguide-progress {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #666;
  text-transform: uppercase;
}

.buyguide-progress__bar {
  width: 100%;
  height: 4px;
  background: #ddd;
  margin-top: 10px;
}

.buyguide-progress__fill {
  height: 100%;
  background: #111;
  transition: width 0.2s var(--ease);
}

.buyguide-question-card {
  border: 1px solid #111;
  background: #fff;
  padding: 24px 22px;
  min-width: 0;
}

.buyguide-question-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.buyguide-question-card__label {
  margin: 0 0 18px;
  font-size: 14px;
  color: #555;
}

.buyguide-tool-panel {
  display: grid;
  gap: 16px;
  margin: 0 0 18px;
  border: 1px solid #111;
  background: #fff;
  padding: 18px;
  min-width: 0;
}

.buyguide-tool-panel__section {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.buyguide-preset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.buyguide-preset-card {
  display: grid;
  gap: 6px;
  min-width: 0;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: #111;
  padding: 12px;
  line-height: 1.45;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.buyguide-preset-card strong {
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.buyguide-preset-card span {
  font-size: 12px;
  line-height: 1.55;
  color: #555;
}

.buyguide-preset-card:hover,
.buyguide-preset-card.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.buyguide-preset-card:hover span,
.buyguide-preset-card.is-active span {
  color: rgba(255, 255, 255, 0.78);
}

.buyguide-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.buyguide-filter-chip {
  border: 1px solid var(--border);
  background: #fff;
  color: #111;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  min-height: 34px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.buyguide-filter-chip:hover,
.buyguide-filter-chip.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.buyguide-option-list {
  display: grid;
  gap: 10px;
}

.buyguide-option {
  width: 100%;
  text-align: left;
  border: 1px solid #111;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.55;
  background: #fff;
  color: #111;
  overflow-wrap: anywhere;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.buyguide-option:hover {
  background: #f0f0f0;
}

.buyguide-option.is-selected {
  background: #111;
  color: #fff;
}

.buyguide-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.buyguide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  padding: 11px 16px;
  background: #fff;
  color: #111;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.4;
  min-height: 42px;
  overflow-wrap: anywhere;
}

.buyguide-btn:hover {
  background: #111;
  color: #fff;
}

.buyguide-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.buyguide-btn--primary {
  background: #111;
  color: #fff;
}

.buyguide-btn--primary:hover {
  background: #171717;
  color: #fff;
}

.buyguide-result {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.buyguide-result__block {
  border: 1px solid #111;
  background: #fff;
  padding: 18px 18px;
  min-width: 0;
  width: 100%;
}

.buyguide-result__kicker {
  margin: 0 0 6px;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 800;
  color: #666;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.buyguide-result__title {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.buyguide-result__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.buyguide-result__meta {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  color: #666;
}

.buyguide-advice-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.buyguide-advice-candidates {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.buyguide-advice-candidates li {
  display: grid;
  gap: 3px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 10px;
}

.buyguide-advice-candidates strong {
  font-size: 13px;
  line-height: 1.4;
}

.buyguide-advice-candidates span {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
}

.buyguide-list,
.buyguide-link-list,
.buyguide-status-list {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 10px;
}

.buyguide-list li,
.buyguide-link-list li,
.buyguide-status-list li {
  font-size: 14px;
  line-height: 1.75;
}

.buyguide-link-list a {
  text-decoration: underline;
}

.buyguide-sub-candidates {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.buyguide-sub-candidates li {
  border: 1px solid var(--border);
  padding: 12px 12px;
  background: var(--bg-alt);
}

.buyguide-sub-candidates strong {
  display: block;
  margin-bottom: 4px;
}

.buyguide-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  overflow-y: clip;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
  max-width: 100%;
}

.buyguide-compare-cards + .buyguide-table-wrap--desktop,
.buyguide-decision-cards + .buyguide-table-wrap--desktop {
  margin-top: 12px;
}

.buyguide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.buyguide-table th,
.buyguide-table td {
  border: 1px solid var(--border);
  padding: 8px 9px;
  font-size: 13px;
  text-align: left;
}

.buyguide-table th {
  background: var(--bg-alt);
  font-weight: 700;
}

.buyguide-compare-cards {
  display: grid;
  gap: 10px;
}

.buyguide-compare-card {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 12px;
  min-width: 0;
}

.buyguide-compare-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  gap: 10px;
  margin-bottom: 8px;
}

.buyguide-compare-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.buyguide-compare-card__price {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.buyguide-compare-card__summary {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.65;
  color: #555;
}

.buyguide-compare-card__list {
  margin: 0;
}

.buyguide-compare-card__item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
  align-items: start;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.buyguide-compare-card__item:last-child {
  border-bottom: 0;
}

.buyguide-compare-card__item dt,
.buyguide-compare-card__item dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.buyguide-compare-card__item dt {
  color: #666;
}

.buyguide-compare-card__item dd {
  font-weight: 700;
  text-align: right;
}

.buyguide-decision-cards {
  display: none;
}

.buyguide-decision-card {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 12px;
  min-width: 0;
}

.buyguide-decision-card__title {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
}

.buyguide-decision-card__list {
  margin: 0;
  display: grid;
  gap: 0;
}

.buyguide-decision-card__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid var(--border);
}

.buyguide-decision-card__item dt,
.buyguide-decision-card__item dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.buyguide-decision-card__item dt {
  color: #666;
}

.buyguide-decision-card__item dd {
  font-weight: 800;
  text-align: right;
}

.buyguide-status-grid {
  display: grid;
  gap: 10px;
}

.buyguide-status-card {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 12px 12px;
}

.buyguide-status-card h4 {
  margin: 0 0 8px;
  font-size: 13px;
}

.buyguide-status-card ul {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 6px;
}

.buyguide-status-card li {
  font-size: 13px;
  line-height: 1.6;
}

.buyguide-timing-summary__cta {
  margin-top: 18px;
}

.buyguide-section--timing-main {
  padding-top: 54px;
  padding-bottom: 38px;
  background: #fff;
}

.buyguide-section--timing-main .buyguide-section__title {
  margin-bottom: 14px;
  font-size: clamp(32px, 3.4vw, 36px);
  line-height: 1;
}

.buyguide-section--timing-main .buyguide-section__lead {
  margin-bottom: 24px;
}

.buyguide-section--timing-main .buyguide-timing-summary-grid {
  gap: 12px;
}

.buyguide-section--timing-main .buyguide-timing-summary-card {
  padding: 18px 16px 16px;
  min-height: 176px;
  border-color: #111;
}

.buyguide-section--timing-main .buyguide-timing-summary-card ul {
  margin-top: 24px;
  gap: 8px;
}

.buyguide-section--timing-main .buyguide-timing-summary-card li {
  font-size: 16px;
  line-height: 1.35;
}

.buyguide-timing-summary-grid,
.buyguide-timing-card-grid,
.buyguide-timing-definitions {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.buyguide-timing-summary-card,
.buyguide-timing-card,
.buyguide-timing-definition {
  border: 1px solid #111;
  background: #fff;
  color: #111;
  padding: 14px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.buyguide-timing-summary-card__meaning,
.buyguide-timing-definition p,
.buyguide-timing-card__comment,
.buyguide-result-timing p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #444;
}

.buyguide-timing-summary-card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.buyguide-timing-summary-card li {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.buyguide-timing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.buyguide-timing-badge__mark {
  flex: 0 0 auto;
  width: 14px;
  height: 22px;
  background: #111;
  border-radius: 3px 3px 1px 1px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
}

.buyguide-timing-badge__text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.buyguide-timing-badge__text strong {
  font-size: 14px;
  line-height: 1.2;
}

.buyguide-timing-badge__text span {
  font-size: 11px;
  line-height: 1.35;
  color: #555;
}

.buyguide-timing-badge--buy .buyguide-timing-badge__mark {
  background: #12b33f;
}

.buyguide-timing-badge--neutral .buyguide-timing-badge__mark {
  background: #f0ea22;
}

.buyguide-timing-badge--wait .buyguide-timing-badge__mark {
  background: #ff1616;
}

.buyguide-timing-card {
  display: grid;
  gap: 12px;
}

.buyguide-timing-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.buyguide-timing-card__category {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #666;
  text-transform: uppercase;
}

.buyguide-timing-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.buyguide-timing-meta {
  margin: 0;
  display: grid;
  gap: 8px;
}

.buyguide-timing-meta div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: 9px;
}

.buyguide-timing-meta dt,
.buyguide-timing-meta dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.buyguide-timing-meta dt {
  color: #666;
}

.buyguide-timing-meta dd {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: right;
}

.buyguide-timing-details {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  min-width: 0;
}

.buyguide-result-timing .buyguide-timing-details {
  grid-template-columns: 1fr;
}

.buyguide-timing-details div {
  min-width: 0;
  border-top: 1px solid var(--border);
  padding-top: 9px;
}

.buyguide-timing-details dt,
.buyguide-timing-details dd {
  margin: 0;
  line-height: 1.6;
}

.buyguide-timing-details dt {
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
  color: #666;
}

.buyguide-timing-details dd {
  font-size: 12px;
  color: #333;
}

.buyguide-timing-card__link {
  justify-self: start;
  font-size: 12px;
  text-decoration: underline;
}

.buyguide-timing-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.buyguide-result__block--timing {
  border-color: #111;
}

.buyguide-result-timing {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.buyguide-result-timing__title {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.35;
}

.buyguide-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.buyguide-other-guides {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.buyguide-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #111;
  padding: 7px 10px;
  font-size: 12px;
  text-decoration: none;
  background: #fff;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.buyguide-chip:hover {
  background: #111;
  color: #fff;
}

.buyguide-error {
  border: 1px solid #b91c1c;
  color: #b91c1c;
  padding: 12px;
  font-size: 14px;
  background: #fff5f5;
}

body.dark .buyguide-hero__title,
body.dark .buyguide-hero__sub,
body.dark .buyguide-section__title,
body.dark .buyguide-question-card__title,
body.dark .buyguide-result__title,
:root[data-theme="dark"] .buyguide-hero__title,
:root[data-theme="dark"] .buyguide-hero__sub,
:root[data-theme="dark"] .buyguide-section__title,
:root[data-theme="dark"] .buyguide-question-card__title,
:root[data-theme="dark"] .buyguide-result__title {
  color: #fff;
}

body.dark .buyguide-hero__lead,
body.dark .buyguide-section__lead,
body.dark .buyguide-question-card__label,
body.dark .buyguide-result__desc,
:root[data-theme="dark"] .buyguide-hero__lead,
:root[data-theme="dark"] .buyguide-section__lead,
:root[data-theme="dark"] .buyguide-question-card__label,
:root[data-theme="dark"] .buyguide-result__desc {
  color: #ccc;
}

body.dark .buyguide-entry-card,
body.dark .buyguide-simple-entry-card,
body.dark .buyguide-rumor-card,
body.dark .buyguide-rumor-group,
body.dark .buyguide-rumor-pill,
body.dark .buyguide-question-card,
body.dark .buyguide-result__block,
body.dark .buyguide-btn,
body.dark .buyguide-option,
body.dark .buyguide-chip,
body.dark .buyguide-usecase-card,
body.dark .buyguide-tool-panel,
body.dark .buyguide-preset-card,
body.dark .buyguide-filter-chip,
body.dark .buyguide-timing-summary-card,
body.dark .buyguide-timing-card,
body.dark .buyguide-timing-definition,
:root[data-theme="dark"] .buyguide-entry-card,
:root[data-theme="dark"] .buyguide-simple-entry-card,
:root[data-theme="dark"] .buyguide-rumor-card,
:root[data-theme="dark"] .buyguide-rumor-group,
:root[data-theme="dark"] .buyguide-rumor-pill,
:root[data-theme="dark"] .buyguide-question-card,
:root[data-theme="dark"] .buyguide-result__block,
:root[data-theme="dark"] .buyguide-btn,
:root[data-theme="dark"] .buyguide-option,
:root[data-theme="dark"] .buyguide-chip,
:root[data-theme="dark"] .buyguide-usecase-card,
:root[data-theme="dark"] .buyguide-tool-panel,
:root[data-theme="dark"] .buyguide-preset-card,
:root[data-theme="dark"] .buyguide-filter-chip,
:root[data-theme="dark"] .buyguide-timing-summary-card,
:root[data-theme="dark"] .buyguide-timing-card,
:root[data-theme="dark"] .buyguide-timing-definition {
  background: var(--color-bg-elevated);
  color: #fff;
  border-color: #fff;
}

body.dark .buyguide-option:hover,
body.dark .buyguide-entry-card:hover,
body.dark .buyguide-simple-entry-card:hover,
body.dark .buyguide-rumor-card:hover,
body.dark .buyguide-rumor-pill:hover,
body.dark .buyguide-btn:hover,
body.dark .buyguide-chip:hover,
body.dark .buyguide-usecase-card:hover,
body.dark .buyguide-filter-chip:hover,
body.dark .buyguide-filter-chip.is-active,
:root[data-theme="dark"] .buyguide-option:hover,
:root[data-theme="dark"] .buyguide-entry-card:hover,
:root[data-theme="dark"] .buyguide-simple-entry-card:hover,
:root[data-theme="dark"] .buyguide-rumor-card:hover,
:root[data-theme="dark"] .buyguide-rumor-pill:hover,
:root[data-theme="dark"] .buyguide-btn:hover,
:root[data-theme="dark"] .buyguide-chip:hover,
:root[data-theme="dark"] .buyguide-usecase-card:hover,
:root[data-theme="dark"] .buyguide-filter-chip:hover,
:root[data-theme="dark"] .buyguide-filter-chip.is-active {
  background: #fff;
  color: #111;
}

body.dark .buyguide-rumor-group[open] .buyguide-rumor-group__summary,
:root[data-theme="dark"] .buyguide-rumor-group[open] .buyguide-rumor-group__summary {
  border-bottom-color: #fff;
}

body.dark .buyguide-rumor-group__count,
:root[data-theme="dark"] .buyguide-rumor-group__count {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body.dark .buyguide-compare-card__item dt,
body.dark .buyguide-preset-card span,
body.dark .buyguide-advice-candidates span,
body.dark .buyguide-compare-card__summary,
body.dark .buyguide-result__meta,
body.dark .buyguide-timing-card__category,
body.dark .buyguide-timing-meta dt,
body.dark .buyguide-timing-details dt,
body.dark .buyguide-timing-badge__text span,
:root[data-theme="dark"] .buyguide-compare-card__item dt,
:root[data-theme="dark"] .buyguide-preset-card span,
:root[data-theme="dark"] .buyguide-advice-candidates span,
:root[data-theme="dark"] .buyguide-compare-card__summary,
:root[data-theme="dark"] .buyguide-result__meta,
:root[data-theme="dark"] .buyguide-timing-card__category,
:root[data-theme="dark"] .buyguide-timing-meta dt,
:root[data-theme="dark"] .buyguide-timing-details dt,
:root[data-theme="dark"] .buyguide-timing-badge__text span {
  color: #bbb;
}

body.dark .buyguide-timing-summary-card__meaning,
body.dark .buyguide-timing-definition p,
body.dark .buyguide-timing-card__comment,
body.dark .buyguide-timing-details dd,
body.dark .buyguide-result-timing p,
:root[data-theme="dark"] .buyguide-timing-summary-card__meaning,
:root[data-theme="dark"] .buyguide-timing-definition p,
:root[data-theme="dark"] .buyguide-timing-card__comment,
:root[data-theme="dark"] .buyguide-timing-details dd,
:root[data-theme="dark"] .buyguide-result-timing p {
  color: #ccc;
}

body.dark .buyguide-option.is-selected,
body.dark .buyguide-btn--primary,
:root[data-theme="dark"] .buyguide-option.is-selected,
:root[data-theme="dark"] .buyguide-btn--primary {
  background: #fff;
  color: #111;
}

/* ---------- Dark mode refinement (2026-04-28) ---------- */
body.dark .buyguide-hero,
body.dark .buyguide-section--timing-main,
:root[data-theme="dark"] .buyguide-hero {
  background: var(--bg);
  border-bottom-color: var(--border);
}

:root[data-theme="dark"] .buyguide-section--timing-main {
  background: var(--bg);
  border-bottom-color: var(--border);
}

body.dark .buyguide-hero__title,
body.dark .buyguide-hero__sub,
body.dark .buyguide-section__title,
body.dark .buyguide-question-card__title,
body.dark .buyguide-result__title,
:root[data-theme="dark"] .buyguide-hero__title,
:root[data-theme="dark"] .buyguide-hero__sub,
:root[data-theme="dark"] .buyguide-section__title,
:root[data-theme="dark"] .buyguide-question-card__title,
:root[data-theme="dark"] .buyguide-result__title {
  color: var(--text);
}

body.dark .buyguide-hero__lead,
body.dark .buyguide-section__lead,
body.dark .buyguide-question-card__label,
body.dark .buyguide-result__desc,
body.dark .buyguide-timing-summary-card__meaning,
body.dark .buyguide-timing-definition p,
body.dark .buyguide-timing-card__comment,
body.dark .buyguide-result-timing p,
:root[data-theme="dark"] .buyguide-hero__lead,
:root[data-theme="dark"] .buyguide-section__lead,
:root[data-theme="dark"] .buyguide-question-card__label,
:root[data-theme="dark"] .buyguide-result__desc,
:root[data-theme="dark"] .buyguide-timing-summary-card__meaning,
:root[data-theme="dark"] .buyguide-timing-definition p,
:root[data-theme="dark"] .buyguide-timing-card__comment,
:root[data-theme="dark"] .buyguide-result-timing p {
  color: var(--text-2);
}

body.dark .buyguide-hero__kicker,
body.dark .buyguide-hero__meta,
body.dark .buyguide-progress,
body.dark .buyguide-result__kicker,
body.dark .buyguide-compare-card__item dt,
body.dark .buyguide-decision-card__item dt,
body.dark .buyguide-timing-card__category,
body.dark .buyguide-timing-meta dt,
body.dark .buyguide-timing-badge__text span,
:root[data-theme="dark"] .buyguide-hero__kicker,
:root[data-theme="dark"] .buyguide-hero__meta,
:root[data-theme="dark"] .buyguide-progress,
:root[data-theme="dark"] .buyguide-result__kicker,
:root[data-theme="dark"] .buyguide-compare-card__item dt,
:root[data-theme="dark"] .buyguide-decision-card__item dt,
:root[data-theme="dark"] .buyguide-timing-card__category,
:root[data-theme="dark"] .buyguide-timing-meta dt,
:root[data-theme="dark"] .buyguide-timing-badge__text span {
  color: var(--text-muted);
}

body.dark .buyguide-entry-card,
body.dark .buyguide-simple-entry-card,
body.dark .buyguide-rumor-card,
body.dark .buyguide-rumor-group,
body.dark .buyguide-rumor-pill,
body.dark .buyguide-question-card,
body.dark .buyguide-result__block,
body.dark .buyguide-option,
body.dark .buyguide-btn,
body.dark .buyguide-chip,
body.dark .buyguide-usecase-card,
body.dark .buyguide-tool-panel,
body.dark .buyguide-preset-card,
body.dark .buyguide-filter-chip,
body.dark .buyguide-timing-summary-card,
body.dark .buyguide-timing-card,
body.dark .buyguide-timing-definition,
:root[data-theme="dark"] .buyguide-entry-card,
:root[data-theme="dark"] .buyguide-simple-entry-card,
:root[data-theme="dark"] .buyguide-rumor-card,
:root[data-theme="dark"] .buyguide-rumor-group,
:root[data-theme="dark"] .buyguide-rumor-pill,
:root[data-theme="dark"] .buyguide-question-card,
:root[data-theme="dark"] .buyguide-result__block,
:root[data-theme="dark"] .buyguide-option,
:root[data-theme="dark"] .buyguide-btn,
:root[data-theme="dark"] .buyguide-chip,
:root[data-theme="dark"] .buyguide-usecase-card,
:root[data-theme="dark"] .buyguide-tool-panel,
:root[data-theme="dark"] .buyguide-preset-card,
:root[data-theme="dark"] .buyguide-filter-chip,
:root[data-theme="dark"] .buyguide-timing-summary-card,
:root[data-theme="dark"] .buyguide-timing-card,
:root[data-theme="dark"] .buyguide-timing-definition {
  background: var(--color-bg-elevated);
  color: var(--text);
  border-color: var(--border);
}

body.dark .buyguide-rumor-group[open] .buyguide-rumor-group__summary,
:root[data-theme="dark"] .buyguide-rumor-group[open] .buyguide-rumor-group__summary {
  border-bottom-color: var(--border);
}

body.dark .buyguide-rumor-group__count,
:root[data-theme="dark"] .buyguide-rumor-group__count {
  border-color: var(--border);
  background: var(--bg-alt);
  color: var(--text);
}

body.dark .buyguide-feature-list li,
body.dark .buyguide-note-list li,
body.dark .buyguide-sub-candidates li,
body.dark .buyguide-preset-card,
body.dark .buyguide-advice-candidates li,
body.dark .buyguide-table th,
body.dark .buyguide-compare-card,
body.dark .buyguide-decision-card,
body.dark .buyguide-status-card,
:root[data-theme="dark"] .buyguide-feature-list li,
:root[data-theme="dark"] .buyguide-note-list li,
:root[data-theme="dark"] .buyguide-sub-candidates li,
:root[data-theme="dark"] .buyguide-preset-card,
:root[data-theme="dark"] .buyguide-advice-candidates li,
:root[data-theme="dark"] .buyguide-table th,
:root[data-theme="dark"] .buyguide-compare-card,
:root[data-theme="dark"] .buyguide-decision-card,
:root[data-theme="dark"] .buyguide-status-card {
  background: var(--bg-alt);
  border-color: var(--border);
}

body.dark .buyguide-table td,
body.dark .buyguide-table th,
body.dark .buyguide-compare-card__item,
body.dark .buyguide-decision-card__item,
body.dark .buyguide-timing-meta div,
body.dark .buyguide-timing-details div,
:root[data-theme="dark"] .buyguide-table td,
:root[data-theme="dark"] .buyguide-table th,
:root[data-theme="dark"] .buyguide-compare-card__item,
:root[data-theme="dark"] .buyguide-decision-card__item,
:root[data-theme="dark"] .buyguide-timing-meta div,
:root[data-theme="dark"] .buyguide-timing-details div {
  border-color: var(--border);
}

body.dark .buyguide-option.is-selected,
body.dark .buyguide-btn--primary,
body.dark .buyguide-preset-card:hover,
body.dark .buyguide-preset-card.is-active,
body.dark .buyguide-filter-chip:hover,
body.dark .buyguide-filter-chip.is-active,
body.dark .buyguide-hero__meta-badge,
:root[data-theme="dark"] .buyguide-option.is-selected,
:root[data-theme="dark"] .buyguide-btn--primary,
:root[data-theme="dark"] .buyguide-preset-card:hover,
:root[data-theme="dark"] .buyguide-preset-card.is-active,
:root[data-theme="dark"] .buyguide-filter-chip:hover,
:root[data-theme="dark"] .buyguide-filter-chip.is-active,
:root[data-theme="dark"] .buyguide-hero__meta-badge {
  background: var(--color-control-primary-bg);
  color: var(--color-control-primary-text);
  border-color: var(--color-control-primary-bg);
}

body.dark .buyguide-preset-card:hover span,
body.dark .buyguide-preset-card.is-active span,
:root[data-theme="dark"] .buyguide-preset-card:hover span,
:root[data-theme="dark"] .buyguide-preset-card.is-active span {
  color: rgba(17, 17, 17, 0.74);
}

body.dark .buyguide-entry-card--primary,
:root[data-theme="dark"] .buyguide-entry-card--primary {
  background: var(--color-control-primary-bg);
  color: var(--color-control-primary-text);
  border-color: var(--color-control-primary-bg);
}

body.dark .buyguide-option:hover,
body.dark .buyguide-entry-card:hover,
body.dark .buyguide-simple-entry-card:hover,
body.dark .buyguide-btn:hover,
body.dark .buyguide-chip:hover,
body.dark .buyguide-usecase-card:hover,
:root[data-theme="dark"] .buyguide-option:hover,
:root[data-theme="dark"] .buyguide-entry-card:hover,
:root[data-theme="dark"] .buyguide-simple-entry-card:hover,
:root[data-theme="dark"] .buyguide-btn:hover,
:root[data-theme="dark"] .buyguide-chip:hover,
:root[data-theme="dark"] .buyguide-usecase-card:hover {
  background: var(--color-control-primary-bg);
  color: var(--color-control-primary-text);
  border-color: var(--color-control-primary-bg);
}

body.dark .buyguide-entry-card--primary:hover,
body.dark .buyguide-btn--primary:hover,
:root[data-theme="dark"] .buyguide-entry-card--primary:hover,
:root[data-theme="dark"] .buyguide-btn--primary:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

body.dark .buyguide-progress__bar,
:root[data-theme="dark"] .buyguide-progress__bar {
  background: var(--border);
}

body.dark .buyguide-progress__fill,
:root[data-theme="dark"] .buyguide-progress__fill {
  background: var(--color-control-primary-bg);
}

body.dark .buyguide-timing-badge__mark,
:root[data-theme="dark"] .buyguide-timing-badge__mark {
  background: var(--text);
}

body.dark .buyguide-timing-badge--buy .buyguide-timing-badge__mark,
:root[data-theme="dark"] .buyguide-timing-badge--buy .buyguide-timing-badge__mark {
  background: #31d17b;
}

body.dark .buyguide-timing-badge--neutral .buyguide-timing-badge__mark,
:root[data-theme="dark"] .buyguide-timing-badge--neutral .buyguide-timing-badge__mark {
  background: #ffd86b;
}

body.dark .buyguide-timing-badge--wait .buyguide-timing-badge__mark,
:root[data-theme="dark"] .buyguide-timing-badge--wait .buyguide-timing-badge__mark {
  background: #ff6b6b;
}

body.dark .buyguide-error,
:root[data-theme="dark"] .buyguide-error {
  background: #2a1718;
  border-color: #f08a8a;
  color: #ffb4b4;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .buyguide-entry-card,
  :root:not([data-theme]) .buyguide-question-card,
  :root:not([data-theme]) .buyguide-result__block,
  :root:not([data-theme]) .buyguide-option,
  :root:not([data-theme]) .buyguide-btn,
  :root:not([data-theme]) .buyguide-chip,
  :root:not([data-theme]) .buyguide-usecase-card,
  :root:not([data-theme]) .buyguide-tool-panel,
  :root:not([data-theme]) .buyguide-preset-card,
  :root:not([data-theme]) .buyguide-filter-chip,
  :root:not([data-theme]) .buyguide-timing-summary-card,
  :root:not([data-theme]) .buyguide-timing-card,
  :root:not([data-theme]) .buyguide-timing-definition,
  :root:not([data-theme]) .buyguide-decision-card {
    background: var(--color-bg-elevated);
    color: var(--text);
    border-color: var(--border);
  }

  :root:not([data-theme]) .buyguide-option.is-selected,
  :root:not([data-theme]) .buyguide-btn--primary,
  :root:not([data-theme]) .buyguide-preset-card:hover,
  :root:not([data-theme]) .buyguide-preset-card.is-active,
  :root:not([data-theme]) .buyguide-filter-chip:hover,
  :root:not([data-theme]) .buyguide-filter-chip.is-active,
  :root:not([data-theme]) .buyguide-hero__meta-badge {
    background: var(--color-control-primary-bg);
    color: var(--color-control-primary-text);
    border-color: var(--color-control-primary-bg);
  }

  :root:not([data-theme]) .buyguide-entry-card--primary {
    background: var(--color-control-primary-bg);
    color: var(--color-control-primary-text);
    border-color: var(--color-control-primary-bg);
  }
  :root:not([data-theme]) .buyguide-decision-card__item dt {
    color: var(--text-muted);
  }
}

@media (min-width: 700px) {
  .buyguide-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .buyguide-usecase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .buyguide-compare-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .buyguide-status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .buyguide-timing-summary-grid,
  .buyguide-simple-entry-grid,
  .buyguide-timing-definitions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .buyguide-rumor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .buyguide-rumor-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .buyguide-timing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .buyguide-timing-section-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .buyguide-rumor-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .buyguide-rumor-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .buyguide-entry-grid--category {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .buyguide-entry-grid--category {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .buyguide-hero {
    padding: 86px 0 36px;
  }
  .buyguide-section {
    padding: 56px 0;
  }
}

@media (max-width: 699px) {
  .buyguide-hero {
    padding: 62px 0 32px;
  }
  .buyguide-hero__inner,
  .buyguide-section__inner,
  .buyguide-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
  .buyguide-hero__title {
    font-size: 58px;
    line-height: 0.95;
  }
  .buyguide-hero__title--long {
    font-size: 44px;
    line-height: 1.08;
  }
  .buyguide-hero__sub {
    font-size: 16px;
    line-height: 1.5;
  }
  .buyguide-hero__lead,
  .buyguide-section__lead {
    font-size: 14px;
    line-height: 1.85;
  }
  .buyguide-section {
    padding: 30px 0;
  }
  .buyguide-section__title {
    font-size: 28px;
  }
  .buyguide-performance-card {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 22px 18px;
  }
  .buyguide-performance-card__copy {
    gap: 12px;
  }
  .buyguide-performance-card__kicker {
    font-size: 17px;
    line-height: 1.55;
  }
  .buyguide-performance-card__title {
    font-size: 42px;
    line-height: 0.98;
  }
  .buyguide-performance-card__cta {
    justify-self: stretch;
  }
  .buyguide-entry-card,
  .buyguide-entry-card--primary,
  .buyguide-simple-entry-card,
  .buyguide-usecase-card,
  .buyguide-question-card,
  .buyguide-result__block,
  .buyguide-tool-panel,
  .buyguide-timing-summary-card,
  .buyguide-timing-card,
  .buyguide-timing-definition {
    padding: 16px;
  }
  .buyguide-entry-card__title {
    font-size: 18px;
  }
  .buyguide-usecase-grid,
  .buyguide-preset-grid {
    grid-template-columns: 1fr;
  }
  .buyguide-filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .buyguide-filter-chip {
    width: 100%;
  }
  .buyguide-result__title {
    font-size: 21px;
  }
  .buyguide-actions,
  .buyguide-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .buyguide-btn {
    width: 100%;
    min-width: 0;
  }
  .buyguide-table-wrap--desktop {
    display: none;
  }
  .buyguide-compare-cards {
    display: grid;
    gap: 10px;
  }
  .buyguide-compare-card {
    padding: 10px;
  }
  .buyguide-compare-card__title {
    font-size: 15px;
  }
  .buyguide-compare-card__head,
  .buyguide-compare-card__item {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .buyguide-compare-card__item dd,
  .buyguide-decision-card__item dd {
    text-align: left;
  }
  .buyguide-decision-cards {
    display: grid;
    gap: 10px;
  }
  .buyguide-decision-card {
    padding: 10px;
  }
  .buyguide-table {
    min-width: 420px;
  }
  .buyguide-table th,
  .buyguide-table td {
    padding: 7px 8px;
    font-size: 12px;
  }
  .buyguide-timing-card__head {
    grid-template-columns: 1fr;
  }
  .buyguide-timing-details {
    grid-template-columns: 1fr;
  }
  .buyguide-timing-meta div {
    grid-template-columns: 1fr;
  }
  .buyguide-timing-meta dd {
    text-align: left;
    font-size: 16px;
  }
}

/* ---------- Dark mode neutral palette (2026-05-03) ---------- */
body.dark .buyguide-root,
:root[data-theme="dark"] .buyguide-root {
  background: var(--color-bg);
  color: var(--color-text-primary);
  border-bottom-color: var(--color-border-subtle);
}

body.dark .buyguide-hero,
body.dark .buyguide-section--timing-main,
body.dark.buyguide-page .section--buy-time,
:root[data-theme="dark"] .buyguide-hero,
:root[data-theme="dark"] .buyguide-section--timing-main,
:root[data-theme="dark"] body.buyguide-page .section--buy-time {
  background: var(--color-surface);
  border-color: var(--color-border-subtle);
}

body.dark .buyguide-section,
:root[data-theme="dark"] .buyguide-section {
  border-color: var(--color-border-subtle);
}

body.dark .buyguide-section--timing-main,
:root[data-theme="dark"] .buyguide-section--timing-main {
  background: var(--color-surface);
}

body.dark .buyguide-hero__title,
body.dark .buyguide-hero__sub,
body.dark .buyguide-section__title,
body.dark .buyguide-question-card__title,
body.dark .buyguide-result__title,
body.dark .buyguide-timing-card__title,
body.dark .buyguide-timing-badge__text strong,
:root[data-theme="dark"] .buyguide-hero__title,
:root[data-theme="dark"] .buyguide-hero__sub,
:root[data-theme="dark"] .buyguide-section__title,
:root[data-theme="dark"] .buyguide-question-card__title,
:root[data-theme="dark"] .buyguide-result__title,
:root[data-theme="dark"] .buyguide-timing-card__title,
:root[data-theme="dark"] .buyguide-timing-badge__text strong {
  color: var(--color-text-primary);
}

body.dark .buyguide-hero__lead,
body.dark .buyguide-section__lead,
body.dark .buyguide-question-card__label,
body.dark .buyguide-result__desc,
body.dark .buyguide-timing-summary-card__meaning,
body.dark .buyguide-timing-definition p,
body.dark .buyguide-timing-card__comment,
body.dark .buyguide-timing-details dd,
body.dark .buyguide-result-timing p,
:root[data-theme="dark"] .buyguide-hero__lead,
:root[data-theme="dark"] .buyguide-section__lead,
:root[data-theme="dark"] .buyguide-question-card__label,
:root[data-theme="dark"] .buyguide-result__desc,
:root[data-theme="dark"] .buyguide-timing-summary-card__meaning,
:root[data-theme="dark"] .buyguide-timing-definition p,
:root[data-theme="dark"] .buyguide-timing-card__comment,
:root[data-theme="dark"] .buyguide-timing-details dd,
:root[data-theme="dark"] .buyguide-result-timing p {
  color: var(--color-text-secondary);
}

body.dark .buyguide-hero__meta,
body.dark .buyguide-progress,
body.dark .buyguide-result__kicker,
body.dark .buyguide-compare-card__item dt,
body.dark .buyguide-decision-card__item dt,
body.dark .buyguide-preset-card span,
body.dark .buyguide-advice-candidates span,
body.dark .buyguide-compare-card__summary,
body.dark .buyguide-result__meta,
body.dark .buyguide-timing-card__category,
body.dark .buyguide-timing-meta dt,
body.dark .buyguide-timing-details dt,
body.dark .buyguide-timing-badge__text span,
:root[data-theme="dark"] .buyguide-hero__meta,
:root[data-theme="dark"] .buyguide-progress,
:root[data-theme="dark"] .buyguide-result__kicker,
:root[data-theme="dark"] .buyguide-compare-card__item dt,
:root[data-theme="dark"] .buyguide-decision-card__item dt,
:root[data-theme="dark"] .buyguide-preset-card span,
:root[data-theme="dark"] .buyguide-advice-candidates span,
:root[data-theme="dark"] .buyguide-compare-card__summary,
:root[data-theme="dark"] .buyguide-result__meta,
:root[data-theme="dark"] .buyguide-timing-card__category,
:root[data-theme="dark"] .buyguide-timing-meta dt,
:root[data-theme="dark"] .buyguide-timing-details dt,
:root[data-theme="dark"] .buyguide-timing-badge__text span {
  color: var(--color-text-muted);
}

body.dark .buyguide-hero__kicker,
:root[data-theme="dark"] .buyguide-hero__kicker {
  color: var(--color-brand);
}

body.dark .buyguide-entry-card,
body.dark .buyguide-simple-entry-card,
body.dark .buyguide-rumor-card,
body.dark .buyguide-rumor-group,
body.dark .buyguide-rumor-pill,
body.dark .buyguide-question-card,
body.dark .buyguide-result__block,
body.dark .buyguide-option,
body.dark .buyguide-btn,
body.dark .buyguide-chip,
body.dark .buyguide-usecase-card,
body.dark .buyguide-tool-panel,
body.dark .buyguide-preset-card,
body.dark .buyguide-filter-chip,
body.dark .buyguide-timing-summary-card,
body.dark .buyguide-timing-card,
body.dark .buyguide-timing-definition,
:root[data-theme="dark"] .buyguide-entry-card,
:root[data-theme="dark"] .buyguide-simple-entry-card,
:root[data-theme="dark"] .buyguide-rumor-card,
:root[data-theme="dark"] .buyguide-rumor-group,
:root[data-theme="dark"] .buyguide-rumor-pill,
:root[data-theme="dark"] .buyguide-question-card,
:root[data-theme="dark"] .buyguide-result__block,
:root[data-theme="dark"] .buyguide-option,
:root[data-theme="dark"] .buyguide-btn,
:root[data-theme="dark"] .buyguide-chip,
:root[data-theme="dark"] .buyguide-usecase-card,
:root[data-theme="dark"] .buyguide-tool-panel,
:root[data-theme="dark"] .buyguide-preset-card,
:root[data-theme="dark"] .buyguide-filter-chip,
:root[data-theme="dark"] .buyguide-timing-summary-card,
:root[data-theme="dark"] .buyguide-timing-card,
:root[data-theme="dark"] .buyguide-timing-definition {
  background: var(--color-surface-elevated);
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

body.dark .buyguide-feature-list li,
body.dark .buyguide-note-list li,
body.dark .buyguide-sub-candidates li,
body.dark .buyguide-advice-candidates li,
body.dark .buyguide-table th,
body.dark .buyguide-compare-card,
body.dark .buyguide-decision-card,
body.dark .buyguide-status-card,
:root[data-theme="dark"] .buyguide-feature-list li,
:root[data-theme="dark"] .buyguide-note-list li,
:root[data-theme="dark"] .buyguide-sub-candidates li,
:root[data-theme="dark"] .buyguide-advice-candidates li,
:root[data-theme="dark"] .buyguide-table th,
:root[data-theme="dark"] .buyguide-compare-card,
:root[data-theme="dark"] .buyguide-decision-card,
:root[data-theme="dark"] .buyguide-status-card {
  background: var(--color-surface-elevated);
  border-color: var(--color-border);
}

body.dark .buyguide-table td,
body.dark .buyguide-table th,
body.dark .buyguide-compare-card__item,
body.dark .buyguide-decision-card__item,
body.dark .buyguide-timing-meta div,
body.dark .buyguide-timing-details div,
body.dark .buyguide-rumor-group[open] .buyguide-rumor-group__summary,
:root[data-theme="dark"] .buyguide-table td,
:root[data-theme="dark"] .buyguide-table th,
:root[data-theme="dark"] .buyguide-compare-card__item,
:root[data-theme="dark"] .buyguide-decision-card__item,
:root[data-theme="dark"] .buyguide-timing-meta div,
:root[data-theme="dark"] .buyguide-timing-details div,
:root[data-theme="dark"] .buyguide-rumor-group[open] .buyguide-rumor-group__summary {
  border-color: var(--color-border-subtle);
}

body.dark .buyguide-hero__meta-badge,
body.dark .buyguide-entry-card--primary,
body.dark .buyguide-btn--primary,
body.dark .buyguide-option.is-selected,
body.dark .buyguide-preset-card:hover,
body.dark .buyguide-preset-card.is-active,
body.dark .buyguide-filter-chip:hover,
body.dark .buyguide-filter-chip.is-active,
:root[data-theme="dark"] .buyguide-hero__meta-badge,
:root[data-theme="dark"] .buyguide-entry-card--primary,
:root[data-theme="dark"] .buyguide-btn--primary,
:root[data-theme="dark"] .buyguide-option.is-selected,
:root[data-theme="dark"] .buyguide-preset-card:hover,
:root[data-theme="dark"] .buyguide-preset-card.is-active,
:root[data-theme="dark"] .buyguide-filter-chip:hover,
:root[data-theme="dark"] .buyguide-filter-chip.is-active {
  background: var(--color-control-primary-bg);
  color: var(--color-control-primary-text);
  border-color: var(--color-control-primary-bg);
}

body.dark .buyguide-entry-card:hover,
body.dark .buyguide-simple-entry-card:hover,
body.dark .buyguide-rumor-card:hover,
body.dark .buyguide-rumor-pill:hover,
body.dark .buyguide-option:hover,
body.dark .buyguide-btn:hover,
body.dark .buyguide-chip:hover,
body.dark .buyguide-usecase-card:hover,
:root[data-theme="dark"] .buyguide-entry-card:hover,
:root[data-theme="dark"] .buyguide-simple-entry-card:hover,
:root[data-theme="dark"] .buyguide-rumor-card:hover,
:root[data-theme="dark"] .buyguide-rumor-pill:hover,
:root[data-theme="dark"] .buyguide-option:hover,
:root[data-theme="dark"] .buyguide-btn:hover,
:root[data-theme="dark"] .buyguide-chip:hover,
:root[data-theme="dark"] .buyguide-usecase-card:hover {
  background: var(--color-control-primary-bg);
  color: var(--color-control-primary-text);
  border-color: var(--color-control-primary-bg);
}

body.dark .buyguide-entry-card--primary:hover,
body.dark .buyguide-btn--primary:hover,
:root[data-theme="dark"] .buyguide-entry-card--primary:hover,
:root[data-theme="dark"] .buyguide-btn--primary:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

body.dark .buyguide-preset-card:hover span,
body.dark .buyguide-preset-card.is-active span,
:root[data-theme="dark"] .buyguide-preset-card:hover span,
:root[data-theme="dark"] .buyguide-preset-card.is-active span {
  color: rgba(17, 17, 17, 0.72);
}

body.dark .buyguide-rumor-group__count,
:root[data-theme="dark"] .buyguide-rumor-group__count {
  background: var(--color-surface-elevated);
  color: var(--color-text-secondary);
  border-color: var(--color-border);
}

body.dark .buyguide-performance-link,
:root[data-theme="dark"] .buyguide-performance-link {
  background: var(--color-surface);
}

body.dark .buyguide-performance-card,
:root[data-theme="dark"] .buyguide-performance-card {
  border-color: var(--color-border);
  background: transparent;
  color: var(--color-text-primary);
}

body.dark .buyguide-performance-card__lead,
:root[data-theme="dark"] .buyguide-performance-card__lead {
  color: var(--color-text-secondary);
}

body.dark .buyguide-performance-card__cta,
:root[data-theme="dark"] .buyguide-performance-card__cta {
  background: var(--color-text-primary);
  color: var(--color-bg);
  border-color: var(--color-text-primary);
}

body.dark .buyguide-performance-card:hover,
:root[data-theme="dark"] .buyguide-performance-card:hover {
  background: var(--color-control-primary-bg);
  color: var(--color-control-primary-text);
  border-color: var(--color-control-primary-bg);
}

body.dark .buyguide-performance-card:hover .buyguide-performance-card__lead,
:root[data-theme="dark"] .buyguide-performance-card:hover .buyguide-performance-card__lead {
  color: rgba(17, 17, 17, 0.72);
}

body.dark .buyguide-performance-card:hover .buyguide-performance-card__cta,
:root[data-theme="dark"] .buyguide-performance-card:hover .buyguide-performance-card__cta {
  background: #111;
  color: #fff;
  border-color: #111;
}

body.dark .buyguide-progress__bar,
:root[data-theme="dark"] .buyguide-progress__bar {
  background: var(--color-border-subtle);
}

body.dark .buyguide-progress__fill,
:root[data-theme="dark"] .buyguide-progress__fill {
  background: var(--color-control-primary-bg);
}

body.dark .buyguide-timing-badge__mark,
:root[data-theme="dark"] .buyguide-timing-badge__mark {
  background: var(--color-text-primary);
}

body.dark .buyguide-timing-badge--buy .buyguide-timing-badge__mark,
:root[data-theme="dark"] .buyguide-timing-badge--buy .buyguide-timing-badge__mark {
  background: #31d17b;
}

body.dark .buyguide-timing-badge--neutral .buyguide-timing-badge__mark,
:root[data-theme="dark"] .buyguide-timing-badge--neutral .buyguide-timing-badge__mark {
  background: #ffd86b;
}

body.dark .buyguide-timing-badge--wait .buyguide-timing-badge__mark,
:root[data-theme="dark"] .buyguide-timing-badge--wait .buyguide-timing-badge__mark {
  background: #ff6b6b;
}

body.dark .buyguide-error,
:root[data-theme="dark"] .buyguide-error {
  background: #2a1718;
  border-color: #ff8b8b;
  color: #ffb4b4;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .buyguide-root {
    background: var(--color-bg);
    color: var(--color-text-primary);
    border-bottom-color: var(--color-border-subtle);
  }

  :root:not([data-theme]) .buyguide-hero,
  :root:not([data-theme]) .buyguide-section--timing-main,
  :root:not([data-theme]) body.buyguide-page .section--buy-time {
    background: var(--color-surface);
    border-color: var(--color-border-subtle);
  }

  :root:not([data-theme]) .buyguide-section--timing-main {
    background: var(--color-surface);
  }

  :root:not([data-theme]) .buyguide-entry-card,
  :root:not([data-theme]) .buyguide-simple-entry-card,
  :root:not([data-theme]) .buyguide-rumor-card,
  :root:not([data-theme]) .buyguide-rumor-group,
  :root:not([data-theme]) .buyguide-rumor-pill,
  :root:not([data-theme]) .buyguide-question-card,
  :root:not([data-theme]) .buyguide-result__block,
  :root:not([data-theme]) .buyguide-option,
  :root:not([data-theme]) .buyguide-btn,
  :root:not([data-theme]) .buyguide-chip,
  :root:not([data-theme]) .buyguide-usecase-card,
  :root:not([data-theme]) .buyguide-tool-panel,
  :root:not([data-theme]) .buyguide-preset-card,
  :root:not([data-theme]) .buyguide-filter-chip,
  :root:not([data-theme]) .buyguide-timing-summary-card,
  :root:not([data-theme]) .buyguide-timing-card,
  :root:not([data-theme]) .buyguide-timing-definition {
    background: var(--color-surface-elevated);
    color: var(--color-text-primary);
    border-color: var(--color-border);
  }

  :root:not([data-theme]) .buyguide-hero__meta-badge,
  :root:not([data-theme]) .buyguide-entry-card--primary,
  :root:not([data-theme]) .buyguide-btn--primary,
  :root:not([data-theme]) .buyguide-option.is-selected,
  :root:not([data-theme]) .buyguide-preset-card:hover,
  :root:not([data-theme]) .buyguide-preset-card.is-active,
  :root:not([data-theme]) .buyguide-filter-chip:hover,
  :root:not([data-theme]) .buyguide-filter-chip.is-active {
    background: var(--color-control-primary-bg);
    color: var(--color-control-primary-text);
    border-color: var(--color-control-primary-bg);
  }

  :root:not([data-theme]) .buyguide-performance-link {
    background: var(--color-surface);
  }

  :root:not([data-theme]) .buyguide-performance-card {
    border-color: var(--color-border);
    background: transparent;
    color: var(--color-text-primary);
  }

  :root:not([data-theme]) .buyguide-performance-card__lead {
    color: var(--color-text-secondary);
  }

  :root:not([data-theme]) .buyguide-performance-card__cta {
    background: var(--color-text-primary);
    color: var(--color-bg);
    border-color: var(--color-text-primary);
  }

  :root:not([data-theme]) .buyguide-performance-card:hover {
    background: var(--color-control-primary-bg);
    color: var(--color-control-primary-text);
    border-color: var(--color-control-primary-bg);
  }

  :root:not([data-theme]) .buyguide-performance-card:hover .buyguide-performance-card__lead {
    color: rgba(17, 17, 17, 0.72);
  }

  :root:not([data-theme]) .buyguide-performance-card:hover .buyguide-performance-card__cta {
    background: #111;
    color: #fff;
    border-color: #111;
  }

}
