:root {
  --bg: #fbf7f1;
  --paper: #fffefd;
  --ink: #172642;
  --muted: #586171;
  --line: #eadfd5;
  --soft: #f4edf5;
  --brand: #193056;
  --brand-2: #bd6179;
  --brand-3: #8d75b1;
  --green: #6d9a86;
  --warn: #a15c00;
  --danger: #a13434;
  --ok: #26734f;
  --shadow: 0 18px 44px rgba(47, 34, 23, 0.1);
  --soft-shadow: 0 12px 28px rgba(47, 34, 23, 0.08);
  --hero-y: 150px;
  --hero-after: 140px;
  --section-y: 140px;
  --card-gap: 28px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(189, 97, 121, 0.12), transparent 32rem),
    radial-gradient(circle at 92% 6%, rgba(141, 117, 177, 0.1), transparent 28rem),
    linear-gradient(180deg, #fbf7f1 0%, #fffefd 52%, #fbf7f1 100%),
    var(--bg);
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", "Segoe UI", serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.fi::before {
  line-height: 1;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(1410px, calc(100% - 40px));
  margin: 16px auto 0;
  border: 1px solid rgba(234, 223, 213, 0.75);
  border-radius: 16px;
  background: rgba(255, 254, 253, 0.94);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: none;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 95px;
  height: 58px;
  object-fit: contain;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  color: #1c2740;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 12px 14px;
  border-radius: 999px;
}

.nav a:hover,
.nav a.active {
  background: transparent;
  color: var(--ink);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
}

.nav a[href="/post"] {
  padding: 14px 25px;
  color: #fff;
  background: linear-gradient(135deg, #c76880, #ad4d6a);
  box-shadow: 0 10px 20px rgba(189, 97, 121, 0.25);
}

.nav a[href="/post"].active::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(25, 48, 86, 0.18);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: rgba(255, 254, 253, 0.86);
  box-shadow: 0 8px 18px rgba(47, 34, 23, 0.08);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.page {
  max-width: 1410px;
  margin: 0 auto;
  padding: 58px 32px 48px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  width: calc(100vw - 15px);
  margin-left: calc(50% - 50vw + 7.5px);
  margin-right: calc(50% - 50vw + 7.5px);
  min-height: 770px;
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  padding: 190px max(32px, calc((100vw - 1410px) / 2 + 32px)) 170px;
  background: #fbf7f1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251,247,241,1) 0%, rgba(251,247,241,0.99) 34%, rgba(251,247,241,0.76) 50%, rgba(251,247,241,0.12) 72%),
    linear-gradient(180deg, rgba(251,247,241,0.18) 0%, rgba(251,247,241,0) 28%, rgba(251,247,241,0.28) 100%);
}

.season-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background-position: calc(100% + 48px) top;
  background-size: auto 100%;
  background-repeat: no-repeat;
  transition: opacity 2600ms ease-in-out, filter 2600ms ease-in-out;
  filter: saturate(0.98) brightness(1.01);
}

.season-bg.is-active {
  opacity: 1;
  filter: saturate(1) brightness(1);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: -34px 0 0;
  font-size: clamp(3.1rem, 3.72vw, 4.1rem);
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 910px;
  color: var(--brand);
  text-shadow: 0 2px 0 rgba(255,255,255,0.6);
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy h1 .hero-highlight {
  display: inline-block;
  color: var(--brand-2);
  transform: rotate(-10deg);
  transform-origin: 50% 58%;
}

.hero-copy h1 .mobile-line {
  display: inline;
}

.hero-copy h1 em {
  color: var(--brand);
  font-style: normal;
}

.hero-copy h1 .hero-accent {
  display: inline-block;
  color: var(--brand-2);
  font-size: 1.2em;
  line-height: 1;
}

.hero-copy h1 .hero-tilt {
  display: inline-block;
  transform: rotate(-15deg);
  transform-origin: 50% 58%;
}

.lead {
  color: #2d3649;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 2.25;
  max-width: 820px;
  margin: 0;
}

.hero-note {
  color: #2d3649;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 2.15;
  max-width: 850px;
  margin: 24px 0 0;
}

.pc-only {
  display: initial;
}

.mobile-only {
  display: none;
}

.hero-visual {
  display: none;
}

.hero-assurance {
  width: min(740px, 100%);
  min-height: 76px;
  margin-top: 44px;
  padding: 0 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  border: 1px solid rgba(222, 211, 204, 0.9);
  border-radius: 18px;
  background: rgba(255, 254, 253, 0.88);
  box-shadow: 0 22px 48px rgba(47, 34, 23, 0.08);
  backdrop-filter: blur(8px);
}

.hero-assurance span {
  min-width: 0;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.hero-assurance span + span {
  border-left: 1px solid rgba(213, 202, 194, 0.9);
}

.hero-assurance .fi {
  color: #7b66aa;
  font-size: 1.5rem;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  border: 0;
  border-radius: 999px;
  background: #ddd0ec;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 58px;
  font-size: 1.42rem;
  box-shadow: 0 8px 24px rgba(141, 117, 177, 0.14);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 48px;
}

.hero-actions {
  align-items: flex-start;
}

.primary-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-microcopy {
  margin: 0;
  color: #536074;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.7;
  text-align: center;
  max-width: 360px;
}

.button,
.primary,
.secondary,
.danger,
.ghost {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 25px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
}

.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(25, 48, 86, 0.24);
}

.secondary {
  background: var(--ink);
  color: #fff;
}

.secondary:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

.ghost {
  background: rgba(255, 254, 253, 0.72);
  border-color: var(--brand);
  color: var(--brand);
}

.icon-button {
  min-width: 330px;
  padding-inline: 28px;
  justify-content: space-between;
}

.icon-button.ghost {
  min-width: 410px;
  font-size: 1.08rem;
}

.danger {
  background: var(--danger);
  color: #fff;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3:not(.experience-card-grid) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--soft-shadow);
}

.ai-review-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.ai-review-panel p {
  margin: 0;
}

.ai-review-panel .chips {
  margin-top: 2px;
}

.ng-keyword-inline-form {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.ng-keyword-inline-form h3 {
  margin: 0;
}

.ng-selection-tool {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 241, 247, 0.45);
}

.ng-selection-tool .help {
  overflow-wrap: anywhere;
}

.ng-selection-tool .secondary {
  width: 100%;
  min-height: 50px;
}

.section {
  margin-top: 56px;
}

.home-page > .section {
  margin-top: 0;
  padding-block: var(--section-y);
}

@media (min-width: 861px) {
  .home-page > .section {
    padding-block: 0;
  }

  .home-page > .feature-section {
    padding-top: var(--section-y);
  }

  .home-page > .section + .section {
    margin-top: 150px;
  }

  .home-page > .feature-section + .search-route-section {
    margin-top: 92px;
  }

  .home-page > .category-section {
    padding-bottom: var(--section-y);
  }

  .home-page > .category-section + .faq-section {
    margin-top: 150px;
  }

  .home-page > .category-section {
    padding-bottom: 0;
  }

  .home-page > .review-flow {
    margin-top: -88px;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  color: #687082;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--brand);
}

.breadcrumbs span[aria-current="page"] {
  color: #8a7080;
}

.breadcrumb-separator {
  color: #b7adad;
  font-weight: 700;
}

.narrow-page .breadcrumbs {
  width: min(760px, 100%);
  margin-inline: auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading h2,
.panel h2,
.panel h3 {
  margin: 0;
}

.results-heading {
  align-items: center;
}

.results-title-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.results-title-actions .detail-filter-toggle {
  margin: 0;
}

.result-tools {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  flex: 0 1 640px;
  flex-wrap: nowrap;
  gap: 12px;
}

.keyword-search {
  display: flex;
  align-items: end;
  flex: 1 1 auto;
  gap: 8px;
}

.keyword-control {
  min-width: 0;
  width: 100%;
}

.sort-control {
  flex: 0 0 240px;
  min-width: 0;
}

.result-search-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--brand);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(25, 48, 86, 0.18);
}

.with-badge,
label span:has(.required-badge) {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.required-badge,
.hidden-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.required-badge {
  border: 1px solid rgba(189, 97, 121, 0.28);
  background: #f9e6ec;
  color: var(--brand-2);
}

.hidden-badge {
  border: 1px solid rgba(88, 97, 113, 0.16);
  background: #f2f2f2;
  color: #8a8f98;
}

.eyebrow {
  color: var(--brand-3);
  font-size: 0.77rem;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 6px;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
}

.eyebrow.pink {
  color: #d994a6;
}

.eyebrow.green {
  color: #79a48e;
}

.eyebrow.gold {
  color: #b28442;
}

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 18px 54px rgba(42, 34, 27, 0.08);
  min-height: 470px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 97, 121, 0.42);
  box-shadow: 0 28px 60px rgba(47, 34, 23, 0.13);
}

.card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding: 36px 40px 24px;
}

.card-top-row {
  display: flex;
  align-items: start;
  gap: 14px;
  padding-right: 86px;
  margin-bottom: 42px;
}

.card-top-row > .chips {
  min-width: 0;
}

.card h3 {
  margin: 0 0 42px;
  color: var(--brand);
  font-size: 1.52rem;
  line-height: 1.72;
  letter-spacing: 0;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card .help {
  margin: 0 0 40px;
  color: #4f5665;
  font-weight: 600;
  line-height: 2;
  font-size: 1rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.meta,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  border: 1px solid var(--line);
  background: #f5eef3;
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 15px;
  font-size: 0.92rem;
  font-weight: 900;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
}

.chip.strong {
  color: #5f5a94;
  border-color: #ded7ef;
  background: #ece7f5;
}

.mbti-chip {
  font-weight: 900;
}

.mbti-analyst {
  color: #6b4aa0;
  border-color: #d8c7ee;
  background: #f0e8fb;
}

.mbti-diplomat {
  color: #2f7a5c;
  border-color: #bfe0cd;
  background: #edf8f1;
}

.mbti-sentinel {
  color: #2f6f8f;
  border-color: #bdd9e8;
  background: #ecf6fb;
}

.mbti-explorer {
  color: #a87a17;
  border-color: #ead393;
  background: #fff8df;
}

.mbti-missing {
  color: #6a7486;
  border-color: #e2ddd8;
  background: #f7f4f0;
}

.signal-search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 28px;
  align-items: start;
  margin-top: 34px;
}

.signal-search-panel,
.selected-summary {
  background: rgba(255, 254, 253, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.signal-search-panel {
  padding: 0;
  overflow: hidden;
}

.search-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 255, 0.54);
}

.search-steps span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 20px 12px 16px;
  color: #8b8498;
  font-weight: 800;
}

.search-steps span + span::before {
  content: "";
  position: absolute;
  top: 35px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #ded8e6;
  z-index: 0;
}

.search-steps strong {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #ded8e6;
  background: var(--paper);
  font-size: 1.35rem;
}

.search-steps .active {
  color: var(--brand);
}

.search-steps .active strong {
  border-color: #a38abd;
  background: #a38abd;
  color: #fff;
}

.search-steps small {
  font-size: 0.86rem;
}

.signal-step {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.signal-step:last-child {
  border-bottom: 0;
}

.signal-step-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
}

.signal-step-heading h2,
.signal-step-heading p {
  margin: 0;
}

.signal-step-heading h2 {
  color: var(--brand);
  font-size: 1.45rem;
  line-height: 1.5;
}

.signal-step-heading p {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.step-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #a38abd;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.step-badge.muted {
  background: #e5ddee;
  color: #7b6898;
}

.signal-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.signal-category-card {
  position: relative;
  min-height: 150px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 254, 253, 0.84);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
  text-align: center;
  line-height: 1.55;
  box-shadow: 0 8px 18px rgba(47, 34, 23, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.signal-category-card:hover,
.signal-category-card.active {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(47, 34, 23, 0.1);
}

.signal-category-card.active {
  box-shadow: 0 14px 30px rgba(47, 34, 23, 0.12);
}

.signal-category-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: inherit;
  font-size: 2rem;
}

.signal-category-card strong {
  color: inherit;
  font: inherit;
  font-size: 1.08rem;
}

.signal-category-card small {
  color: inherit;
  font-weight: 800;
  opacity: 0.72;
}

.selected-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.7);
  color: inherit;
}

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

.signal-choice {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.signal-choice.active {
  border-color: #cfc9c2;
  background: #f5f3f1;
  color: #8d8580;
}

.signal-choice.active span,
.signal-choice.active .fi {
  color: #8d8580;
}

.signal-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.signal-choice span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #334059;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 800;
}

.signal-choice .fi {
  color: #8d8580;
  font-size: 1.2rem;
}

.empty-step {
  padding: 22px;
  border: 1px dashed #d8ccdf;
  border-radius: 10px;
  color: var(--muted);
  background: #fdfaff;
  font-weight: 700;
}

.optional-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.gender-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.gender-choice {
  min-height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
  cursor: pointer;
}

.gender-choice.gender-male {
  border-color: #bfd8ec;
  background: #eef7ff;
  color: #32698d;
}

.gender-choice.gender-female {
  border-color: #efc3cb;
  background: #fff0f2;
  color: #bd5265;
}

.gender-choice.active {
  border-color: #cfc9c2;
  background: #f5f3f1;
  color: #8d8580;
  box-shadow: inset 0 0 0 2px #cfc9c2, 0 10px 20px rgba(47, 34, 23, 0.08);
}

.gender-choice.gender-female.active {
  border-color: #d99baa;
  background: #fff1f4;
  color: #a84c62;
  box-shadow: none;
}

.gender-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.detail-filter-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 10px 18px;
  border: 1px solid #d8d1cb;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
}

.detail-filters {
  margin-bottom: 18px;
}

.load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.load-more-row .detail-filter-toggle {
  min-width: 180px;
  margin: 0;
}

.results-detail-filters {
  margin-top: -4px;
  margin-bottom: 24px;
}

.detail-keyword-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: end;
  min-width: 0;
}

.detail-keyword-search .result-search-button {
  width: 48px;
  height: 44px;
  margin: 0;
}

.detail-keyword-search input {
  min-width: 0;
}

.result-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 2px;
  padding: 12px 18px;
  border: 1px solid #cfc9c2;
  border-radius: 999px;
  background: #f5f3f1;
  color: #524b46;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
}

.result-status.empty {
  border-style: dashed;
  color: var(--muted);
}

.result-status .fi {
  color: #8d8580;
  font-size: 1.1rem;
}

.selected-summary {
  position: sticky;
  top: 120px;
  padding: 28px;
}

.selected-summary h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--brand);
  font-size: 1.45rem;
}

.selected-summary h2 .fi {
  color: #a38abd;
}

.summary-block {
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.summary-block p {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
}

.summary-block p strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-left: 8px;
  padding: 2px 12px;
  border-radius: 999px;
  background: #eee8f6;
  color: #7f64a2;
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #eee8f6;
  color: var(--brand);
  font-weight: 900;
}

.summary-signals {
  display: grid;
  gap: 12px;
}

.summary-signals span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #334059;
  font-weight: 800;
}

.summary-signals .fi {
  color: #9f83be;
}

.summary-empty {
  color: var(--muted);
  font-weight: 700;
}

.summary-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbf9fd;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.55;
}

.summary-note .fi {
  color: #8b79a5;
  font-size: 1.05rem;
}

.filters,
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 22px;
}

.filter-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.pagination-page,
.pagination-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
}

.pagination-page.active {
  border-color: var(--brand-3);
  color: var(--brand-3);
  background: #faf7ff;
}

.pagination-arrow.disabled {
  color: #b8adb7;
  background: #faf8f6;
}

.filter-actions .primary {
  min-width: min(320px, 100%);
}

.attribute-grid {
  display: grid;
  gap: 22px;
}

.attribute-row {
  display: grid;
  column-gap: 12px;
  row-gap: 22px;
}

.attribute-row.cols-1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: calc((100% - 36px) / 4);
}

.attribute-row.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.attribute-row.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wide-field {
  grid-column: span 3;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--ink);
}

label span,
.label {
  font-size: 0.9rem;
}

.label {
  margin-bottom: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 11px 12px;
  min-height: 44px;
}

select {
  appearance: none;
  font-size: 0.86rem;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.65;
}

.experience-body-input {
  min-height: 420px;
}

small,
.help {
  color: var(--muted);
  line-height: 1.6;
}

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

.confirmation-grid {
  grid-template-columns: 1fr;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.publish-check-panel h2 {
  margin-bottom: 22px;
}

.publish-check-panel .checkbox-grid {
  gap: 12px;
}

.publish-check-panel .check {
  padding: 14px 16px;
  gap: 12px;
}

.readonly-group {
  display: grid;
  gap: 10px;
}

.readonly-label {
  margin: 0;
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.readonly-chips {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #faf8f5;
}

.readonly-chips .chip {
  color: #596274;
  border-color: #e5ded6;
  background: #fff;
}

.readonly-empty {
  color: var(--muted);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.readonly-field {
  display: grid;
  gap: 8px;
}

.readonly-field span {
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.readonly-field strong {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #faf8f5;
  color: #596274;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.96rem;
}

.audit-panel {
  overflow: hidden;
}

.audit-panel .section-heading .help {
  font-size: 0.82rem;
  line-height: 1.45;
}

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

.audit-row {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf8;
}

.audit-row span {
  color: var(--muted);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.audit-row code {
  overflow-wrap: anywhere;
  color: var(--brand);
  font-family: "Consolas", "Menlo", monospace;
  font-size: 0.84rem;
  line-height: 1.5;
}

.notice {
  background: #fff7e6;
  border: 1px solid #ead2a2;
  color: #5e3c00;
  border-radius: 8px;
  padding: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.notice.ai-finding-danger {
  background: #fff0ef;
  border-color: #efb8b2;
  color: #74312b;
}

.admin-raw-panel h2 {
  margin-bottom: 14px;
}

.admin-raw-panel > h3:not(.admin-raw-subtitle) {
  margin-bottom: 24px;
  line-height: 1.45;
}

.admin-raw-body {
  margin-top: 34px;
  white-space: pre-wrap;
}

.admin-raw-subtitle {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.05rem;
}

.admin-raw-panel .quote {
  padding: 20px 22px;
}

.ai-mark {
  border-radius: 5px;
  padding: 0.08em 0.16em;
}

.ai-mark-review {
  background: #fff1bd;
  color: inherit;
}

.ai-mark-danger {
  background: #ffd8d6;
  color: #6b211c;
}

.ai-mark-mask {
  background: #f7dbe7;
  color: #4b1830;
  box-shadow: inset 0 -0.08em 0 #c85b86;
}

.success {
  background: #e8f6ef;
  border: 1px solid #b8dcc9;
  color: #164d34;
  border-radius: 8px;
  padding: 14px;
}

.error {
  background: #fae8e8;
  border: 1px solid #e4b5b5;
  color: #7c2424;
  border-radius: 8px;
  padding: 14px;
}

.form-action-message {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.form-action-message:empty {
  display: none;
}

.publish-check-panel .form-action-message {
  margin-top: 26px;
}

.not-found-page {
  width: min(860px, 100%);
  margin: 56px auto 0;
  padding: 54px;
  display: grid;
  justify-items: center;
  text-align: center;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 18px;
  background: rgba(255, 254, 253, 0.84);
  box-shadow: var(--soft-shadow);
}

.not-found-code {
  color: rgba(189, 97, 121, 0.18);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: clamp(4.4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.not-found-page h1 {
  margin: 2px 0 0;
  color: var(--brand);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.35;
}

.not-found-page .lead {
  max-width: 620px;
  margin: 22px 0 0;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.not-found-actions .icon-button {
  width: 260px;
  min-width: 260px;
  justify-content: center;
}

.article {
  max-width: 860px;
  margin-inline: auto;
}

.article-detail {
  width: min(1040px, 100%);
  max-width: 1040px;
  margin-inline: 0 auto;
  padding-top: 0;
}

.detail-eyebrow {
  display: inline-block;
  color: var(--brand-3);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.login-page {
  width: min(620px, 100%);
  margin-inline: auto;
  text-align: center;
}

.login-page #loginForm {
  margin-top: 22px;
  text-align: left;
  padding: 56px 42px;
  gap: 34px;
}

.login-page #loginForm .primary {
  width: 100%;
}

.post-intro {
  width: 100%;
}

.post-intro .notice {
  width: min(760px, 100%);
  margin-inline: auto;
}

.post-form {
  width: min(760px, 100%);
  margin-inline: auto;
}

.post-body-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.post-body-heading h2 {
  margin: 0;
}

.sample-toggle {
  min-height: 44px;
  padding: 10px 16px;
  flex: 0 0 auto;
  font-size: 0.9rem;
}

.post-body-sample {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
  border: 1px solid rgba(141, 117, 177, 0.26);
  border-radius: 8px;
  background: #fbf9ff;
  padding: 16px;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

.post-body-sample p {
  margin: 0;
}

.post-body-sample p:last-child {
  color: #24304a;
  font-size: 0.94rem;
  line-height: 1.9;
  white-space: pre-wrap;
}

#post-attributes {
  scroll-margin-top: 128px;
}

.post-form button[type="submit"] {
  width: min(320px, 100%);
  justify-self: center;
}

.turnstile-wrap {
  min-height: 65px;
}

.report-page,
.removal-page,
.contact-page,
.report-page #reportForm,
.removal-page #removalForm,
.contact-page #contactForm {
  width: min(620px, 100%);
}

.report-page #reportForm button[type="submit"],
.removal-page #removalForm button[type="submit"],
.contact-page #contactForm button[type="submit"] {
  width: min(320px, 100%);
  justify-self: center;
}

.report-page #reportForm,
.removal-page #removalForm,
.contact-page #contactForm {
  padding: 56px 42px;
  gap: 34px;
}

.report-page #reportForm textarea[name="detail"],
.removal-page #removalForm textarea[name="detail"],
.contact-page #contactForm textarea[name="detail"] {
  min-height: 330px;
}

.contact-removal-guide {
  display: grid;
  gap: 10px;
  margin: 34px 0 22px;
}

.contact-removal-guide p {
  margin: 0;
}

.contact-removal-guide a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-2);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
}

#adminFilter {
  align-items: end;
  grid-template-columns: minmax(220px, 320px) auto;
}

#adminFilter .primary {
  width: 160px;
  min-height: 48px;
  padding-inline: 18px;
}

.admin-layout form.panel.grid > button.primary,
.admin-layout form.panel.grid > button.secondary,
.admin-layout form.panel.grid > button.ghost,
.admin-layout form.panel.grid > button.danger,
.admin-layout .panel.grid > button.primary,
.admin-layout .panel.grid > button.secondary,
.admin-layout .panel.grid > button.ghost,
.admin-layout .panel.grid > button.danger {
  width: auto;
  min-width: 180px;
  justify-self: start;
  padding-inline: 26px;
}

.admin-status-guide {
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
}

.admin-status-guide summary {
  min-height: 58px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.admin-status-guide summary::-webkit-details-marker {
  display: none;
}

.admin-status-guide summary::after {
  content: "開く";
  margin-left: auto;
  color: #8e7899;
  font-size: 0.82rem;
}

.admin-status-guide[open] summary {
  border-bottom: 1px solid var(--line);
}

.admin-status-guide[open] summary::after {
  content: "閉じる";
}

.admin-status-guide-grid {
  padding: 22px 24px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}

.admin-status-guide-item {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffefd;
}

.admin-status-guide-item p {
  margin: 10px 0 0;
  color: #536074;
  font-size: 0.9rem;
  line-height: 1.75;
}

.admin-status-guide-inline {
  margin-top: 2px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 253, 0.74);
  box-shadow: none;
}

.admin-status-guide-inline summary {
  min-height: 50px;
  padding: 14px 16px;
}

.admin-status-guide-inline .admin-status-guide-grid {
  padding: 16px;
}

.article h1 {
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  line-height: 1.08;
  margin: 8px 0 16px;
}

.article-detail h1 {
  max-width: 940px;
  font-size: 32px;
  line-height: 1.38;
  margin: 0 0 52px;
  color: var(--brand);
  word-break: break-all;
  overflow-wrap: anywhere;
}

.detail-overview-panel {
  display: grid;
  gap: 26px;
  margin: 0 0 42px;
  padding: 34px;
  border: 1px solid rgba(226, 212, 197, 0.94);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 70px rgba(42, 29, 16, 0.07);
}

.detail-overview-group {
  display: grid;
  gap: 14px;
}

.detail-meta {
  gap: 7px;
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-meta .chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: #f7f0f5;
  border-color: #e8d9e2;
  color: var(--brand);
  font-size: 0.94rem;
  font-weight: 800;
}

.detail-meta .mbti-chip {
  color: #5a52bc;
}

.detail-signal-section {
  margin-top: 30px;
}

.detail-signal-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.detail-signal-label i {
  color: #8e7acf;
  font-size: 1.08rem;
}

.detail-signal-chips {
  gap: 10px;
}

.detail-signal-chips .chip {
  min-width: 0;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  background: #f2ecff;
  border-color: #e1d9ef;
  color: #5d5298;
  font-size: 0.96rem;
  font-weight: 800;
}

.article-body {
  font-size: 1.05rem;
  line-height: 2;
}

.article-detail .article-body {
  max-width: 920px;
  margin: 64px 0 0;
  padding: 0 36px 48px;
  border-bottom: 1px dashed rgba(41, 48, 64, 0.2);
  color: #1f2e4a;
  font-size: 1.14rem;
  line-height: 2.35;
  overflow-wrap: anywhere;
}

.article-body p {
  margin: 0 0 1em;
}

.detail-actions {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(240px, 320px);
  gap: 18px;
  align-items: center;
  justify-content: start;
  margin: 20px 0 44px;
  max-width: 920px;
  padding: 0 36px;
}

.detail-actions .detail-empathy {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.96rem;
}

.detail-similar-button {
  min-height: 58px;
  padding-inline: 30px;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 18px 36px rgba(25, 48, 86, 0.2);
}

.detail-similar-button i:first-child {
  font-size: 1.45rem;
}

.detail-similar-button i:last-child {
  margin-left: auto;
}

.detail-notice {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 100%;
  margin: 0 0 34px;
  padding: 22px 28px;
  border: 1px solid #efd68a;
  border-radius: 16px;
  background: #fff7db;
  color: #6f5516;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.65;
}

.detail-notice i {
  color: #c49a2d;
  font-size: 1.45rem;
}

.detail-support-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  max-width: 100%;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #6a7486;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.45;
}

.detail-support-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #7b5b74;
  text-decoration: none;
}

.detail-support-links a + a {
  padding-left: 8px;
  border-left: 1px solid var(--line);
}

.info-page .lead {
  margin-top: 22px;
}

.info-sections {
  display: grid;
  gap: 28px;
  margin-top: 46px;
}

.info-sections section {
  display: grid;
  gap: 10px;
}

.info-sections h2 {
  font-size: 1.18rem;
  margin: 0;
}

.info-sections p {
  color: #2d3649;
  line-height: 1.9;
  margin: 0;
}

.quote {
  background: var(--soft);
  border: 1px solid rgba(142, 122, 207, 0.16);
  padding: 16px 18px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.75;
}

h2.quote {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.detail-quote-section {
  margin: 0;
  padding: 30px 34px 34px;
  border: 1px solid #ecd6e3;
  border-radius: 20px;
  background: #fbf0f6;
}

.detail-quote-section .detail-signal-label {
  margin-bottom: 26px;
}

.detail-quote-section .quote + br {
  display: none;
}

.detail-quote-section .quote:not(:last-child) {
  margin-bottom: 16px;
}

.detail-quote-section .quote {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8b3554;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 2.05;
  overflow-wrap: anywhere;
}

.detail-reaction-heading {
  margin: 36px 0 0;
  padding: 0 36px;
  color: var(--brand);
  font-family: "Shippori Mincho", "Yu Mincho", serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.score-wrap {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.score-wrap > div:last-child {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.score-wrap h2 {
  margin: 0;
  line-height: 1.55;
}

.score-wrap .eyebrow {
  margin: 0;
}

.score-wrap .chips {
  margin-top: 2px;
  row-gap: 10px;
  column-gap: 10px;
}

.signal-score-card {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 42px;
  padding: 42px;
}

.score-card-main {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  min-width: 0;
}

.score-card-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  min-width: 0;
}

.score-card-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.35;
}

.score-label-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #eee8f6;
  color: #77639a;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
}

.score-card-side {
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.score-card-divider {
  border-top: 1px dashed #ded8e6;
}

.score-field-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.score-field-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eee8f6;
  color: #4e426a;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
}

.score-field-chip .fi {
  color: #8069a1;
}

.signal-group-panel {
  display: grid;
  gap: 16px;
}

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

.signal-group-summary > div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(246, 240, 249, 0.55);
}

.signal-group-summary span {
  display: block;
  color: var(--muted);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.signal-group-summary strong {
  color: var(--brand);
  font-size: 1.28rem;
}

.score {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--brand) calc(var(--score) * 1%), var(--soft) 0);
  position: relative;
}

.score::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: var(--paper);
}

.score strong {
  position: relative;
  z-index: 1;
  font-size: 2.15rem;
}

#checkResult {
  display: grid;
  gap: 28px;
  margin-top: 30px;
}

#checkForm .actions {
  justify-content: center;
}

#checkResult:empty {
  display: none;
}

#checkResult > .panel,
#checkResult > .grid,
#checkResult > .notice {
  margin: 0;
}

#checkResult .grid.cols-3:not(.experience-card-grid) {
  gap: 24px;
}

.check-page #checkResult > .notice {
  width: min(100%, 360px);
}

.check-page #checkResult .grid.cols-3:has(.card:nth-child(2)) + .notice {
  width: min(100%, 744px);
}

.check-page #checkResult .grid.cols-3:has(.card:nth-child(3)) + .notice {
  width: min(100%, 1128px);
}

#checkResult .quote + br {
  display: none;
}

#checkResult .quote {
  margin-bottom: 22px;
}

#checkResult .quote:last-child {
  margin-bottom: 0;
}

.admin-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 36px;
}

.admin-nav {
  position: sticky;
  top: 82px;
  align-self: start;
  padding: 30px 22px;
}

.admin-nav-title {
  margin: 0 0 14px;
  color: #8e78aa;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.admin-nav a,
.admin-nav button {
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border-color: transparent;
  border-radius: 10px;
  background: transparent;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 1.04rem;
  font-weight: 900;
  box-shadow: none;
}

.admin-nav a i,
.admin-nav button i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--brand);
  font-size: 1.38rem;
  line-height: 1;
}

.admin-nav a span,
.admin-nav button span {
  white-space: nowrap;
}

.admin-nav a:hover,
.admin-nav button:hover {
  background: #f8f4fb;
}

.admin-nav a.active {
  border-color: transparent;
  background: #f3edf8;
  color: var(--brand);
  box-shadow: none;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.admin-stat-card {
  min-height: 110px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  box-shadow: var(--soft-shadow);
}

a.admin-stat-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

a.admin-stat-card:hover,
a.admin-stat-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(157, 130, 183, 0.36);
  background: #fffefd;
  box-shadow: 0 18px 36px rgba(48, 38, 31, 0.12);
}

a.admin-stat-card:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.34);
  outline-offset: 3px;
}

.admin-stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #6556b3;
  background: #f0e9fb;
  font-size: 1.45rem;
  line-height: 1;
}

.admin-stat-icon i {
  line-height: 1;
}

.admin-stat-card .eyebrow {
  margin: 0;
  white-space: nowrap;
}

.admin-stat-card h2 {
  margin-top: 4px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", serif;
  font-size: clamp(1.45rem, 1.9vw, 1.85rem);
  line-height: 1.08;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.admin-section-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 22px;
}

.admin-section-title h2 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.admin-section-title h2 i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1;
}

.admin-section-title .help {
  margin: 0;
}

.ng-keyword-guide {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.ng-keyword-guide-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 72px;
  padding: 22px 30px;
  border-bottom: 0;
  color: var(--brand);
  cursor: pointer;
  list-style: none;
}

.ng-keyword-guide-heading h2 {
  margin: 0;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.ng-keyword-guide-heading::-webkit-details-marker {
  display: none;
}

.ng-keyword-guide-heading i {
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1;
}

.ng-keyword-guide-heading::after {
  content: "開く";
  margin-left: auto;
  flex: 0 0 auto;
  color: #8e7899;
  font-size: 0.95rem;
  font-weight: 900;
}

.ng-keyword-guide[open] .ng-keyword-guide-heading {
  border-bottom: 1px solid var(--line);
}

.ng-keyword-guide[open] .ng-keyword-guide-heading::after {
  content: "閉じる";
  color: var(--brand);
}

.ng-keyword-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.ng-keyword-guide-grid > div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ng-keyword-guide-grid > div:nth-child(2n),
.ng-keyword-guide-grid > div:last-child {
  border-right: 0;
}

.ng-keyword-guide-grid > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.ng-keyword-guide-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.ng-keyword-guide-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.ng-keyword-table {
  table-layout: fixed;
}

.ng-keyword-tabs {
  margin: 18px 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f4fb;
}

.ng-keyword-tab {
  width: auto;
  min-height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: none;
}

.ng-keyword-tab span {
  margin-left: 6px;
  font-size: 0.78rem;
  color: inherit;
}

.ng-keyword-tab.is-active {
  background: var(--paper);
  color: var(--brand);
  box-shadow: 0 8px 18px rgba(21, 44, 78, 0.08);
}

.ng-keyword-table .keyword-col {
  width: 24%;
}

.ng-keyword-table .category-col {
  width: 130px;
}

.ng-keyword-table .action-col {
  width: 112px;
}

.ng-keyword-table .dictionary-col {
  width: 96px;
}

.ng-keyword-table .date-col {
  width: 112px;
}

.ng-keyword-table .note-col {
  width: auto;
}

.ng-keyword-table th,
.ng-keyword-table td {
  padding: 16px 18px;
  vertical-align: middle;
}

.ng-keyword-table tbody tr {
  transition: background-color 150ms ease;
}

.ng-keyword-table tbody tr.ng-keyword-row:nth-of-type(4n + 3),
.ng-keyword-table tbody tr.ng-keyword-row:nth-of-type(4n + 3) + .ng-keyword-memo-row {
  background: rgba(246, 241, 247, 0.45);
}

.ng-keyword-table .ng-keyword-row {
  cursor: pointer;
}

.ng-keyword-table .ng-keyword-row:hover,
.ng-keyword-table .ng-keyword-row.is-open {
  background: rgba(243, 237, 248, 0.58);
}

.ng-keyword-table .keyword-cell {
  min-width: 0;
}

.ng-keyword-table .keyword-main {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.ng-keyword-table .keyword-main i {
  color: var(--brand);
  font-size: 1rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.ng-keyword-table .ng-keyword-row.is-open .keyword-main i {
  transform: rotate(90deg);
}

.ng-keyword-table .ng-keyword-row.is-deleted {
  opacity: 0.62;
}

.ng-keyword-table .ng-keyword-row.is-deleted .keyword-main {
  text-decoration: line-through;
}

.ng-keyword-table .chip,
.ng-keyword-table .status,
.ng-keyword-table .dictionary-cell,
.ng-keyword-table .date-cell,
.ng-keyword-table .action-cell {
  white-space: nowrap;
}

.ng-keyword-table .note-cell {
  color: var(--muted);
  overflow-wrap: anywhere;
  line-height: 1.65;
}

.ng-keyword-table .ng-keyword-memo-row td {
  padding: 0;
  background: rgba(253, 250, 246, 0.88);
}

.ng-keyword-memo-panel {
  padding: 16px 22px 18px;
  border-top: 1px solid var(--line);
}

.ng-keyword-memo-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.ng-keyword-memo-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  white-space: pre-wrap;
}

.ng-keyword-enable-check {
  box-sizing: border-box;
  height: 112px;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 28px 34px;
}

.ng-keyword-enable-check input {
  width: 26px;
  min-height: 26px;
  flex: 0 0 26px;
  margin-top: 0;
  accent-color: var(--brand);
}

.ng-keyword-enable-check span {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--ink);
}

#ngKeywordForm textarea[name="note"] {
  height: 112px;
  min-height: 112px;
  resize: vertical;
}

#ngKeywordForm .form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 30px;
  align-items: stretch;
}

#ngKeywordForm .form-grid > label {
  min-width: 0;
  gap: 12px;
}

#ngKeywordForm .form-grid > label > span {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

#ngKeywordForm input,
#ngKeywordForm select,
#ngKeywordForm textarea {
  min-height: 60px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 1rem;
}

#ngKeywordForm select {
  padding-right: 48px;
  background-position:
    calc(100% - 22px) calc(50% - 4px),
    calc(100% - 16px) calc(50% - 4px);
}

#ngKeywordForm .ng-keyword-note-field,
#ngKeywordForm .ng-keyword-enable-field {
  grid-column: span 2;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 112px;
  gap: 12px;
  align-content: start;
}

#ngKeywordForm .ng-keyword-note-field > span,
#ngKeywordForm .ng-keyword-enable-label {
  min-height: 24px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  #ngKeywordForm .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  #ngKeywordForm .form-grid {
    grid-template-columns: 1fr;
  }

  #ngKeywordForm .ng-keyword-note-field,
  #ngKeywordForm .ng-keyword-enable-field {
    grid-column: auto;
  }
}

.muted-dash {
  color: var(--muted);
}

.warning-text {
  display: inline-block;
  margin-top: 6px;
  color: #9b5a00;
  font-weight: 800;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.table th,
.table td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 12px;
  vertical-align: top;
}

.table th {
  color: var(--muted);
  background: var(--soft);
  font-size: 0.86rem;
}

.announcement-admin-form {
  gap: 18px;
}

.announcement-edit-form {
  padding: 0;
  overflow: hidden;
}

.announcement-admin-form h2,
.announcement-admin-form h3 {
  margin: 0;
}

.announcement-admin-list {
  display: grid;
  gap: 20px;
}

.announcement-admin-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.announcement-edit-accordion {
  min-width: 0;
}

.announcement-edit-accordion summary {
  padding: 24px 26px;
  cursor: pointer;
  list-style: none;
}

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

.announcement-edit-accordion[open] summary {
  border-bottom: 1px solid var(--line);
}

.announcement-accordion-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.announcement-edit-accordion[open] .announcement-accordion-toggle {
  background: var(--brand);
  color: #fff;
}

.announcement-edit-accordion[open] .announcement-accordion-toggle::before {
  content: "編集中";
}

.announcement-edit-accordion[open] .announcement-accordion-toggle {
  font-size: 0;
}

.announcement-edit-accordion[open] .announcement-accordion-toggle::before {
  font-size: 0.9rem;
}

.announcement-edit-body {
  padding: 24px 26px 28px;
  display: grid;
  gap: 18px;
}

.announcement-admin-heading .help {
  margin: 6px 0 0;
}

.announcement-admin-preview {
  width: min(100%, 420px);
  max-height: 240px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.favicon-preview {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.favicon-preview img {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.admin-experience-table {
  table-layout: fixed;
}

.admin-experience-table .date-col {
  width: 92px;
}

.admin-experience-table .status-col {
  width: 112px;
}

.admin-experience-table .ai-col {
  width: 92px;
}

.admin-experience-table .attrs-col {
  width: 190px;
}

.admin-experience-table .action-col {
  width: 76px;
}

.admin-experience-table th,
.admin-experience-table td {
  padding: 14px 12px;
}

.admin-experience-table tbody tr {
  transition: background-color 150ms ease;
}

.admin-experience-table tbody tr:hover {
  background: rgba(244, 237, 245, 0.38);
}

.date-cell,
.status-cell,
.attrs-cell,
.action-cell {
  white-space: nowrap;
}

.title-cell {
  min-width: 0;
  line-height: 1.65;
}

.ai-cell {
  line-height: 1.35;
  text-align: center;
}

.ai-heading {
  text-align: center;
}

.ai-cell span,
.ai-cell small {
  white-space: nowrap;
}

.ai-cell small {
  color: var(--muted);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.action-cell {
  text-align: right;
}

.table-action {
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  line-height: 1;
}

.status {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--soft);
  color: var(--muted);
}

.status.published {
  background: #e2f4eb;
  color: var(--ok);
}

.status.admin_review_waiting,
.status.ai_checking,
.status.received {
  background: #fff1d6;
  color: var(--warn);
}

.status.hidden,
.status.rejected,
.status.deletion_requested {
  background: #fae8e8;
  color: var(--danger);
}

.admin-detail-status-row {
  margin-top: 18px;
}

.admin-detail-status-row .status {
  min-width: 148px;
  min-height: 42px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(21, 44, 78, 0.12);
  border-radius: 12px;
  padding: 10px 22px;
  font-size: 0.98rem;
  line-height: 1;
}

.admin-detail-status-row .status.published {
  border-color: rgba(45, 125, 89, 0.18);
}

.admin-detail-status-row .status.admin_review_waiting,
.admin-detail-status-row .status.ai_checking,
.admin-detail-status-row .status.received {
  border-color: rgba(157, 107, 23, 0.18);
}

.admin-detail-status-row .status.hidden,
.admin-detail-status-row .status.rejected,
.admin-detail-status-row .status.deletion_requested {
  border-color: rgba(176, 56, 56, 0.18);
}

.home-hero {
  margin-top: -169px;
  padding-top: var(--hero-y);
}

.tag-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  color: #6b5a9a;
}

.tag-icon .fi {
  font-size: 1rem;
}

.review-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: -118px 0 0;
  padding: 30px 46px;
  background: rgba(255,254,253,0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.step-number {
  position: absolute;
  top: -8px;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #a38abd;
  color: #fff;
  font-weight: 800;
}

.flow-icon,
.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: #eee8f6;
}

.flow-icon {
  width: 88px;
  height: 88px;
  font-size: 2rem;
}

.flow-arrow .fi {
  font-size: 1.55rem;
}

.flow-step h3,
.flow-step p {
  margin: 0;
}

.flow-step h3 {
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.flow-step p {
  color: #384157;
  line-height: 1.75;
  font-weight: 600;
}

.flow-arrow {
  color: #7c8191;
  font-size: 2rem;
}

.center-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.center-heading h2 {
  position: relative;
  margin: 0;
  font-size: 2rem;
  color: var(--brand);
}

.center-heading h2::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 3px;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  background: var(--brand-2);
  border-radius: 999px;
}

.feature-card {
  min-height: 335px;
  text-align: center;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
}

.feature-card h3 {
  color: var(--brand);
  font-size: 1.65rem;
}

.feature-card .help {
  max-width: 290px;
  font-weight: 700;
}

.feature-cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin: 48px auto 0;
  text-align: center;
}

.feature-cta p {
  max-width: 740px;
  margin: 0;
  color: #384157;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 2;
}

.feature-cta .primary {
  min-width: 320px;
  box-shadow: 0 18px 42px rgba(25, 48, 86, 0.18);
}

.search-route-section {
  --search-route-icon-size: 112px;
  --search-route-icon-font-size: 3.15rem;
  text-align: center;
}

.search-route-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto 34px;
}

.search-route-mark {
  width: var(--search-route-icon-size);
  height: var(--search-route-icon-size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eee8f6;
  color: #9178b2;
  font-size: var(--search-route-icon-font-size);
}

.search-route-heading h2 {
  margin: 0;
  color: var(--brand);
  font-size: 2.15rem;
}

.search-route-heading p {
  margin: 0;
  color: #384157;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 2;
}

.search-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.search-route-card {
  position: relative;
  min-height: 560px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 22px;
  padding: 50px 52px 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 254, 253, 0.9);
  box-shadow: var(--soft-shadow);
}

.search-route-card-inner {
  display: contents;
}

.search-route-card.featured {
  border-color: #bca9d2;
  box-shadow: 0 18px 42px rgba(76, 58, 103, 0.14);
}

.route-badge {
  position: absolute;
  top: 22px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 16px;
  border-radius: 999px;
  background: #eee8f6;
  color: #7f64a2;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
}

.route-icon {
  width: var(--search-route-icon-size);
  height: var(--search-route-icon-size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1ecf6;
  color: #9a83b8;
  font-size: var(--search-route-icon-font-size);
}

.search-route-card h3 {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 2rem;
}

.search-route-card p {
  max-width: 460px;
  margin: 0;
  color: #384157;
  font-weight: 700;
  line-height: 2;
}

.route-checks {
  display: grid;
  gap: 15px;
  width: min(100%, 450px);
  margin: 4px 0 2px;
  padding: 0;
  color: #334059;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
  line-height: 1.75;
  list-style: none;
  text-align: left;
}

.route-checks li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.route-checks .fi {
  color: #9a83b8;
  font-size: 1.2rem;
  transform: translateY(3px);
}

.search-route-card .icon-button {
  width: min(100%, 420px);
  min-width: 0;
  margin-top: 8px;
  padding-inline: 28px;
  justify-content: space-between;
}

.feature-icon {
  width: 124px;
  height: 124px;
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.feature-icon .fi,
.flow-icon .fi {
  transform: translateY(1px);
}

.feature-icon.safety {
  background: #eee8f6;
}

.feature-icon.cgm {
  background: #fae6ec;
}

.feature-icon.check {
  background: #eef3ea;
  color: #306553;
}

.feature-icon.check .fi {
  font-size: 1.25em;
}

.heading-inline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.heading-inline h2,
.category-section h2 {
  margin: 0;
  color: var(--brand);
  font-size: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #f4d8de;
  color: #944d62;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 800;
}

.link-more {
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 800;
}

.card .meta {
  display: flex;
  margin-top: auto;
}

.card-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  min-height: 82px;
  padding: 16px 40px;
  border-top: 1px solid rgba(239, 231, 223, 0.92);
  color: #6a7180;
  background: #fffdfb;
  font-size: 0.94rem;
  line-height: 1.6;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
}

.card-footer > span:not(.chip) {
  min-width: 0;
}

.footer-mbti {
  justify-self: end;
  flex: 0 0 auto;
}

.empathy-button {
  min-height: 48px;
  border: 1px solid #efd6df;
  border-radius: 999px;
  padding: 6px 16px 6px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff6fa;
  color: var(--brand-2);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.card-empathy {
  position: absolute;
  top: 34px;
  right: 40px;
  z-index: 2;
}

.empathy-button:hover {
  background: #ffeef5;
  color: var(--brand-2);
}

.empathy-button.is-active {
  color: var(--brand-2);
}

.empathy-button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.empathy-button.shake {
  animation: tap-shake 220ms ease;
}

.heart {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 1.32rem;
  line-height: 1;
}

.detail-empathy {
  min-height: 72px;
  border: 1px solid var(--line);
  padding: 8px 18px 8px 12px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  font-size: 1rem;
}

.detail-empathy .heart {
  width: 34px;
  height: 34px;
  font-size: 1.65rem;
}

@keyframes tap-shake {
  0%, 100% { transform: translateX(0); }
  35% { transform: translateX(-2px); }
  70% { transform: translateX(2px); }
}

.category-section {
  margin-bottom: 42px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 24px;
  max-width: 1120px;
  margin: 30px auto 0;
}

.category-chip {
  min-height: 96px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 18px;
  padding: 18px 32px;
  border-radius: 18px;
  border: 1px solid;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-weight: 900;
  text-align: left;
  line-height: 1.55;
}

.category-chip span {
  display: grid;
  place-items: center;
  font-size: 1.65rem;
}

.category-chip strong {
  display: block;
  font: inherit;
  max-width: 100%;
  min-width: 0;
}

.category-chip .fi {
  font-size: 2rem;
}

.tone-money { color: #a86f16; background: #fff6df; border-color: #edcb8e; }
.tone-safety { color: #2f5d9e; background: #eef4fb; border-color: #c9d9ee; }
.tone-romance { color: #a04769; background: #fbeef4; border-color: #efc8d8; }
.tone-control { color: #635aa0; background: #f1efff; border-color: #d4cdec; }
.tone-emotion { color: #2f7459; background: #eff8f1; border-color: #c2decf; }
.tone-profile { color: #2d4566; background: #eef1f5; border-color: #cfd8e6; }

.signal-category-card .signal-category-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  font-size: 2rem;
}

.signal-category-card.tone-money .signal-category-icon {
  background: #fff1d9;
  color: #a86f16;
}

.signal-category-card.tone-safety .signal-category-icon {
  background: #e9f1fb;
  color: #2f5d9e;
}

.signal-category-card.tone-romance .signal-category-icon {
  background: #f7e9ef;
  color: #a04769;
}

.signal-category-card.tone-control .signal-category-icon {
  background: #eeeafd;
  color: #635aa0;
}

.signal-category-card.tone-emotion .signal-category-icon {
  background: #e7f4ec;
  color: #2f7459;
}

.signal-category-card.tone-profile .signal-category-icon {
  background: #e9edf4;
  color: #2d4566;
}

.disclaimer {
  width: fit-content;
  margin: 34px auto 0;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(239, 232, 224, 0.76);
  color: #30384b;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.faq-section {
  max-width: 1120px;
  margin-top: 64px;
  margin-inline: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.faq-item {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(234, 223, 213, 0.92);
  border-radius: 14px;
  background: rgba(255, 254, 253, 0.82);
  box-shadow: var(--soft-shadow);
}

.faq-item h3 {
  margin: 0;
  color: var(--brand);
  font-size: 1.18rem;
  line-height: 1.55;
}

.faq-item p {
  margin: 0;
  color: #4f5869;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.9;
}

.announcements-section {
  max-width: 1120px;
  margin-inline: auto;
}

.announcements-grid {
  display: grid;
  gap: 18px;
  width: min(70%, 760px);
  margin-inline: auto;
}

.announcement-empty {
  padding: 28px;
  border: 1px solid rgba(234, 223, 213, 0.92);
  border-radius: 14px;
  background: rgba(255, 254, 253, 0.82);
  color: #5f6674;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.8;
  box-shadow: var(--soft-shadow);
}

.announcement-card {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 24px 38px;
  border: 1px solid rgba(234, 223, 213, 0.92);
  border-radius: 14px;
  background: rgba(255, 254, 253, 0.86);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.announcement-card:hover,
.announcement-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(189, 97, 121, 0.38);
  box-shadow: 0 18px 36px rgba(47, 34, 23, 0.12);
}

.announcement-card.is-important {
  border-color: rgba(189, 97, 121, 0.36);
}

.announcement-card.is-important .announcement-card-label {
  color: var(--brand-2);
}

.announcement-card-label {
  color: var(--brand-3);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.announcement-card-divider {
  width: 1px;
  height: 32px;
  background: rgba(47, 34, 23, 0.22);
}

.announcement-card h3 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(0.86rem, 1.08vw, 1rem);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.announcement-detail-page time {
  display: block;
  margin-top: 12px;
  color: #7a7180;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.announcement-detail-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 34px 0 0;
}

.announcement-detail-page .article-body {
  margin-top: 28px;
  overflow-wrap: anywhere;
}

.announcement-detail-page .actions {
  margin-top: 128px;
}

.announcement-preview-panel {
  display: grid;
  gap: 24px;
}

.announcement-preview-panel .announcement-card {
  pointer-events: none;
}

.announcement-preview-panel .announcements-grid {
  width: 100%;
}

.announcement-preview-detail {
  width: 100%;
  margin: 0;
}

.site-footer {
  width: min(1280px, calc(100% - clamp(28px, 5vw, 64px)));
  margin: 84px auto 34px;
  padding: 34px 0 0;
  display: grid;
  gap: 34px;
  color: #5f6674;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(360px, 1.55fr) minmax(220px, 0.95fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: start;
}

.footer-about {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-family: "Yu Mincho", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-brand-logo {
  width: 64px;
  height: 39px;
}

.footer-about p {
  max-width: 320px;
  margin: 0;
  color: #626a79;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.9;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer-link-grid div {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-link-grid h2,
.footer-safety-card h2 {
  margin: 0 0 4px;
  color: var(--brand);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
}

.footer-link-grid a {
  color: #4d596d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.footer-link-grid a:hover {
  color: var(--brand-2);
}

.footer-safety-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(234, 223, 213, 0.95);
  border-radius: 18px;
  background: rgba(255, 254, 253, 0.78);
  box-shadow: var(--soft-shadow);
}

.footer-safety-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-safety-card h2 i {
  color: var(--brand-3);
  font-size: 1.15rem;
}

.footer-safety-card p {
  margin: 0;
  color: #687284;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.75;
}

.footer-safety-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--brand-2);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(234, 223, 213, 0.84);
}

.footer-bottom small {
  color: #85818a;
  font-weight: 800;
}

@media (min-width: 861px) and (max-width: 1080px) {
  .site-footer {
    width: min(920px, calc(100% - 48px));
    margin-top: 72px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    gap: 32px 42px;
  }

  .footer-link-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding-top: 2px;
  }

  .footer-safety-card {
    grid-column: 2;
    grid-row: 1;
    padding: 24px;
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.loading {
  padding: 40px;
  color: var(--muted);
}

@media (max-width: 860px) {
  :root {
    --hero-y: 84px;
    --hero-after: 84px;
    --section-y: 72px;
    --card-gap: 20px;
  }

  html,
  body,
  .app {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero,
  .grid.cols-2,
  .grid.cols-3:not(.experience-card-grid),
  .review-flow,
  .category-grid,
  .search-route-grid,
  .signal-search-layout,
  .signal-category-grid,
  .signal-choice-grid,
  .optional-filter-grid,
  .gender-choice-grid,
  .filters,
  .form-grid,
  .attribute-row,
  .ng-keyword-guide-grid,
  .wide-field,
  .admin-layout,
  .split,
  .score-wrap {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .audit-grid {
    grid-template-columns: 1fr;
  }

  .ng-keyword-guide-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ng-keyword-guide-grid > div:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .ng-keyword-guide-grid > div:last-child {
    border-bottom: 0;
  }

  .search-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .search-steps span {
    gap: 6px;
    padding: 16px 6px 14px;
    text-align: center;
  }

  .search-steps span + span::before {
    top: 32px;
  }

  .search-steps strong {
    width: 38px;
    height: 38px;
    font-size: 1.12rem;
  }

  .search-steps small {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .signal-step,
  .selected-summary {
    padding: 14px;
  }

  .signal-step-heading {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 18px;
  }

  .signal-step-heading h2 {
    font-size: 1.16rem;
    line-height: 1.55;
  }

  .signal-step-heading p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .step-badge {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .signal-category-card {
    min-height: 128px;
    gap: 6px;
    padding: 14px;
  }

  .signal-category-icon {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .signal-category-card strong {
    font-size: 1rem;
  }

  .signal-category-card small {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .selected-summary {
    position: static;
  }

  .results-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .result-tools,
  .keyword-search {
    width: 100%;
  }

  .result-tools {
    flex: 0 0 auto;
    flex-direction: column;
  }

  .keyword-control {
    flex: 1 1 auto;
    min-width: 0;
  }

  .sort-control {
    flex-basis: auto;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .attribute-row.cols-1 {
    max-width: none;
  }

  .attribute-row.cols-2,
  .attribute-row.cols-3 {
    grid-template-columns: 1fr;
  }

  .check-basic-grid,
  .score-card-main {
    grid-template-columns: 1fr;
  }

  .signal-score-card {
    padding: 14px;
  }

  .score-card-side {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .score {
    margin-inline: auto;
  }

  .header-inner {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    flex-direction: initial;
    flex-wrap: initial;
  }

  .site-header {
    width: calc(100% - 24px);
    max-width: none;
    overflow: visible;
    top: 8px;
    margin: 8px auto 0;
  }

  .header-inner {
    position: relative;
    padding: 16px 18px;
  }

  .brand {
    font-size: 1.6rem;
    min-width: 0;
  }

  .brand-logo {
    width: 72px;
    height: 44px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    flex: 0 0 auto;
    z-index: 25;
    transform: none;
  }

  .nav {
    grid-column: 1 / -1;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: auto;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(234, 223, 213, 0.84);
    border-radius: 16px;
    background: rgba(255, 254, 253, 0.97);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(18px);
  }

  .site-header.menu-open .nav {
    display: grid;
  }

  .nav a {
    min-width: 0;
    padding: 10px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .nav a[href="/post"] {
    padding: 10px 8px;
  }

  .nav a[href="/"] {
    display: none;
  }

  .page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding: 36px 14px 42px;
  }

  .page.home-page {
    padding-top: 14px;
  }

  .panel {
    max-width: 100%;
    min-width: 0;
    padding: 14px;
    border-radius: 16px;
  }

  .login-page #loginForm,
  .report-page #reportForm,
  .removal-page #removalForm,
  .contact-page #contactForm {
    padding: 14px;
    gap: 14px;
  }

  .report-page #reportForm textarea[name="detail"],
  .removal-page #removalForm textarea[name="detail"],
  .contact-page #contactForm textarea[name="detail"] {
    min-height: 128px;
  }

  .post-form {
    max-width: 100%;
    min-width: 0;
    gap: 14px;
  }

  .post-body-heading {
    display: grid;
    align-items: stretch;
  }

  .post-body-heading .sample-toggle {
    width: 100%;
  }

  .post-body-sample {
    max-height: 420px;
    padding: 14px;
  }

  input,
  select,
  textarea {
    padding-inline: 12px;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .check {
    padding: 10px;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .check input {
    width: 16px;
    min-height: 16px;
    flex: 0 0 16px;
    margin-top: 4px;
  }

  .feature-icon.check {
    gap: 0;
    padding: 0;
    font-size: 2.4rem;
    line-height: 1;
  }

  .hero {
    width: auto;
    max-width: none;
    margin-left: -14px;
    margin-right: -14px;
    min-height: auto;
    padding: 54px 24px 70px;
    background: #fbf7f1;
  }

  .home-hero {
    margin-top: 0;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(251,247,241,1) 0%, rgba(251,247,241,0.98) 48%, rgba(251,247,241,0.72) 70%, rgba(251,247,241,0.38) 100%),
      linear-gradient(180deg, rgba(251,247,241,0.16) 0%, rgba(251,247,241,0.08) 45%, rgba(251,247,241,0.82) 100%);
  }

  .season-bg {
    background-position: 74% top;
    background-size: auto 100%;
  }

  .season-bg.is-active {
    opacity: 0.72;
  }

  .hero-visual {
    min-height: 380px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(251,247,241,0.05), rgba(251,247,241,0.2));
  }

  .hero-copy h1 {
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    font-size: clamp(1.65rem, 7.2vw, 2.06rem);
    line-height: 1.48;
    overflow-wrap: normal;
  }

  .hero-copy h1 span {
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .hero-copy h1 .mobile-line {
    display: block;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.85;
    width: min(100%, 320px);
    max-width: calc(100vw - 40px);
    margin-top: 22px;
    overflow-wrap: anywhere;
  }

  .hero-note {
    font-size: 0.96rem;
    line-height: 1.85;
    width: min(100%, 320px);
    max-width: calc(100vw - 40px);
    overflow-wrap: anywhere;
  }

  .pc-only {
    display: none;
  }

  .mobile-only {
    display: initial;
  }

  .tagline {
    font-size: 0.95rem;
    padding: 10px 16px;
    max-width: 100%;
    margin-bottom: 34px;
    white-space: normal;
  }

  .icon-button {
    width: min(100%, 420px);
    min-width: 0;
    max-width: 100%;
    padding-inline: 18px;
    justify-content: center;
  }

  .icon-button.ghost {
    min-width: 0;
    max-width: 100%;
  }

  .actions {
    width: 100%;
    max-width: min(100%, 380px);
    margin-top: 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .primary-cta-group {
    width: 100%;
    min-width: 0;
  }

  .hero-microcopy {
    max-width: 100%;
    font-size: 0.85rem;
  }

  .actions .button,
  .actions .primary,
  .actions .secondary,
  .actions .ghost {
    width: 100%;
  }

  .home-hero .icon-button {
    min-height: 56px;
    font-size: 0.94rem;
  }

  .review-flow {
    width: min(100%, 620px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 20px;
    margin-top: 30px;
  }

  .flow-arrow {
    display: none;
  }

  .flow-step {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
  }

  .flow-icon {
    width: 64px;
    height: 64px;
    font-size: 1.48rem;
  }

  .step-number {
    position: absolute;
    top: -5px;
    left: -7px;
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .flow-step h3 {
    font-size: 1.08rem;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .flow-step p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .center-heading h2 {
    font-size: 1.55rem;
    line-height: 1.5;
    text-align: center;
  }

  .feature-card {
    width: min(100%, 620px);
    min-height: 0;
    margin-inline: auto;
    padding: 42px 22px;
  }

  .feature-cta {
    margin-top: 34px;
    gap: 18px;
  }

  .feature-cta p {
    font-size: 0.96rem;
    line-height: 1.9;
  }

  .feature-cta .primary {
    width: min(100%, 420px);
    min-width: 0;
  }

  .search-route-heading {
    margin-bottom: 26px;
  }

  .search-route-heading h2 {
    font-size: 1.55rem;
    line-height: 1.55;
  }

  .search-route-heading p {
    font-size: 0.96rem;
    line-height: 1.9;
  }

  .section-heading {
    align-items: center;
    gap: 12px;
  }

  .section-heading:not(.results-heading) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .heading-inline {
    min-width: 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .heading-inline h2,
  .category-section h2 {
    font-size: 1.5rem;
    line-height: 1.45;
  }

  .pill {
    flex: 0 0 auto;
  }

  .link-more {
    justify-self: end;
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.92rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .announcement-card {
    grid-template-columns: auto 1px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 18px;
  }

  .announcements-grid {
    width: 100%;
  }

  .site-footer {
    width: calc(100% - 28px);
    margin-top: 44px;
    padding-top: 22px;
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-about,
  .footer-brand,
  .footer-link-grid,
  .footer-bottom {
    justify-content: start;
  }

  .footer-about p {
    max-width: 100%;
  }

  .footer-link-grid {
    width: min(100%, 420px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 22px;
    margin-inline: 0;
  }

  .footer-link-grid div {
    min-width: 0;
    gap: 10px;
    text-align: left;
  }

  .footer-link-grid div:nth-child(3) {
    grid-column: 1 / -1;
    width: min(100%, 220px);
    justify-self: start;
    text-align: left;
  }

  .footer-link-grid a {
    overflow-wrap: anywhere;
  }

  .footer-safety-card {
    padding: 20px;
    justify-items: start;
    text-align: left;
  }

  .footer-safety-card h2 {
    justify-content: flex-start;
  }

  .footer-safety-card a {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
    padding-top: 16px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .faq-item {
    padding: 18px 16px;
  }

  .faq-item h3 {
    font-size: 1.04rem;
  }

  .faq-item p {
    font-size: 0.86rem;
    line-height: 1.8;
  }

  .page p:not(.eyebrow):not(.hero-microcopy):not(.disclaimer),
  .page .help {
    font-size: 0.88rem;
    line-height: 1.85;
  }

  .card {
    min-height: auto;
    padding: 0;
  }

  .card-main {
    padding: 28px 24px 20px;
  }

  .card-top-row {
    padding-right: 70px;
    margin-bottom: 14px;
  }

  .card-empathy {
    top: 26px;
    right: 24px;
  }

  .card h3 {
    margin-bottom: 12px;
    font-size: 1.16rem;
    line-height: 1.55;
  }

  .card .help {
    margin-bottom: 18px;
    font-size: 0.84rem;
    line-height: 1.8;
  }

  .chip {
    padding: 4px 8px;
    font-size: 0.74rem;
  }

  .card-footer {
    gap: 6px;
    min-height: 72px;
    padding: 12px 24px;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .empathy-button {
    min-height: 40px;
    padding: 5px 12px;
    font-size: 0.76rem;
  }

  .heart {
    width: 24px;
    height: 24px;
    font-size: 1.12rem;
  }

  .panel h2,
  .panel h3 {
    line-height: 1.45;
  }

  label span,
  .label {
    font-size: 0.82rem;
  }

  input,
  select,
  textarea {
    font-size: 0.9rem;
  }

  .empty-step,
  .summary-note,
  .notice,
  .detail-notice,
  .result-status.empty {
    font-size: 0.7rem;
    line-height: 1.7;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .experience-body-input {
    min-height: 360px;
  }

  .article-detail {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-top: 0;
  }

  .detail-eyebrow {
    font-size: 0.76rem;
    margin-bottom: 14px;
  }

  .article-detail h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.32;
    margin-bottom: 28px;
  }

  .detail-overview-panel {
    gap: 24px;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .detail-meta {
    gap: 10px;
  }

  .detail-meta .chip,
  .detail-signal-chips .chip {
    min-width: 0;
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .detail-signal-section {
    margin-top: 32px;
  }

  .detail-signal-label {
    font-size: 0.9rem;
  }

  .article-detail .article-body {
    margin-top: 42px;
    padding: 0 0 34px;
    font-size: 1rem;
    line-height: 2.05;
  }

  .detail-quote-section {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .detail-quote-section .quote {
    font-size: 1.04rem;
    line-height: 1.95;
  }

  .detail-reaction-heading {
    padding: 0;
    font-size: 1.05rem;
  }

  .detail-actions {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
    padding: 0;
  }

  .detail-similar-button,
  .detail-actions .detail-empathy {
    width: 100%;
    min-height: 62px;
    font-size: 1rem;
  }

  .detail-notice {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 18px;
    font-size: 0.92rem;
  }

  .detail-notice i {
    font-size: 1.55rem;
  }

  .detail-support-links {
    display: grid;
    gap: 12px;
    font-size: 0.84rem;
  }

  .detail-support-links a + a {
    padding-left: 0;
    border-left: 0;
  }
}

@media (min-width: 481px) and (max-width: 860px) {
  .login-page #loginForm,
  .report-page #reportForm,
  .removal-page #removalForm,
  .contact-page #contactForm {
    padding: 36px;
    gap: 28px;
  }
}

@media (min-width: 640px) and (max-width: 860px) {
  .home-page > .section:not(.feature-section) > .grid.cols-3:not(.experience-card-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .category-chip {
    padding: 16px 20px;
  }

}

@media (min-width: 720px) and (max-width: 860px) {
  .card {
    min-height: 380px;
    padding: 0;
  }

  .card-main {
    padding: 34px 30px 24px;
  }

  .card-top-row {
    padding-right: 74px;
    margin-bottom: 22px;
  }

  .card-empathy {
    top: 30px;
    right: 30px;
  }

  .card h3 {
    margin-bottom: 20px;
  }

  .card .help {
    margin-bottom: 28px;
  }

  .card-footer {
    min-height: 84px;
    padding: 14px 30px;
  }

  .signal-score-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 680px;
    justify-self: center;
    margin-inline: auto;
    gap: 24px;
    padding: 28px;
  }

  .score-card-main {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
  }

  .score-card-copy {
    justify-items: start;
    text-align: left;
  }

  .score-card-copy h2 {
    font-size: clamp(1.55rem, 3.4vw, 2.1rem);
    line-height: 1.45;
  }

  .score-card-side {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .score {
    width: 150px;
    height: 150px;
    margin-inline: 0;
  }

  .review-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .flow-step {
    min-height: 300px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 10px;
    padding: 22px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 254, 253, 0.9);
    box-shadow: var(--soft-shadow);
    text-align: center;
  }

  .flow-step:last-child {
    width: min(100%, 420px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .flow-icon {
    width: 104px;
    height: 104px;
    font-size: 2rem;
  }

  .step-number {
    top: 18px;
    left: 18px;
  }

  .flow-step h3 {
    font-size: 1.34rem;
    line-height: 1.5;
  }

  .flow-step p {
    max-width: 260px;
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .feature-section .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .feature-card {
    min-height: 300px;
    padding: 22px 18px;
  }

  .feature-card:last-child {
    width: min(100%, 420px);
    justify-self: center;
    grid-column: 1 / -1;
  }

  .feature-card h3 {
    font-size: 1.34rem;
    line-height: 1.5;
  }

  .feature-card .help {
    max-width: 260px;
  }
}

@media (min-width: 861px) and (max-width: 1240px) {
  .signal-score-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 680px;
    justify-self: center;
    margin-inline: auto;
    gap: 24px;
    padding: 30px;
  }

  .score-card-main {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 26px;
  }

  .score-card-copy {
    justify-items: start;
    text-align: left;
  }

  .score-card-copy h2 {
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    line-height: 1.45;
  }

  .score-card-side {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .score {
    width: 150px;
    height: 150px;
    margin-inline: 0;
  }

  .signal-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page > .section:not(.feature-section) > .grid.cols-3:not(.experience-card-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .feature-section .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .feature-card {
    min-height: 430px;
  }

  .feature-card:last-child {
    width: min(100%, 420px);
    justify-self: center;
    grid-column: 1 / -1;
  }
}

@media (min-width: 700px) and (max-width: 860px) {
  .home-hero {
    padding: 64px 38px 78px;
  }

  .home-hero .tagline {
    margin-bottom: 32px;
  }

  .home-hero .hero-copy h1 {
    width: min(100%, 460px);
    max-width: 460px;
    font-size: clamp(2rem, 4.3vw, 2.35rem);
  }

  .home-hero .lead,
  .home-hero .hero-note {
    width: min(100%, 430px);
    max-width: 430px;
  }

  .home-hero .actions {
    max-width: 360px;
  }

  .home-hero .season-bg {
    background-position: right top;
  }

  .home-hero .season-bg.is-active {
    opacity: 0.64;
  }

  .review-flow {
    width: min(100%, 760px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .flow-step {
    min-height: 230px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 14px;
    padding: 28px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 254, 253, 0.9);
    box-shadow: var(--soft-shadow);
    text-align: center;
  }

  .flow-step:last-child {
    width: auto;
    grid-column: auto;
    justify-self: stretch;
  }

  .flow-icon {
    width: 82px;
    height: 82px;
    font-size: 1.7rem;
  }

  .step-number {
    top: 14px;
    left: 14px;
  }

  .flow-step h3 {
    font-size: 1.08rem;
    margin-bottom: 2px;
  }

  .flow-step p {
    max-width: 220px;
    font-size: 0.84rem;
    line-height: 1.75;
  }

  .feature-section .grid.cols-3 {
    width: min(100%, 760px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-card {
    width: min(100%, 540px);
    max-width: 540px;
    padding-block: 50px;
  }

  .site-footer {
    width: calc(100% - 40px);
    text-align: left;
  }

  .footer-main {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px 34px;
    align-items: start;
  }

  .footer-about,
  .footer-brand,
  .footer-bottom {
    justify-content: start;
  }

  .footer-about p {
    max-width: 300px;
  }

  .footer-link-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    margin-inline: 0;
  }

  .footer-link-grid div {
    text-align: left;
  }

  .footer-link-grid div:nth-child(3) {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    text-align: left;
  }

  .footer-safety-card {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-items: start;
    text-align: left;
  }

  .footer-safety-card h2,
  .footer-safety-card a {
    justify-content: flex-start;
  }
}

@media (min-width: 481px) and (max-width: 860px) {
  .feature-section .grid.cols-3 {
    justify-items: center;
  }

  .feature-section .feature-card {
    width: min(100%, 540px);
    max-width: 540px;
  }

  .feature-cta {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .feature-cta p {
    max-width: 540px;
    margin-inline: auto;
  }

  .search-route-heading {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .search-route-heading p {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 360px) {
  .brand {
    font-size: 1.35rem;
    gap: 10px;
  }

  .brand-logo {
    width: 66px;
    height: 40px;
  }

  .nav a {
    font-size: 0.8rem;
    padding: 9px 6px;
  }

  .nav {
    grid-template-columns: 1fr;
  }
  .lead,
  .tagline {
    width: min(100%, 280px);
  }

  .hero-copy h1 {
    width: min(100%, calc(100vw - 40px));
    max-width: calc(100vw - 40px);
    font-size: clamp(1.42rem, 6.9vw, 1.54rem);
  }

  .tagline {
    justify-content: center;
    font-size: 0.86rem;
    padding-inline: 12px;
  }
}

@media (min-width: 861px) and (max-width: 1240px) {
  :root {
    --card-gap: 22px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 3.6vw, 3rem);
    max-width: 100%;
  }

  .home-hero .lead {
    max-width: 610px;
    margin-top: 12px;
    font-size: clamp(1rem, 1.75vw, 1.08rem);
    line-height: 1.85;
  }

  .home-hero .hero-note {
    max-width: 610px;
    font-size: clamp(0.86rem, 1.42vw, 0.94rem);
    line-height: 1.78;
  }

  .review-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 24px 28px;
  }

  .flow-arrow {
    display: none;
  }

  .flow-step {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
  }

  .flow-icon {
    width: 62px;
    height: 62px;
    font-size: 1.45rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    top: -6px;
    left: -5px;
    font-size: 0.82rem;
  }

  .flow-step h3 {
    font-size: 0.98rem;
    line-height: 1.35;
    margin-bottom: 4px;
  }

  .flow-step p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .grid.cols-3 {
    gap: 22px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    gap: 18px 22px;
  }

  .category-chip {
    padding: 16px 24px;
  }

  .signal-search-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .selected-summary {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 24px;
    align-items: stretch;
  }

  .selected-summary h2 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
    font-size: 1.22rem;
  }

  .selected-summary .summary-block {
    min-height: 126px;
    margin: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 254, 253, 0.72);
  }

  .selected-summary .summary-block p {
    margin-bottom: 10px;
    font-size: 0.78rem;
  }

  .selected-summary .summary-block p strong {
    min-height: 24px;
    padding-inline: 10px;
  }

  .selected-summary .summary-signals {
    gap: 8px;
  }

  .selected-summary .summary-signals span,
  .selected-summary .summary-chip,
  .selected-summary .summary-empty {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .selected-summary .summary-chip {
    padding: 8px 12px;
  }

  .selected-summary .summary-note {
    grid-column: 1 / -1;
    padding: 12px 14px;
    font-size: 0.78rem;
  }

  .selected-summary.experience-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 920px;
    justify-self: center;
  }

  .selected-summary.experience-summary .summary-block {
    min-height: 116px;
  }

  .card {
    min-height: 430px;
    padding: 0;
  }

  .card-main {
    padding: 34px 30px 24px;
  }

  .card-top-row {
    padding-right: 74px;
    margin-bottom: 22px;
  }

  .card-empathy {
    top: 30px;
    right: 30px;
  }

  .card h3 {
    margin-bottom: 20px;
    font-size: 1.14rem;
    line-height: 1.6;
  }

  .card .help {
    margin-bottom: 28px;
    font-size: 0.86rem;
    line-height: 1.78;
  }

  .chip {
    padding: 4px 8px;
    font-size: 0.74rem;
  }

  .card-footer {
    gap: 6px;
    min-height: 82px;
    padding: 14px 30px;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .empathy-button {
    min-height: 40px;
    padding: 5px 12px;
    font-size: 0.76rem;
  }

  .heart {
    width: 24px;
    height: 24px;
    font-size: 1.12rem;
  }

  .feature-card h3,
  .search-route-card h3,
  .panel h2,
  .panel h3 {
    line-height: 1.45;
  }

  .feature-card h3,
  .search-route-card h3 {
    font-size: 1.22rem;
  }

  .feature-card .help,
  .search-route-card p,
  .panel p,
  .signal-step-heading p,
  .selected-summary {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .attribute-row.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-field {
    grid-column: span 2;
  }

  label span,
  .label {
    font-size: 0.84rem;
  }

  input,
  select,
  textarea {
    font-size: 0.86rem;
  }
}

@media (min-width: 861px) and (max-width: 1100px) {
  .review-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .flow-step {
    min-height: 300px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 10px;
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 254, 253, 0.9);
    box-shadow: var(--soft-shadow);
    text-align: center;
  }

  .flow-step:last-child {
    width: min(100%, 420px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .flow-icon {
    width: 104px;
    height: 104px;
    font-size: 2rem;
  }

  .step-number {
    top: 18px;
    left: 18px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .flow-step h3 {
    font-size: 1.34rem;
    line-height: 1.5;
  }

  .flow-step p {
    max-width: 260px;
    font-size: 0.88rem;
    line-height: 1.75;
  }
}

@media (min-width: 720px) and (max-width: 1100px) {
  .review-flow {
    width: min(100%, 980px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .flow-step {
    min-height: 240px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 16px;
    padding: 32px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 254, 253, 0.92);
    box-shadow: var(--soft-shadow);
    text-align: center;
  }

  .flow-step:last-child {
    width: auto;
    grid-column: auto;
    justify-self: stretch;
  }

  .flow-icon {
    width: 86px;
    height: 86px;
    font-size: 1.72rem;
  }

  .step-number {
    top: 18px;
    left: 18px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .flow-step h3 {
    font-size: 1.12rem;
    line-height: 1.45;
    margin-bottom: 0;
  }

  .flow-step p {
    max-width: 230px;
    font-size: 0.86rem;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .site-header {
    width: calc(100% - 20px);
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 10px;
    padding: 14px 16px;
  }

  .brand {
    gap: 10px;
    font-size: clamp(1.32rem, 7vw, 1.55rem);
  }

  .brand-logo {
    width: 69px;
    height: 42px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .page {
    padding-inline: 12px;
  }

  .hero {
    margin-left: -12px;
    margin-right: -12px;
    padding-inline: 22px;
  }

  .home-hero {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .hero-copy h1,
  .lead,
  .hero-note {
    max-width: calc(100vw - 44px);
  }

  .actions,
  .primary-cta-group,
  .hero .icon-button {
    width: 100%;
    max-width: 100%;
  }

  .hero .icon-button {
    min-height: 58px;
    padding-inline: 14px;
    justify-content: center;
  }

  .post-intro .notice,
  .post-form,
  .signal-search-panel,
  .selected-summary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .footer-link-grid {
    width: min(100%, 340px);
    gap: 22px 16px;
  }

  .post-intro h1,
  .page:not(.home-page) > h1 {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .not-found-page {
    margin-top: 32px;
    padding: 32px 16px;
  }

  .not-found-actions,
  .not-found-actions .icon-button {
    width: 100%;
  }

  .not-found-actions .icon-button {
    min-width: 0;
  }

  .search-steps span {
    padding: 14px 2px 12px;
    gap: 4px;
  }

  .search-steps strong {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .search-steps small {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .signal-step,
  .selected-summary {
    padding: 12px;
  }

  .summary-note {
    padding: 12px;
  }
}

@media (min-width: 700px) and (max-width: 860px) {
  .post-form {
    width: min(100%, 760px);
  }

  .post-page .checkbox-grid:not(.confirmation-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-page .attribute-row.cols-2,
  .post-page .attribute-row.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-page .attribute-row.cols-1 {
    grid-template-columns: minmax(0, 1fr);
    max-width: calc((100% - 12px) / 2);
  }

  .signal-category-grid,
  .signal-choice-grid,
  .optional-filter-grid,
  .check-basic-grid,
  .gender-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-category-card {
    min-height: 140px;
  }

  .selected-summary {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 20px;
  }

  .selected-summary h2,
  .selected-summary .summary-note {
    grid-column: 1 / -1;
  }

  .selected-summary .summary-block {
    min-height: 118px;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 254, 253, 0.72);
  }

  #checkResult .grid.cols-3:not(.experience-card-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Post page soft design tune */
.post-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(238, 231, 243, 0.7) 0, rgba(238, 231, 243, 0) 460px),
    var(--bg);
}

.post-page .post-intro {
  width: min(760px, 100%);
  margin-inline: 0 auto;
}

.post-page .post-intro .eyebrow {
  margin-bottom: 6px;
  color: #8b78b5;
  font-size: 0.77rem;
  letter-spacing: 0.06em;
}

.post-page .post-intro h1 {
  margin: 0;
  color: var(--brand);
  font-size: 2em;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.post-page .post-intro .lead {
  max-width: none;
  margin-top: 28px;
  color: var(--brand);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.9;
}

.post-page .post-intro .notice {
  width: 100%;
  margin-top: 38px;
  padding: 26px 30px;
  border: 1px solid #ead7a3;
  border-radius: 14px;
  background: rgba(255, 249, 226, 0.75);
  color: #5a4619;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
}

.post-page .post-form {
  width: min(760px, 100%);
  margin-inline: 0 auto;
  gap: 48px;
  margin-top: 38px;
}

.post-page .post-form > .panel {
  padding: 48px 48px;
  border: 0;
  border-radius: 34px;
  background: rgba(255, 254, 253, 0.96);
  box-shadow: 0 28px 72px rgba(47, 34, 23, 0.1);
}

.post-page .post-form h2 {
  color: var(--brand);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.post-page .post-panel-heading,
.post-page .post-body-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.post-page .post-feeling-count {
  min-width: 66px;
  min-height: 36px;
  padding: 6px 13px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #eee8f8;
  color: #6c54aa;
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.post-page .required-badge,
.post-page .hidden-badge {
  min-height: 30px;
  padding: 5px 9px;
  font-size: 0.74rem;
  writing-mode: horizontal-tb;
  letter-spacing: 0;
  white-space: nowrap;
}

.post-page .hidden-badge {
  border-color: rgba(115, 120, 130, 0.18);
  background: #f0f0f0;
  color: #858b95;
}

.post-page label > span,
.post-page .label {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.5;
}

.post-page .post-quote-panel {
  gap: 30px;
}

.post-page .post-quote-panel label > span {
  display: none;
}

.post-page input,
.post-page select,
.post-page textarea {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #e4dbe8;
  border-radius: 12px;
  background-color: #fffdff;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
}

.post-page input::placeholder,
.post-page textarea::placeholder {
  color: #8a91a0;
  opacity: 1;
}

.post-page select {
  color: #8a91a0;
  font-size: 0.9rem;
  background-color: #fffdff;
}

.post-page select[required]:valid {
  color: var(--brand);
}

.post-page select option {
  color: var(--brand);
}

.post-page select option[value=""] {
  color: #8a91a0;
}

.post-page .post-feeling-panel {
  gap: 42px;
}

.post-page .post-feeling-panel .label {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
}

.post-page .post-feeling-panel .checkbox-grid {
  grid-template-columns: repeat(4, max-content);
  align-items: start;
  gap: 12px 14px;
}

.post-page .post-feeling-panel .check {
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid #eadfd3;
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.86);
  color: var(--brand);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}

.post-page .post-feeling-panel .check input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  border-radius: 50%;
  accent-color: #a38abd;
  flex: 0 0 20px;
}

.post-page .post-body-panel {
  gap: 28px;
}

.post-page .sample-toggle {
  min-width: 156px;
  min-height: 48px;
  border-color: var(--brand);
  border-radius: 16px;
  background: rgba(255, 254, 253, 0.72);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 900;
}

.post-page .post-body-panel .help,
.post-page .post-attribute-panel .help {
  margin: 0;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.9;
}

.post-page .post-body-panel label > span {
  display: none;
}

.post-page .experience-body-input {
  min-height: 500px;
  padding: 20px 18px;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.9;
}

.post-page .post-body-sample {
  border-radius: 18px;
}

.post-page .post-attribute-panel {
  display: grid;
  gap: 34px;
}

.post-page .post-attribute-panel .attribute-grid {
  gap: 30px;
  margin-top: 0 !important;
}

.post-page .post-attribute-panel .attribute-row {
  gap: 30px 18px;
}

.post-page .post-attribute-panel .attribute-row.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-page .post-attribute-panel .attribute-row.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-page .post-attribute-panel .attribute-row.cols-1 {
  max-width: 240px;
}

.post-page .post-attribute-panel label {
  display: grid;
  gap: 12px;
}

.post-page .post-confirmation-panel {
  gap: 22px;
}

.post-page .confirmation-grid {
  gap: 18px;
}

.post-page .confirmation-grid .check {
  min-height: 64px;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  border-color: #e7deea;
  border-radius: 16px;
  background: rgba(255, 254, 253, 0.84);
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.post-page .confirmation-grid .check input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0;
  flex: 0 0 22px;
}

.post-page .post-form button[type="submit"] {
  width: min(360px, 100%);
  min-height: 58px;
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .post-page .post-feeling-panel .checkbox-grid {
    grid-template-columns: repeat(3, max-content);
  }
}

@media (max-width: 860px) {
  .post-page .post-intro h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .post-page .post-intro .lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .post-page .post-intro .notice {
    margin-top: 28px;
    padding: 20px;
    font-size: 0.94rem;
  }

  .post-page .post-form {
    gap: 24px;
  }

  .post-page .post-form > .panel {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .post-page .post-form h2 {
    font-size: 1.58rem;
  }

  .post-page .post-panel-heading,
  .post-page .post-body-heading {
    display: grid;
    align-items: stretch;
  }

  .post-page .post-feeling-count {
    justify-self: start;
  }

  .post-page .post-feeling-panel .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .post-page .post-feeling-panel .check {
    width: 100%;
    white-space: normal;
  }

  .post-page .sample-toggle {
    width: 100%;
  }

  .post-page .experience-body-input {
    min-height: 360px;
  }

  .post-page .post-attribute-panel .attribute-row.cols-3,
  .post-page .post-attribute-panel .attribute-row.cols-2,
  .post-page .post-attribute-panel .attribute-row.cols-1 {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .post-page input,
  .post-page select,
  .post-page textarea {
    min-height: 58px;
    font-size: 1rem;
  }
}

/* Home hero design tune */
.home-hero {
  height: 840px;
  min-height: 840px;
  margin-top: -169px;
  padding: 188px max(44px, calc((100vw - 1420px) / 2 + 44px)) 144px;
}

.home-hero .season-bg {
  background-position: calc(100% + 20px) top;
  background-size: auto 100%;
}

@media (min-width: 1680px) {
  .home-hero .season-bg {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.4) 62%, #000 76%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.4) 62%, #000 76%);
  }
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 1) 0%, rgba(251, 247, 241, 0.99) 34%, rgba(251, 247, 241, 0.82) 54%, rgba(251, 247, 241, 0.32) 68%, rgba(251, 247, 241, 0.06) 86%, rgba(251, 247, 241, 0) 100%),
    linear-gradient(180deg, rgba(251, 247, 241, 0.08) 0%, rgba(251, 247, 241, 0) 54%, rgba(251, 247, 241, 0.8) 100%);
}

.home-hero .hero-copy {
  max-width: 860px;
}

@media (min-width: 861px) {
  .home-hero .hero-copy {
    margin-left: 30px;
  }
}

.home-hero .tagline {
  padding: 12px 28px;
  margin-bottom: 46px;
  font-size: 1rem;
}

.home-hero .hero-copy h1.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-hero .lead {
  max-width: 840px;
  margin-top: 10px;
  color: #273249;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 2.26;
}

.home-hero .hero-note {
  max-width: 850px;
  margin-top: 24px;
  color: #273249;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 2.12;
}

.home-hero .hero-assurance {
  width: min(740px, 100%);
  min-height: 78px;
  margin-top: 42px;
  padding: 0 26px;
  border-radius: 18px;
  background: rgba(255, 254, 253, 0.9);
  box-shadow: 0 24px 52px rgba(49, 36, 23, 0.1);
}

.home-hero .hero-actions {
  gap: 22px;
  margin-top: 30px;
}

.home-hero .primary-cta-group {
  width: fit-content;
  max-width: 100%;
}

.home-hero .primary.icon-button {
  width: fit-content;
  max-width: min(100%, 380px);
  min-width: 0;
  min-height: 86px;
  padding-inline: 44px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 22px 42px rgba(25, 48, 86, 0.28);
}

.home-hero .ghost.icon-button {
  width: min(300px, 100%);
  min-width: 0;
  min-height: 72px;
  padding-inline: 34px;
  border-color: var(--brand);
  background: rgba(255, 254, 253, 0.72);
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: none;
}

.home-page > .review-flow {
  position: relative;
  z-index: 3;
  width: min(100%, 1410px);
  margin: -112px auto 0;
  padding: 36px 48px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(226, 217, 209, 0.86);
  border-radius: 30px;
  background: rgba(255, 254, 253, 0.96);
  box-shadow: 0 30px 72px rgba(48, 37, 25, 0.12);
  backdrop-filter: blur(12px);
}

.home-page > .review-flow .flow-step {
  min-height: 0;
  grid-template-columns: 118px minmax(150px, 1fr);
  gap: 26px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.home-page > .review-flow .flow-step > div {
  min-width: 150px;
  width: 100%;
  writing-mode: horizontal-tb;
}

.home-page > .review-flow .flow-icon {
  width: 104px;
  height: 104px;
  color: #7e8794;
  background: #edf0f2;
  font-size: 2.2rem;
}

.home-page > .review-flow .flow-step:nth-of-type(2) .flow-icon {
  color: #6b967e;
  background: #e4f1ea;
}

.home-page > .review-flow .flow-step:nth-of-type(3) .flow-icon {
  color: #7f64a2;
  background: #eee8f6;
}

.home-page > .review-flow .step-number {
  top: 2px;
  left: -10px;
  width: 38px;
  height: 38px;
  background: #bc8c36;
  box-shadow: 0 12px 24px rgba(67, 51, 34, 0.16);
  font-size: 1rem;
}

.home-page > .review-flow .flow-step:nth-of-type(2) .step-number {
  background: #9d82bd;
}

.home-page > .review-flow .flow-step:nth-of-type(3) .step-number {
  background: #6d957f;
}

.home-page > .review-flow .flow-step h3 {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1.45;
  writing-mode: horizontal-tb;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.home-page > .review-flow .flow-step p {
  color: #30394f;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.85;
  writing-mode: horizontal-tb;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.home-page > .review-flow .flow-arrow {
  color: #9b83bd;
  font-size: 2rem;
}

@media (max-width: 1240px) {
  .home-page > .review-flow {
    width: min(100%, 980px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 26px;
  }

  .home-page > .review-flow .flow-arrow {
    display: none;
  }

  .home-page > .review-flow .flow-step {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 26px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
  }

  .home-page > .review-flow .flow-step p {
    max-width: 260px;
  }
}

@media (max-width: 860px) {
  .home-hero {
    min-height: auto;
    margin-top: 0;
    padding: 54px 24px 72px;
  }

  .home-hero .hero-copy {
    max-width: min(100%, 620px);
  }

  .home-hero .lead {
    width: min(100%, 620px);
    max-width: 100%;
    font-size: 1.02rem;
    line-height: 1.95;
  }

  .home-hero .hero-note {
    width: min(100%, 620px);
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.88;
  }

  .home-hero .hero-assurance {
    width: min(100%, 620px);
    min-height: 0;
    margin-top: 28px;
    padding: 10px 18px;
    grid-template-columns: 1fr;
  }

  .home-hero .hero-assurance span {
    min-height: 48px;
    justify-content: flex-start;
  }

  .home-hero .hero-assurance span + span {
    border-left: 0;
    border-top: 1px solid rgba(213, 202, 194, 0.9);
  }

  .home-hero .hero-actions {
    width: min(100%, 430px);
    max-width: 100%;
    margin-top: 30px;
  }

  .home-hero .primary-cta-group,
  .home-hero .primary.icon-button,
  .home-hero .ghost.icon-button {
    width: 100%;
    max-width: 100%;
  }

  .home-hero .primary.icon-button,
  .home-hero .ghost.icon-button {
    min-height: 58px;
    padding-inline: 34px;
    justify-content: space-between;
    font-size: 0.96rem;
  }

  .home-page > .review-flow {
    width: min(100%, 620px);
    margin-top: 28px;
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-page > .review-flow .flow-step {
    grid-template-columns: 72px minmax(0, 1fr);
    justify-items: stretch;
    gap: 18px;
    padding: 22px 18px;
    text-align: left;
  }

  .home-page > .review-flow .flow-icon {
    width: 72px;
    height: 72px;
    font-size: 1.58rem;
  }

  .home-page > .review-flow .step-number {
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .home-hero {
    padding-inline: 22px;
  }

  .home-page > .review-flow .flow-step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* Home feature section design tune */
.home-page > .feature-section {
  padding-top: 126px;
}

.home-page > .feature-section .center-heading {
  margin-bottom: 58px;
}

.home-page > .feature-section .grid.cols-3 {
  gap: 36px;
}

.home-page > .feature-section .feature-card {
  min-height: 526px;
  padding: 48px 56px;
  border: 0;
  border-radius: 30px;
  background: rgba(255, 254, 253, 0.94);
  box-shadow: 0 28px 70px rgba(47, 34, 23, 0.09);
  align-content: start;
  gap: 0;
}

.home-page > .feature-section .feature-icon {
  width: 148px;
  height: 148px;
  margin: 0 0 30px;
  font-size: 3.1rem;
}

.home-page > .feature-section .feature-icon.safety {
  color: #9c6a1b;
  background: #f4e7d2;
}

.home-page > .feature-section .feature-icon.safety .fi {
  transform: translateY(2px);
}

.home-page > .feature-section .feature-icon.cgm {
  color: #bd6179;
  background: #fae6ec;
}

.home-page > .feature-section .feature-icon.check {
  color: #3d7665;
  background: #e6f1ec;
  border: 0;
  box-shadow: none;
}

.home-page > .feature-section .eyebrow {
  margin: 0 0 28px;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.home-page > .feature-section .feature-card h3 {
  max-width: 390px;
  margin: 0 0 30px;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1.58;
  letter-spacing: 0;
}

.home-page > .feature-section .feature-card .help {
  max-width: 380px;
  margin: 0;
  color: #465168;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 2.05;
}

.home-page > .feature-section .feature-cta {
  gap: 28px;
  margin-top: 62px;
}

.home-page > .feature-section .feature-cta p {
  max-width: 1040px;
  color: var(--brand);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 2.05;
}

.home-page > .feature-section .feature-cta .primary.icon-button {
  width: fit-content;
  max-width: min(100%, 420px);
  min-width: 0;
  min-height: 86px;
  padding-inline: 48px;
  font-size: 1.22rem;
  font-weight: 900;
  box-shadow: 0 24px 46px rgba(25, 48, 86, 0.26);
}

@media (max-width: 1240px) {
  .home-page > .feature-section .grid.cols-3 {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .home-page > .feature-section .feature-card {
    min-height: 430px;
    padding: 38px 28px;
  }

  .home-page > .feature-section .feature-card:last-child {
    width: auto;
    grid-column: auto;
    justify-self: stretch;
  }

  .home-page > .feature-section .feature-card h3 {
    font-size: 1.5rem;
  }

  .home-page > .feature-section .feature-card .help {
    font-size: 0.96rem;
  }
}

@media (max-width: 860px) {
  .home-page > .feature-section {
    padding-top: 70px;
  }

  .home-page > .feature-section .grid.cols-3 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-page > .feature-section .feature-card,
  .home-page > .feature-section .feature-card:last-child {
    width: 100%;
    min-height: 0;
    grid-column: auto;
    padding: 34px 24px;
  }

  .home-page > .feature-section .feature-icon {
    width: 118px;
    height: 118px;
    margin-bottom: 22px;
    font-size: 2.45rem;
  }

  .home-page > .feature-section .eyebrow {
    margin-bottom: 18px;
    font-size: 0.82rem;
  }

  .home-page > .feature-section .feature-card h3 {
    margin-bottom: 18px;
    font-size: 1.42rem;
    line-height: 1.58;
  }

  .home-page > .feature-section .feature-card .help {
    max-width: 320px;
    font-size: 0.92rem;
    line-height: 1.9;
  }

  .home-page > .feature-section .feature-cta {
    margin-top: 38px;
  }

  .home-page > .feature-section .feature-cta p {
    font-size: 0.98rem;
    line-height: 1.95;
  }

  .home-page > .feature-section .feature-cta .primary.icon-button {
    width: min(100%, 420px);
    min-height: 60px;
    padding-inline: 34px;
    justify-content: space-between;
    font-size: 0.98rem;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .home-hero .primary-cta-group {
    width: fit-content;
    max-width: 100%;
  }

  .home-hero .primary.icon-button {
    width: fit-content;
    max-width: min(100%, 380px);
  }

  .home-hero .ghost.icon-button {
    width: min(100%, 300px);
  }
}

.home-page .search-route-card .route-badge {
  left: auto;
  right: 24px;
}

@media (max-width: 860px) {
  .home-page .search-route-card .route-badge {
    right: 18px;
  }
}

/* Home FAQ design tune */
.home-page > .faq-section {
  max-width: 1360px;
  margin-top: 112px;
}

.home-page > .faq-section .center-heading {
  margin-bottom: 48px;
}

.home-page > .faq-section .faq-grid {
  gap: 28px 34px;
  margin-top: 0;
}

.home-page > .faq-section .faq-item {
  min-height: 206px;
  gap: 24px;
  padding: 38px 44px;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 254, 253, 0.94);
  box-shadow: 0 24px 66px rgba(47, 34, 23, 0.09);
}

.home-page > .faq-section .faq-item h3 {
  color: var(--brand);
  font-size: 1.42rem;
  line-height: 1.55;
  letter-spacing: 0;
}

.home-page > .faq-section .faq-item p {
  color: #5b6578;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 2.05;
}

.home-page > .announcements-section {
  max-width: 1360px;
  margin-top: 112px;
}

.home-page > .announcements-section .center-heading {
  margin-bottom: 48px;
}

.home-page > .announcements-section .announcements-grid {
  width: min(100%, 860px);
  gap: 18px;
}

.home-page > .announcements-section .announcement-card {
  min-height: 82px;
  grid-template-columns: minmax(104px, 0.18fr) 1px minmax(0, 1fr);
  gap: clamp(20px, 2.45vw, 30px);
  padding: 22px clamp(28px, 3.5vw, 42px);
  border: 0;
  border-radius: 24px;
  background: rgba(255, 254, 253, 0.94);
  box-shadow: 0 24px 66px rgba(47, 34, 23, 0.09);
}

.home-page > .announcements-section .announcement-card-label {
  color: #8b78b5;
  font-size: 0.88rem;
  font-weight: 900;
}

.home-page > .announcements-section .announcement-card-divider {
  height: 34px;
  background: rgba(184, 164, 147, 0.55);
}

.home-page > .announcements-section .announcement-card h3 {
  color: var(--brand);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.55;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 860px) {
  .home-page > .faq-section {
    margin-top: 72px;
  }

  .home-page > .faq-section .center-heading {
    margin-bottom: 34px;
  }

  .home-page > .faq-section .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-page > .faq-section .faq-item {
    min-height: 0;
    gap: 16px;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .home-page > .faq-section .faq-item h3 {
    font-size: 1.12rem;
  }

  .home-page > .faq-section .faq-item p {
    font-size: 0.92rem;
    line-height: 1.9;
  }

  .home-page > .announcements-section {
    margin-top: 72px;
  }

  .home-page > .announcements-section .center-heading {
    margin-bottom: 34px;
  }

  .home-page > .announcements-section .announcements-grid {
    width: 100%;
    gap: 16px;
  }

  .home-page > .announcements-section .announcement-card {
    min-height: 82px;
    grid-template-columns: minmax(76px, 0.24fr) 1px minmax(0, 1fr);
    gap: clamp(12px, 4vw, 18px);
    padding: 20px 22px;
    border-radius: 20px;
  }

  .home-page > .announcements-section .announcement-card-label {
    font-size: 0.76rem;
  }

  .home-page > .announcements-section .announcement-card-divider {
    height: 30px;
  }

  .home-page > .announcements-section .announcement-card h3 {
    font-size: 0.86rem;
  }
}

/* Signal search design tune */
.check-page > section:first-child {
  margin-bottom: 28px;
}

.check-page .signal-search-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 32px;
  align-items: start;
  margin-top: 28px;
}

:is(.check-page, .experiences-page) .search-panel-card,
:is(.check-page, .experiences-page) .search-summary-card,
:is(.check-page, .experiences-page) .results-detail-filters {
  border: 0;
  border-radius: 34px;
  background: rgba(255, 254, 253, 0.96);
  box-shadow: 0 28px 72px rgba(47, 34, 23, 0.1);
}

.check-page .check-search-panel,
.check-page .check-summary,
.check-page .signal-score-card,
.check-page .results-detail-filters {
  border: 0;
  border-radius: 34px;
  background: rgba(255, 254, 253, 0.96);
  box-shadow: 0 28px 72px rgba(47, 34, 23, 0.1);
}

.check-page .check-search-panel {
  padding: 48px 48px;
  overflow: visible;
}

.check-page .search-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}

.check-page .search-steps span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #e9e2f4;
  color: var(--brand);
}

.check-page .search-steps span + span::before {
  display: none;
}

.check-page .search-steps strong {
  width: 30px;
  height: 30px;
  border: 0;
  background: #8f78b8;
  color: #fff;
  font-size: 0.98rem;
}

.check-page .search-steps small {
  font-size: 0.86rem;
  font-weight: 900;
}

.check-page .signal-step {
  padding: 0;
  margin-top: 26px;
  border: 0;
}

.check-page .signal-step-heading {
  gap: 14px;
  margin-bottom: 18px;
}

.check-page .signal-step-heading h2 {
  font-size: 1.34rem;
}

.check-page .step-badge {
  width: 42px;
  height: 42px;
  background: #8f78b8;
  font-size: 1.08rem;
}

.check-page .check-basic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.check-page .check-basic-grid label,
.check-page .results-detail-filters label {
  gap: 8px;
}

.check-page .check-basic-grid select,
.check-page .results-detail-filters select,
.check-page .detail-keyword-search input {
  min-height: 54px;
  border-radius: 10px;
}

.check-page .gender-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.check-page .gender-choice {
  min-height: 58px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
}

.check-page .gender-choice.gender-male,
.check-page .gender-choice.gender-female {
  border-color: #e3d7cc;
  background: #fff;
  color: var(--brand);
}

.check-page .gender-choice.active {
  border-color: #cfd5df;
  background: #f4f5f8;
  color: #667085;
  box-shadow: none;
}

.check-page .gender-choice.gender-female.active {
  border-color: #cfd5df;
  background: #f4f5f8;
  color: #667085;
}

.check-page .check-inline-status {
  margin-top: 22px;
}

.check-page .result-status {
  width: 100%;
  min-height: 58px;
  justify-content: flex-start;
  margin: 0;
  border: 0;
  border-radius: 12px;
  background: #e6f2ed;
  color: #2d7059;
}

.check-page .result-status .fi {
  color: #2d7059;
}

.check-page .check-summary {
  display: block;
  top: 118px;
  padding: 48px 48px;
  border-radius: 34px;
  background: #f8f4fb;
}

.check-page .selected-summary h2 {
  display: flex;
  grid-column: auto;
  margin-bottom: 30px;
  color: var(--brand);
  font-size: 1.45rem;
  line-height: 1.35;
}

.check-page .summary-block {
  margin-bottom: 26px;
  padding-bottom: 0;
  min-height: 0;
  border-width: 0;
  border-radius: 0;
  background: transparent;
}

.check-page .summary-block p {
  margin: 0 0 14px;
  color: #8f78b8;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
  writing-mode: horizontal-tb;
}

.check-page .summary-block p strong {
  min-height: 0;
  margin-left: 4px;
  padding: 0;
  background: transparent;
  color: #bd6179;
  font-size: 1.02rem;
  font-weight: 900;
}

.check-page .summary-signals {
  display: grid;
  gap: 10px;
}

.check-page .summary-signals span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #34394a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  writing-mode: horizontal-tb;
}

.check-page .summary-signals .fi,
.check-page .summary-chip .fi {
  color: #7ca68f;
  font-size: 1rem;
}

.check-page .summary-chip {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #ede7f6;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  writing-mode: horizontal-tb;
}

.check-page .summary-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 6px;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid #e2d8d0;
  border-radius: 0;
  background: transparent;
  color: #626778;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.75;
}

.check-page .summary-note .fi {
  color: #8f78b8;
  font-size: 1.1rem;
}

.check-page .summary-empty {
  color: #34394a;
  font-size: 14px;
  font-weight: 900;
}

.check-page .check-result-area {
  margin-top: 50px;
}

.check-page .signal-score-card {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.82fr);
  gap: clamp(44px, 5vw, 70px);
  align-items: center;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  margin-inline: 0;
  padding: clamp(42px, 4.6vw, 58px) clamp(44px, 5.2vw, 66px);
  border-radius: 34px;
  background: rgba(255, 254, 253, 0.98);
  box-shadow: 0 28px 78px rgba(47, 34, 23, 0.1);
}

.check-page .score-card-main {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: clamp(30px, 3.5vw, 46px);
  align-items: center;
}

.check-page .score {
  width: 150px;
  height: 150px;
  background: conic-gradient(#bd6179 calc(var(--score) * 1%), #f1e9ef 0);
}

.check-page .score::after {
  inset: 15px;
  background: #fff;
}

.check-page .score strong {
  color: var(--brand);
  font-size: 3rem;
  font-weight: 900;
}

.check-page .score-card-copy .eyebrow {
  color: #8b78b5;
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.check-page .score-label-pill {
  min-height: 40px;
  padding: 7px 20px;
  background: #bd6179;
  color: #fff;
  font-size: 1rem;
}

.check-page .score-card-copy h2 {
  font-size: 26px;
  line-height: 1.42;
  letter-spacing: 0.01em;
}

.check-page .score-card-copy .help {
  max-width: 620px;
  margin: 0;
  color: #44506a;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.9;
}

.check-page .score-card-side {
  gap: 18px;
  padding-left: clamp(34px, 4vw, 54px);
  padding-top: 0;
  border-left: 1px solid #e1d5cb;
  border-top: 0;
}

.check-page .score-card-divider {
  margin: 4px 0 6px;
  border-top: 1px solid #e1d5cb;
}

.check-page .signal-group-summary {
  grid-template-columns: 1fr;
  gap: 0;
}

.check-page .signal-group-summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.check-page .signal-group-summary > div + div {
  padding-top: 4px;
}

.check-page .signal-group-summary span {
  margin: 0;
  color: var(--brand);
  font-size: 1.08rem;
}

.check-page .signal-group-summary strong {
  color: var(--brand);
  font-size: 1.72rem;
  line-height: 1;
}

.check-page .signal-group-summary small {
  font-size: 1rem;
  font-weight: 800;
}

.check-page .score-card-side .readonly-label {
  margin: 0 0 8px;
  color: #8b78b5;
  font-size: 0.98rem;
  font-weight: 900;
}

.check-page .score-field-chips {
  gap: 12px;
}

.check-page .score-field-chip {
  min-height: 44px;
  padding: 9px 18px;
  background: #f1edf8;
  color: #66549b;
  font-size: 1rem;
}

.check-page .score-field-chip .fi {
  color: #8f78b8;
}

.check-page .results-heading {
  margin-top: 34px;
  margin-bottom: 16px;
}

.check-page .results-title-actions {
  justify-content: flex-start;
  gap: 18px;
}

.check-page .detail-filter-toggle {
  min-height: 58px;
  margin: 0;
  padding-inline: 26px;
  border: 1.5px solid #8f78b8;
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.92);
  color: var(--brand);
  box-shadow: none;
}

.check-page .detail-filter-toggle .fi {
  color: #8f78b8;
}

.check-page .results-detail-filters {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 16px 0 22px;
  padding: 26px 28px;
}

.check-page .detail-filter-header,
.check-page .detail-keyword-control,
.check-page .detail-filter-note,
.check-page .detail-filter-actions {
  grid-column: 1 / -1;
}

.check-page .detail-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.check-page .detail-filter-header h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--brand);
  font-size: 1.12rem;
  letter-spacing: 0;
}

.check-page .detail-filter-close {
  width: 40px;
  height: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #e0d4ca;
  border-radius: 50%;
  background: #fff;
  color: #8a7469;
}

.check-page .detail-keyword-search {
  grid-template-columns: minmax(0, 1fr) 54px;
}

.check-page .detail-keyword-search .result-search-button {
  width: 54px;
  height: 54px;
  min-height: 54px;
  border-radius: 10px;
  background: var(--brand);
}

.check-page .detail-filter-note {
  margin: 0;
  color: #6a6471;
  font-size: 0.9rem;
  font-weight: 800;
}

.check-page .detail-filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.check-page .detail-filter-actions .ghost,
.check-page .detail-filter-actions .primary {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
}

.check-page .detail-filter-actions .primary {
  background: var(--brand);
}

.signal-page > section .lead,
.post-page .post-intro .lead,
.experiences-page > section .lead {
  font-size: 17px;
}

/* Post page width and feeling tag tune */
.post-page .post-intro,
.post-page .post-form {
  width: 760px;
  max-width: calc(100vw - 64px);
  margin-inline: auto;
}

.article-detail {
  width: 760px;
  max-width: calc(100vw - 64px);
  margin-inline: auto;
}

.post-page .post-feeling-panel .checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

.post-page .post-feeling-panel .check {
  position: relative;
  min-width: 0;
  min-height: 0;
  width: auto;
  max-width: 100%;
  padding: 9px 14px;
  border-color: #eadfef;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffefd 0%, #fbf7fd 100%);
  box-shadow: 0 8px 20px rgba(85, 64, 118, 0.06);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.post-page .post-feeling-panel .check:hover {
  transform: translateY(-1px);
  border-color: #d8c7ea;
  box-shadow: 0 10px 22px rgba(85, 64, 118, 0.1);
}

.post-page .post-feeling-panel .check:has(input:checked) {
  border-color: #cfd5df;
  background: linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%);
  color: #667085;
  box-shadow: 0 12px 24px rgba(69, 78, 92, 0.1);
}

.post-page .post-feeling-panel .check:has(input:disabled:not(:checked)) {
  cursor: not-allowed;
  border-color: #f1ece7;
  background: rgba(255, 254, 253, 0.42);
  box-shadow: none;
  color: #c7c0c2;
  transform: none;
}

.post-page .post-feeling-panel .check:has(input:disabled:not(:checked)):hover {
  border-color: #f1ece7;
  box-shadow: none;
  transform: none;
}

.post-page .post-feeling-panel .check.check-wide {
  grid-column: auto;
}

.post-page .post-feeling-panel .check input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.post-page .post-feeling-panel .check input:focus-visible {
  outline: none;
}

.post-page .post-feeling-panel .check span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  min-width: 0;
  overflow-wrap: normal;
}

.post-page .post-feeling-panel .check span::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.5px solid #cdbce0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98) 0 62%, transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f8f3fc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.post-page .post-feeling-panel .check:has(input:disabled:not(:checked)) span {
  color: #c7c0c2;
}

.post-page .post-feeling-panel .check:has(input:checked) span::before {
  border-color: #98a2b3;
  background:
    radial-gradient(circle at center, #98a2b3 0 45%, transparent 47%),
    linear-gradient(180deg, #ffffff 0%, #eef1f5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 3px rgba(152, 162, 179, 0.1);
}

.post-page .post-feeling-panel .check:has(input:disabled:not(:checked)) span::before {
  border-color: #ebe5ef;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.post-page .post-feeling-panel .check:has(input:focus-visible) {
  box-shadow:
    0 12px 24px rgba(115, 82, 162, 0.16),
    0 0 0 3px rgba(143, 120, 184, 0.16);
}

@media (max-width: 1279px) {
  .check-page .signal-search-layout {
    grid-template-columns: 1fr;
  }

  .check-page .check-summary {
    position: static;
  }

  .post-page .post-intro,
  .post-page .post-form,
  .article-detail {
    max-width: calc(100vw - 40px);
  }
}

@media (min-width: 761px) {
  .check-page .signal-score-card {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.82fr);
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-inline: 0;
  }

  .check-page .score-card-main {
    grid-template-columns: 168px minmax(0, 1fr);
  }

  .check-page .score-card-side {
    padding-left: clamp(34px, 4vw, 54px);
    padding-top: 0;
    border-left: 1px solid #e1d5cb;
    border-top: 0;
  }

  .check-page .signal-group-summary {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .check-page .signal-group-summary > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
}

@media (min-width: 761px) and (max-width: 1279px) {
  .check-page .signal-score-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 28px;
    padding: 32px;
  }

  .check-page .score-card-main {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 24px;
  }

  .check-page .score {
    width: 112px;
    height: 112px;
  }

  .check-page .score strong {
    font-size: 2.35rem;
  }

  .check-page .score-card-copy h2 {
    font-size: 26px;
  }

  .check-page .score-card-copy .help {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .check-page .score-card-side {
    padding-left: 28px;
  }

  .check-page .signal-group-summary strong {
    font-size: 1.45rem;
  }
}

@media (max-width: 760px) {
  .check-page .signal-search-layout {
    gap: 20px;
  }

  .check-page .check-search-panel,
  .check-page .check-summary,
  .check-page .signal-score-card,
  .check-page .results-detail-filters {
    border-radius: 24px;
  }

  .check-page .check-search-panel,
  .check-page .signal-score-card,
  .check-page .results-detail-filters {
    padding: 34px 22px;
  }

  .check-page .search-steps,
  .check-page .check-basic-grid,
  .check-page .gender-choice-grid,
  .check-page .results-detail-filters,
  .check-page .signal-score-card,
  .check-page .score-card-main {
    grid-template-columns: 1fr;
  }

  .check-page .score-card-side {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #e1d5cb;
    padding-top: 24px;
  }

  .check-page .signal-group-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .check-page .signal-group-summary > div {
    display: block;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(246, 240, 249, 0.55);
  }

  .check-page .signal-group-summary > div + div {
    padding-top: 14px;
  }

  .check-page .signal-group-summary span {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.84rem;
  }

  .check-page .signal-group-summary strong {
    font-size: 1.28rem;
  }

  .check-page .detail-filter-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .post-page .post-feeling-panel .checkbox-grid {
    gap: 8px;
  }

  .post-page .post-feeling-panel .check {
    padding: 8px 12px;
    font-size: 0.8rem;
    white-space: normal;
  }
}

/* Experience search shares the same base parts as Feature Search. */
.experiences-page .signal-search-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 32px;
  align-items: start;
  margin-top: 28px;
}

.experiences-page .signal-search-panel,
.experiences-page .experience-summary,
.experiences-page .results-detail-filters {
  border: 0;
  border-radius: 34px;
  background: rgba(255, 254, 253, 0.96);
  box-shadow: 0 28px 72px rgba(47, 34, 23, 0.1);
}

.experiences-page .signal-search-panel {
  padding: 48px 48px;
  overflow: visible;
}

.experiences-page .search-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}

.experiences-page .search-steps span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #e9e2f4;
  color: var(--brand);
}

.experiences-page .search-steps span + span::before {
  display: none;
}

.experiences-page .search-steps strong {
  width: 30px;
  height: 30px;
  border: 0;
  background: #8f78b8;
  color: #fff;
  font-size: 0.98rem;
}

.experiences-page .search-steps small {
  font-size: 0.86rem;
  font-weight: 900;
}

.experiences-page .signal-step {
  padding: 0;
  margin-top: 26px;
  border: 0;
}

.experiences-page .signal-step-heading {
  gap: 14px;
  margin-bottom: 18px;
}

.experiences-page .signal-step-heading h2 {
  font-size: 1.34rem;
}

.experiences-page .step-badge {
  width: 42px;
  height: 42px;
  background: #8f78b8;
  font-size: 1.08rem;
}

.experiences-page .signal-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.experiences-page .signal-category-card {
  min-height: 258px;
  justify-items: start;
  align-content: start;
  gap: 22px;
  padding: 38px 36px;
  border: 0;
  border-radius: 34px;
  background: rgba(255, 254, 253, 0.96);
  color: var(--brand);
  text-align: left;
  box-shadow: 0 28px 72px rgba(47, 34, 23, 0.08);
}

.experiences-page .signal-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 72px rgba(47, 34, 23, 0.12);
}

.experiences-page .signal-category-card.active {
  background: #f4f5f8;
  color: #667085;
  box-shadow: 0 28px 72px rgba(47, 34, 23, 0.1);
}

.experiences-page .signal-category-card.active .signal-category-icon {
  background: #e9edf4;
  color: #667085;
}

.experiences-page .signal-category-card.active strong,
.experiences-page .signal-category-card.active small {
  color: #667085;
}

.experiences-page .signal-category-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  color: var(--brand);
  font-size: 2rem;
}

.experiences-page .signal-category-card strong {
  color: var(--brand);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.experiences-page .signal-category-card small {
  color: #536074;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.65;
  opacity: 1;
}

.experiences-page .selected-check {
  top: 28px;
  right: 28px;
  width: 28px;
  height: 28px;
  border: 0;
  background: #98a2b3;
  color: #fff;
  font-size: 13px;
}

.experiences-page .signal-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.experiences-page .signal-choice {
  min-height: 58px;
  padding: 12px 24px;
  border: 1.5px solid #ddd2ed;
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.96);
  color: var(--brand);
  font-size: 16px;
  box-shadow: none;
}

.experiences-page .signal-choice.active {
  border-color: #cfd5df;
  background: #f4f5f8;
  color: #667085;
  box-shadow: 0 18px 42px rgba(47, 34, 23, 0.08);
}

.experiences-page .signal-choice span {
  gap: 14px;
  color: var(--brand);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.experiences-page .signal-choice.active span {
  color: #667085;
}

.experiences-page .signal-choice .fi {
  color: #98a2b3;
  font-size: 1.45rem;
}

.experiences-page .gender-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.experiences-page .gender-choice {
  min-height: 58px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
}

.experiences-page .gender-choice.gender-male,
.experiences-page .gender-choice.gender-female {
  border-color: #e3d7cc;
  background: #fff;
  color: var(--brand);
}

.experiences-page .gender-choice.active {
  border-color: #cfd5df;
  background: #f4f5f8;
  color: #667085;
  box-shadow: none;
}

.experiences-page .gender-choice.gender-female.active {
  border-color: #cfd5df;
  background: #f4f5f8;
  color: #667085;
}

:is(.check-page, .experiences-page) .gender-choice.gender-male {
  border-color: #bfd8ec;
  background: #eef7ff;
  color: #32698d;
}

:is(.check-page, .experiences-page) .gender-choice.gender-female {
  border-color: #efc3cb;
  background: #fff0f2;
  color: #bd5265;
}

:is(.check-page, .experiences-page) .gender-choice.active,
:is(.check-page, .experiences-page) .gender-choice.gender-female.active {
  border-color: #cfd5df;
  background: #f4f5f8;
  color: #667085;
  box-shadow: none;
}

.experiences-page .result-status {
  width: 100%;
  min-height: 58px;
  justify-content: flex-start;
  margin: 0;
  border: 0;
  border-radius: 12px;
  background: #e6f2ed;
  color: #2d7059;
}

.experiences-page .result-status .fi {
  color: #2d7059;
}

.experiences-page .experience-summary {
  top: 118px;
  display: block;
  padding: 48px 48px;
  border-radius: 34px;
  background: #f8f4fb;
}

.experiences-page .selected-summary h2 {
  display: flex;
  grid-column: auto;
  margin-bottom: 30px;
  color: var(--brand);
  font-size: 1.45rem;
  line-height: 1.35;
}

.experiences-page .summary-block {
  margin-bottom: 26px;
  padding-bottom: 0;
  min-height: 0;
  border-width: 0;
  border-radius: 0;
  background: transparent;
}

.experiences-page .summary-block p {
  margin: 0 0 14px;
  color: #8f78b8;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
  writing-mode: horizontal-tb;
}

.experiences-page .summary-block p strong {
  min-height: 0;
  margin-left: 4px;
  padding: 0;
  background: transparent;
  color: #bd6179;
  font-size: 1.02rem;
  font-weight: 900;
}

.experiences-page .summary-signals {
  display: grid;
  gap: 10px;
}

.experiences-page .summary-signals span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #34394a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  writing-mode: horizontal-tb;
}

.experiences-page .summary-signals .fi,
.experiences-page .summary-chip .fi {
  color: currentColor;
  font-size: 1rem;
}

.experiences-page .summary-chip {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #ede7f6;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  writing-mode: horizontal-tb;
}

.experiences-page .summary-chip.tone-money {
  color: #a86f16;
  background: #fff1d9;
}

.experiences-page .summary-chip.tone-safety {
  color: #2f5d9e;
  background: #e9f1fb;
}

.experiences-page .summary-chip.tone-romance {
  color: #a04769;
  background: #f7e9ef;
}

.experiences-page .summary-chip.tone-control {
  color: #635aa0;
  background: #eeeafd;
}

.experiences-page .summary-chip.tone-emotion {
  color: #2f7459;
  background: #e7f4ec;
}

.experiences-page .summary-chip.tone-profile {
  color: #2d4566;
  background: #e9edf4;
}

.experiences-page .summary-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 6px;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid #e2d8d0;
  border-radius: 0;
  background: transparent;
  color: #626778;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.75;
}

.experiences-page .summary-note .fi {
  color: #8f78b8;
  font-size: 1.1rem;
}

.experiences-page .summary-empty {
  color: #34394a;
  font-size: 14px;
  font-weight: 900;
}

@media (min-width: 761px) and (max-width: 1279px) {
  :is(.check-page, .experiences-page) .search-summary-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 18px;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 30px 34px;
  }

  :is(.check-page, .experiences-page) .search-summary-card .summary-block {
    min-height: 0;
    margin: 0;
    padding: 0 18px 0 0;
    border: 0;
    border-right: 1px solid #e2d8d0;
    background: transparent;
  }

  :is(.check-page, .experiences-page) .search-summary-card .summary-block:nth-of-type(3) {
    border-right: 0;
    padding-right: 0;
  }

  :is(.check-page, .experiences-page) .search-summary-card h2 {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }

  :is(.check-page, .experiences-page) .search-summary-card .summary-note {
    grid-column: 1 / -1;
    padding: 16px 0 0;
  }
}

.experiences-page > .section {
  margin-top: 54px;
}

.experiences-page .results-heading {
  align-items: center;
  margin-bottom: 18px;
}

.experiences-page .results-title-actions {
  justify-content: flex-start;
  gap: 18px;
}

.experiences-page .results-title-actions h2 {
  font-size: 1.55rem;
}

.experiences-page .detail-filter-toggle {
  min-height: 58px;
  margin: 0;
  padding-inline: 26px;
  border: 1.5px solid #8f78b8;
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.92);
  color: var(--brand);
  box-shadow: none;
}

.experiences-page .detail-filter-toggle .fi {
  color: #8f78b8;
}

.experiences-page .sort-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.experiences-page .sort-control > span {
  display: none;
}

.experiences-page .sort-control select {
  min-width: 148px;
  min-height: 48px;
  border-radius: 10px;
}

.experiences-page .results-detail-filters {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 16px 0 26px;
  padding: 26px 28px;
}

.experiences-page .detail-filter-header,
.experiences-page .detail-keyword-search,
.experiences-page .detail-filter-note,
.experiences-page .detail-filter-actions {
  grid-column: 1 / -1;
}

.experiences-page .detail-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.experiences-page .detail-filter-header h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--brand);
  font-size: 1.12rem;
  letter-spacing: 0;
}

.experiences-page .detail-filter-close {
  width: 40px;
  height: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #e0d4ca;
  border-radius: 50%;
  background: #fff;
  color: #8a7469;
}

.experiences-page .results-detail-filters select,
.experiences-page .detail-keyword-search input {
  min-height: 54px;
  border-radius: 10px;
}

.experiences-page .detail-keyword-search {
  grid-template-columns: minmax(0, 1fr) 54px;
}

.experiences-page .detail-keyword-search .result-search-button {
  width: 54px;
  height: 54px;
  min-height: 54px;
  border-radius: 10px;
  background: var(--brand);
}

.experiences-page .detail-filter-note {
  margin: 0;
  color: #6a6471;
  font-size: 0.9rem;
  font-weight: 800;
}

.experiences-page .detail-filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.experiences-page .detail-filter-actions .ghost,
.experiences-page .detail-filter-actions .primary {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
}

.experiences-page .detail-filter-actions .primary {
  background: var(--brand);
}

@media (max-width: 1279px) {
  .experiences-page .signal-search-layout {
    grid-template-columns: 1fr;
  }

  .experiences-page .experience-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .experiences-page .signal-search-panel,
  .experiences-page .experience-summary,
  .experiences-page .results-detail-filters {
    border-radius: 24px;
  }

  .experiences-page .signal-search-panel,
  .experiences-page .results-detail-filters {
    padding: 34px 22px;
  }

  .experiences-page .search-steps,
  .experiences-page .signal-category-grid,
  .experiences-page .signal-choice-grid,
  .experiences-page .gender-choice-grid,
  .experiences-page .results-detail-filters {
    grid-template-columns: 1fr;
  }

  .experiences-page .detail-filter-actions,
  .experiences-page .results-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .experiences-page .signal-category-card {
    min-height: 220px;
    padding: 28px 26px;
    border-radius: 24px;
  }

  .experiences-page .signal-choice {
    min-height: 54px;
    padding: 12px 18px;
  }

  .experiences-page .signal-choice span {
    font-size: 1.08rem;
  }
}

/* Experience cards keep the same proportion from desktop to mobile. */
.experience-card-grid {
  width: min(100%, 1347px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: min(8.4706vw, 36px);
  margin-inline: auto;
}

.experience-card-grid .card {
  container-type: inline-size;
  aspect-ratio: 425 / 524;
  min-height: 0;
  border-radius: 6.588%;
}

.experience-card-grid .card-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  padding:
    8.4706cqw
    9.4118cqw
    5.6471cqw;
}

.experience-card-grid .card-top-row {
  gap: 3.2941cqw;
  padding-right: 20.2353cqw;
  margin-bottom: 9.8824cqw;
}

.experience-card-grid .card-empathy {
  top: 8cqw;
  right: 9.4118cqw;
}

.experience-card-grid .card h3 {
  margin-bottom: 9.8824cqw;
  font-size: 5.7224cqw;
  line-height: 1.72;
}

.experience-card-grid .card .help {
  margin-bottom: 9.4118cqw;
  font-size: 3.7647cqw;
  line-height: 2;
}

.experience-card-grid .card .meta {
  flex-wrap: nowrap;
  gap: 1.6471cqw;
  margin-top: auto;
}

.experience-card-grid .chip {
  padding: 1.4118cqw 3.0588cqw;
  font-size: 3.2941cqw;
  white-space: nowrap;
}

.experience-card-grid .card-footer {
  min-height: 19.2941cqw;
  padding:
    3.7647cqw
    9.4118cqw;
  gap: 3.2941cqw;
  font-size: 3.5388cqw;
}

.experience-card-grid .empathy-button {
  min-height: 11.2941cqw;
  padding:
    1.4118cqw
    3.7647cqw
    1.4118cqw
    3.0588cqw;
  gap: 1.8824cqw;
  font-size: 3.5388cqw;
}

.experience-card-grid .heart {
  width: 5.6471cqw;
  height: 5.6471cqw;
  font-size: 4.9694cqw;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .experience-card-grid {
    width: min(100%, 886px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Home category chips keep the current desktop design and scale it down only. */
.home-page > .category-section .category-grid {
  width: min(100%, 1120px);
  max-width: none;
  gap: min(5.6818vw, 20px) min(6.8182vw, 24px);
  margin-inline: auto;
}

.home-page > .category-section .category-chip {
  container-type: inline-size;
  min-height: auto;
  aspect-ratio: 357.333 / 96;
  grid-template-columns: 18.1818% minmax(0, 1fr);
  gap: 6.16%;
  padding: 5.1136% 9.0909%;
  border-radius: 20px;
  font-size: 1rem;
  line-height: 1.55;
}

.home-page > .category-section .category-chip span {
  font-size: 9.04cqw;
}

.home-page > .category-section .category-chip .fi {
  font-size: 10.95cqw;
}

.home-page > .category-section .category-chip strong {
  font-size: 5.48cqw;
}

@media (min-width: 861px) and (max-width: 1240px),
  (min-width: 640px) and (max-width: 860px) {
  .home-page > .category-section .category-grid {
    width: min(100%, 738.667px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .home-page > .category-section .category-grid {
    width: min(100%, 357.333px);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .experience-card-grid {
    width: min(100%, 425px);
    grid-template-columns: 1fr;
  }
}

/* Home search route cards keep the desktop card as a fixed design and scale it down. */
@media (max-width: 1240px) {
  .home-page > .search-route-section {
    --search-route-icon-size: 112px;
    --search-route-icon-font-size: 3.15rem;
  }

  .home-page > .search-route-section .search-route-grid {
    width: min(100%, 1180px);
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    gap: clamp(20px, 2.7119vw, 32px);
  }

  .home-page > .search-route-section .search-route-card {
    container-type: inline-size;
    width: 100%;
    min-height: 0;
    aspect-ratio: 574 / 604;
    display: block;
    padding: 0;
    overflow: hidden;
    border-radius: 30px;
  }

  .home-page > .search-route-section .search-route-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 574px;
    height: 604px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 22px;
    padding: 50px 52px 42px;
    transform: scale(calc(100cqw / 574px));
    transform-origin: top left;
  }

  .home-page > .search-route-section .search-route-card .route-badge {
    position: absolute;
    top: 22px;
    left: auto;
    right: 24px;
    justify-self: auto;
    min-height: 34px;
    margin-bottom: 0;
    padding: 5px 16px;
    gap: 7px;
    font-size: 1rem;
  }

  .home-page > .search-route-section .search-route-card .route-icon {
    width: var(--search-route-icon-size);
    height: var(--search-route-icon-size);
    font-size: var(--search-route-icon-font-size);
  }

  .home-page > .search-route-section .search-route-card h3 {
    margin: 8px 0 0;
    font-size: 2rem;
    line-height: 1.35;
  }

  .page.home-page .search-route-section .search-route-card p:not(.eyebrow):not(.hero-microcopy):not(.disclaimer) {
    max-width: 460px;
    font-size: 1rem;
    line-height: 2;
  }

  .home-page > .search-route-section .route-checks {
    gap: 15px;
    width: min(100%, 450px);
    margin: 4px 0 2px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .home-page > .search-route-section .route-checks li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .home-page > .search-route-section .route-checks .fi {
    font-size: 1.2rem;
  }

  .home-page > .search-route-section .search-route-card .icon-button {
    width: min(100%, 420px);
    min-height: 58px;
    margin-top: 8px;
    font-size: 1rem;
  }
}

@media (max-width: 860px) {
  .home-page > .search-route-section .search-route-grid {
    width: min(100%, 574px);
    grid-template-columns: 1fr;
  }
}

/* Mobile hero composition: only placement, type scale, and image position. */
@media (max-width: 767px) {
  .home-hero {
    margin-top: 0;
    padding: 24px 24px 48px;
    min-height: 900px;
  }

  .home-hero .season-bg {
    background-position: calc(100% + 96px) top;
    background-size: auto clamp(704px, 196vw, 836px);
  }

  .home-hero .season-bg.is-active {
    opacity: 0.9;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(251, 247, 241, 0) 0%, rgba(251, 247, 241, 0.05) 48%, rgba(251, 247, 241, 0.96) 64%, rgba(251, 247, 241, 1) 100%),
      linear-gradient(90deg, rgba(251, 247, 241, 0.24) 0%, rgba(251, 247, 241, 0.04) 42%, rgba(251, 247, 241, 0) 100%);
  }

  .home-hero .hero-copy {
    max-width: 100%;
  }

  .home-hero .tagline {
    box-sizing: border-box;
    display: flex;
    width: fit-content;
    max-width: calc(100vw - 48px);
    margin: 0 auto;
    padding: 11px 16px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.3;
  }

  .home-hero .hero-copy h1 {
    width: min(100%, 348px);
    max-width: calc(100vw - 42px);
    margin-top: clamp(292px, 74vw, 342px);
    font-size: 43px;
    line-height: 1.42;
  }

  .home-hero .hero-copy h1 span,
  .home-hero .hero-copy h1 .mobile-line {
    white-space: normal;
  }

  .home-hero .hero-copy h1 .mobile-line {
    display: block;
    white-space: nowrap;
  }

  .home-hero .hero-copy h1 .hero-tilt,
  .home-hero .hero-copy h1 .hero-accent {
    font-size: 55px;
    line-height: 1;
  }

  .home-hero .lead {
    width: 100%;
    max-width: calc(100vw - 48px);
    margin-top: 18px;
    font-size: clamp(1.04rem, 4.35vw, 1.14rem);
    line-height: 2.14;
  }

  .home-hero .hero-note {
    width: 100%;
    max-width: calc(100vw - 48px);
    margin-top: 26px;
    font-size: clamp(1.04rem, 4.25vw, 1.12rem);
    line-height: 2.08;
  }

  .home-hero .hero-assurance {
    display: none;
  }

  .home-hero .hero-actions {
    width: min(100%, 430px);
    max-width: calc(100vw - 48px);
    margin-top: 30px;
    gap: 18px;
  }

  .home-hero .primary-cta-group {
    width: 100%;
  }

  .home-hero .primary.icon-button,
  .home-hero .ghost.icon-button {
    min-height: 72px;
    font-size: clamp(1.06rem, 4.45vw, 1.18rem);
  }

  .home-hero .hero-microcopy {
    margin-top: 4px;
    font-size: 1rem;
  }
}

@media (min-width: 1280px) {
  .home-page > .feature-section .feature-card h3,
  .home-page > .search-route-section .search-route-card h3 {
    font-size: 29px;
  }

  .home-hero .tagline {
    font-size: 17px;
  }

  .home-hero .lead,
  .home-hero .hero-note {
    font-size: 19px;
  }

  .home-page > .feature-section .feature-card .help {
    font-size: 17px;
  }

  .home-page > .review-flow .flow-step p {
    font-size: 15px;
  }

  .home-page > .faq-section .faq-item h3 {
    font-size: 19px;
  }

  .home-page > .faq-section .faq-item p {
    font-size: 15px;
  }

  .home-page > .announcements-section .announcement-card h3 {
    font-size: 16px;
  }

  .home-page > .category-section > .disclaimer {
    font-size: 11px;
  }

  .home-page > .category-section .category-chip strong {
    font-size: 17px;
  }
}

/* Mobile home lower sections: keep headings readable without changing tablet/PC. */
@media (max-width: 767px) {
  .home-page > .search-route-section {
    --search-route-icon-size: 84px;
    --search-route-icon-font-size: 2.5rem;
  }

  .home-page > .feature-section .feature-card h3,
  .home-page > .review-flow .flow-step h3,
  .home-page .search-route-heading h2,
  .home-page > .section .heading-inline h2,
  .home-page > .category-section > h2,
  .home-page > .faq-section .center-heading h2,
  .home-page #home-announcements-title {
    font-size: 22px;
    line-height: 1.55;
  }

  .home-page > .search-route-section .search-route-card {
    aspect-ratio: auto;
    min-height: 0;
    overflow: visible;
  }

  .home-page > .search-route-section .search-route-card-inner {
    position: static;
    width: auto;
    height: auto;
    gap: 18px;
    padding: 34px 24px;
    transform: none;
  }

  .home-page > .search-route-section .search-route-card .route-icon {
    width: var(--search-route-icon-size);
    height: var(--search-route-icon-size);
    font-size: var(--search-route-icon-font-size);
  }

  .home-page > .search-route-section .search-route-card .route-badge {
    top: 22px;
    right: 24px;
    min-height: 28px;
    padding: 4px 11px;
    gap: 5px;
    font-size: 12px;
    line-height: 1.2;
  }

  .home-page > .search-route-section .search-route-card .route-badge .fi {
    font-size: 12px;
  }

  .home-page > .review-flow .flow-step p {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  .home-page > .category-section > .disclaimer {
    width: auto;
    max-width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page > .latest-experiences-section {
    display: flex;
    flex-direction: column;
  }

  .home-page > .latest-experiences-section .section-heading {
    display: contents;
  }

  .home-page > .latest-experiences-section .heading-inline {
    order: 1;
    margin-bottom: 22px;
  }

  .home-page > .latest-experiences-section > .grid {
    order: 2;
  }

  .home-page > .latest-experiences-section .link-more {
    order: 3;
    align-self: flex-end;
    margin-top: 18px;
  }

  .home-page > .search-route-section .search-route-card h3 {
    margin-top: 4px;
    font-size: 22px;
    line-height: 1.5;
  }

  .page.home-page .search-route-section .search-route-card p:not(.eyebrow):not(.hero-microcopy):not(.disclaimer) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.9;
  }

  .home-page > .search-route-section .route-checks {
    width: 100%;
    gap: 12px;
    font-size: 13px;
    line-height: 1.7;
  }

  .home-page > .search-route-section .route-checks li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
  }

  .home-page > .search-route-section .search-route-card .icon-button {
    width: 100%;
    min-height: 48px;
    font-size: 13px;
  }

  .home-page > .review-flow {
    gap: 18px;
  }

  .home-page > .review-flow .flow-step {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    padding: 34px 24px;
    border: 1px solid rgba(226, 217, 209, 0.86);
    border-radius: 26px;
    background: rgba(255, 254, 253, 0.98);
    box-shadow: 0 24px 54px rgba(48, 37, 25, 0.08);
    text-align: center;
  }

  .home-page > .review-flow .flow-icon {
    width: 118px;
    height: 118px;
    margin-bottom: 22px;
    font-size: 2.45rem;
  }

  .home-page > .review-flow .flow-step h3 {
    margin-bottom: 18px;
  }

  .home-page > .review-flow .flow-step p {
    max-width: 320px;
    font-size: 0.92rem;
    line-height: 1.9;
  }
}

.home-page > .review-flow .flow-step h3 {
  margin-bottom: 0;
}

.home-page > .review-flow.mood-strip {
  width: min(calc(100% - 96px), 1120px);
  margin: -112px auto 0;
  padding: 42px 48px 40px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  border: 1px solid rgba(226, 217, 209, 0.78);
  border-radius: 30px;
  background: rgba(255, 254, 253, 0.94);
  box-shadow: 0 30px 72px rgba(48, 37, 25, 0.1);
  backdrop-filter: blur(12px);
  text-align: center;
}

.home-page > .review-flow.mood-strip h2 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.home-page > .review-flow.mood-strip .mood-chip-list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.home-page > .review-flow.mood-strip .mood-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(234, 223, 213, 0.88);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.96);
  color: #39435a;
  box-shadow: 0 14px 30px rgba(47, 34, 23, 0.08);
  font-family: "Yu Gothic", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  white-space: nowrap;
}

.home-page > .review-flow.mood-strip .mood-chip .fi {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--brand-2);
  font-size: 1rem;
}

.home-page > .review-flow.mood-strip p {
  margin: 0;
  color: #5c6678;
  font-size: clamp(1rem, 1.28vw, 1.2rem);
  font-weight: 900;
  line-height: 1.8;
}

@media (max-width: 860px) {
  .home-page > .review-flow.mood-strip {
    width: min(100%, 620px);
    margin-top: 28px;
    padding: 34px 22px;
    gap: 20px;
    border-radius: 26px;
  }

  .home-page > .review-flow.mood-strip h2 {
    font-size: 1.45rem;
  }

  .home-page > .review-flow.mood-strip .mood-chip-list {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .home-page > .review-flow.mood-strip .mood-chip {
    min-height: 46px;
    padding-inline: 18px;
  }
}

@media (max-width: 600px) {
  .home-page > .review-flow.mood-strip .mood-chip-list {
    justify-content: stretch;
  }

  .home-page > .review-flow.mood-strip .mood-chip {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .home-page > .review-flow.mood-strip {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 32px 20px;
  }

  .home-page > .review-flow.mood-strip h2 {
    font-size: 1.28rem;
  }
}
