:root {
  --paper: #f4f1eb;
  --card: #fffdf9;
  --ink: #18201d;
  --muted: #5e655f;
  --line: #dddcd5;
  --acid: #d9f45f;
  --orange: #ff6d4b;
  --blue: #4c5af3;
  --sky: #c9eafa;
  --shadow: 0 18px 50px rgba(30, 35, 31, 0.08);
  --radius: 24px;
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html[lang="ko"] {
  --font: ui-sans-serif, "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans CJK KR", sans-serif;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(217, 244, 95, 0.19), transparent 20rem),
    radial-gradient(circle at 93% 28%, rgba(201, 234, 250, 0.34), transparent 22rem), var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
html[lang="ko"] body {
  word-break: keep-all;
  overflow-wrap: break-word;
}
html[lang="ko"] :is(h1, h2, h3, p, strong, small, button, a) {
  word-break: keep-all;
  overflow-wrap: break-word;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
a {
  color: inherit;
}
svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}
.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 44px);
  border-bottom: 1px solid rgba(24, 32, 29, 0.1);
  background: rgba(244, 241, 235, 0.86);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
}
.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}
.brand-copy strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1px;
}
.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}
.brand-dot {
  color: var(--orange);
}
.brand-mark {
  width: 29px;
  height: 29px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2px;
  padding: 6px;
  border-radius: 9px;
  background: var(--ink);
  transform: rotate(-4deg);
}
.brand-mark i {
  width: 4px;
  border-radius: 4px 4px 1px 1px;
  background: var(--acid);
}
.brand-mark i:nth-child(1) {
  height: 8px;
}
.brand-mark i:nth-child(2) {
  height: 16px;
}
.brand-mark i:nth-child(3) {
  height: 12px;
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 150px;
  padding: 7px 13px 7px 10px;
  border: 1px solid rgba(24, 32, 29, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}
.location-pill:hover {
  border-color: rgba(24, 32, 29, 0.28);
  background: white;
}
.location-pulse {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
}
.location-pulse::before,
.location-pulse::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.location-pulse::after {
  inset: 5px;
  border: 1px solid var(--ink);
  background: transparent;
  opacity: 0.35;
}
.location-copy {
  display: grid;
  text-align: left;
  line-height: 1.1;
}
.location-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}
.location-copy strong {
  margin-top: 2px;
  font-size: 13px;
}
.location-pill > svg {
  width: 15px;
  height: 15px;
  margin-left: auto;
}

.top-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}
.language-control {
  display: block;
}
.language-control select {
  height: 34px;
  padding: 0 27px 0 10px;
  border: 1px solid rgba(24, 32, 29, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.language-control select:hover,
.language-control select:focus-visible {
  border-color: rgba(24, 32, 29, 0.35);
  background-color: white;
  outline: 0;
}
.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.icon-button:hover {
  background: rgba(24, 32, 29, 0.07);
}
.icon-button svg {
  width: 23px;
  height: 23px;
}
.saved-count {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 99px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.search-box {
  max-width: 680px;
  height: 48px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}
.search-box svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
}
.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}
.search-box button {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
}

.page-shell {
  width: min(1380px, calc(100% - 40px));
  margin: 28px auto 100px;
  display: grid;
  grid-template-columns: 250px minmax(0, 680px) 250px;
  justify-content: center;
  align-items: start;
  gap: clamp(24px, 3vw, 48px);
}
.right-rail {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
}
.nearby-card {
  border: 1px solid rgba(24, 32, 29, 0.11);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.68);
}
.section-kicker {
  color: #6b716c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.trust-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--acid);
}
.trust-icon svg {
  width: 22px;
  height: 22px;
}
.sort-button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.sort-button:hover {
  background: white;
}
.sort-button svg {
  width: 16px;
  height: 16px;
}
.active-notice {
  margin: 0 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  border-radius: 12px;
  background: #e7e4dd;
  color: var(--muted);
  font-size: 11px;
}
.active-notice button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.feed {
  display: grid;
  gap: 22px;
}
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.price-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.empty-state {
  padding: 70px 30px;
  text-align: center;
  border: 1px dashed #c8c7c0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.35);
}
.empty-state > span {
  color: var(--muted);
  font-size: 24px;
}
.empty-state h3 {
  margin: 17px 0 7px;
  font-size: 20px;
}
.empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.empty-state button {
  margin-top: 18px;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.nearby-card {
  padding: 22px;
}
.nearby-card h3 {
  margin: 9px 0 16px;
  font-size: 19px;
  letter-spacing: -0.6px;
}
.nearby-list {
  display: grid;
}
.nearby-city {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid #dfded7;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.nearby-city:last-child {
  border-bottom: 0;
}
.nearby-city strong {
  display: block;
  font-size: 13px;
}
.nearby-city small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}
.nearby-city > span:first-child {
  min-width: 0;
}
.nearby-city > span:last-child {
  min-width: 35px;
  padding: 4px 6px;
  border-radius: 99px;
  background: #e8e5dd;
  color: #4f5751;
  font-size: 11px;
  text-align: center;
}
.nearby-city:hover strong {
  color: var(--blue);
}
.all-cities {
  width: 100%;
  margin-top: 12px;
  padding: 11px;
  border: 0;
  border-radius: 11px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.all-cities > span:last-child {
  color: var(--acid);
}
.all-cities .button-copy {
  color: white;
}
.mobile-nav {
  display: none;
}

.modal-backdrop {
  position: fixed;
  z-index: 300;
  inset: 0;
  background: rgba(9, 13, 11, 0.55);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.2s both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
dialog {
  color: var(--ink);
}
dialog::backdrop {
  background: transparent;
}
.sheet {
  position: fixed;
  z-index: 310;
  inset: auto 0 0;
  width: min(620px, 100%);
  max-height: min(82vh, 760px);
  margin: 0 auto;
  overflow: auto;
  padding: 12px 25px 24px;
  border: 0;
  border-radius: 26px 26px 0 0;
  background: var(--card);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.22);
  animation: sheetIn 0.25s both;
}
@keyframes sheetIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
}
.sheet-handle {
  width: 42px;
  height: 4px;
  margin: 0 auto 20px;
  border-radius: 99px;
  background: #d5d3cc;
}
.sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.sheet-head h2 {
  margin: 5px 0 0;
  font-size: 24px;
  letter-spacing: -1px;
}
.modal-close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #efede7;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.all-dfw-option,
.detect-location {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
}
.all-dfw-option {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: white;
}
.all-dfw-option:hover,
.all-dfw-option.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(217, 244, 95, 0.65);
}
.all-dfw-option > span:nth-child(2),
.detect-location > span:nth-child(2) {
  display: grid;
  gap: 3px;
}
.all-dfw-option strong,
.detect-location strong {
  font-size: 13px;
}
.all-dfw-option small,
.detect-location small {
  color: rgba(24, 32, 29, 0.72);
  font-size: 11px;
}
.all-dfw-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #dfe3ff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}
.area-check {
  margin-left: auto;
  color: transparent;
  font-weight: 900;
}
.all-dfw-option.active .area-check {
  color: var(--ink);
}
.detect-location {
  margin-top: 9px;
  border: 0;
  background: var(--acid);
}
.detect-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: white;
}
.detect-icon svg {
  width: 21px;
  height: 21px;
}
.detect-location .arrow {
  margin-left: auto;
  font-size: 20px;
}
.location-status {
  min-height: 18px;
  margin: 9px 0 2px;
  color: var(--muted);
  font-size: 12px;
}
.city-grid-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.city-grid-head small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.city-button {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  text-align: left;
  cursor: pointer;
}
.city-button strong {
  font-size: 13px;
}
.city-button small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}
.city-button:hover,
.city-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.city-button:hover small,
.city-button.active small {
  color: rgba(255, 255, 255, 0.7);
}
.city-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.city-button:disabled:hover {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}
.city-button:disabled:hover small {
  color: var(--muted);
}
.privacy-note {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
}
.privacy-note svg {
  width: 14px;
  height: 14px;
}

.detail-modal {
  position: fixed;
  z-index: 310;
  inset: 50% auto auto 50%;
  width: min(600px, calc(100% - 28px));
  max-height: min(88vh, 860px);
  margin: 0;
  overflow: auto;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 25px;
  background: var(--card);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  animation: detailIn 0.24s both;
}
@keyframes detailIn {
  from {
    opacity: 0;
    transform: translate(-50%, -47%) scale(0.98);
  }
}
.detail-close {
  position: fixed;
  z-index: 5;
  top: 13px;
  right: 13px;
  background: rgba(255, 255, 255, 0.88);
}
.detail-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: white;
}
.detail-hero.methodology-hero {
  min-height: 250px;
  background: #18201d;
}
.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 15, 12, 0.92), rgba(10, 15, 12, 0.05) 80%);
}
.detail-hero-copy {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.detail-hero-copy .price-badge {
  margin-bottom: 13px;
}
.detail-hero-copy h2 {
  max-width: 480px;
  margin: 0;
  font-size: 33px;
  line-height: 1.08;
  letter-spacing: -1.7px;
}
.detail-body {
  padding: 26px 28px 30px;
}
.detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.detail-fact {
  padding: 13px;
  border-radius: 13px;
  background: #f0eee8;
}
.detail-fact small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.detail-fact strong {
  display: block;
  font-size: 11px;
  line-height: 1.45;
}
.detail-summary {
  margin: 21px 0 0;
  font-size: 13px;
  line-height: 1.75;
}
.condition-box {
  margin-top: 18px;
  padding: 15px;
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  background: #fff1ec;
}
.condition-box strong {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}
.condition-box p {
  margin: 0;
  color: #6d5f59;
  font-size: 10px;
  line-height: 1.6;
}
.sources-panel {
  margin-top: 25px;
}
.source-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}
.source-head h3 {
  margin: 0;
  font-size: 16px;
}
.source-head span {
  padding: 5px 8px;
  border-radius: 99px;
  background: #e2f3e7;
  color: #187f49;
  font-size: 8px;
  font-weight: 800;
}
.source-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #e2e0da;
  text-decoration: none;
}
.source-index {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
}
.source-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.source-copy strong {
  font-size: 13px;
}
.source-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.source-item > span:last-child {
  margin-left: auto;
  font-size: 16px;
}
.source-item:hover .source-copy strong {
  color: var(--blue);
}
.sort-sheet {
  width: min(500px, 100%);
}
.sort-options {
  margin-top: 15px;
  display: grid;
}
.sort-options button {
  display: grid;
  grid-template-columns: 1fr 22px;
  padding: 14px 4px;
  border: 0;
  border-top: 1px solid var(--line);
  background: none;
  text-align: left;
  cursor: pointer;
}
.sort-options button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.sort-options span {
  font-size: 13px;
  font-weight: 800;
}
.sort-options small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.sort-options i {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  width: 18px;
  height: 18px;
  border: 1px solid #aaa;
  border-radius: 50%;
}
.sort-options button.active i {
  border: 5px solid var(--ink);
}

.toast {
  position: fixed;
  z-index: 400;
  left: 50%;
  bottom: 28px;
  max-width: calc(100% - 32px);
  padding: 12px 17px;
  transform: translate(-50%, 20px);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

html[lang="ko"] :is(.nearby-card h3, .sheet-head h2, .detail-hero-copy h2) {
  letter-spacing: -0.45px;
  line-height: 1.35;
  text-wrap: balance;
}
html[lang="ko"] :is(.detail-summary, .condition-box p) {
  line-height: 1.8;
  text-wrap: pretty;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 70px;
  }
  .topbar {
    height: 64px;
    padding: 0 16px;
  }
  .brand-copy strong {
    font-size: 18px;
  }
  .brand-copy small {
    display: none;
  }
  .brand-mark {
    width: 25px;
    height: 25px;
    padding: 5px;
  }
  .brand-mark i {
    width: 3px;
  }
  .location-pill {
    min-width: 128px;
    padding: 6px 9px 6px 7px;
  }
  .location-pulse {
    width: 25px;
    height: 25px;
  }
  .location-copy strong {
    font-size: 10px;
  }
  .top-actions .saved-trigger {
    display: none;
  }
  .page-shell {
    width: 100%;
    margin: 0 auto 40px;
    display: block;
  }
  .right-rail {
    display: none;
  }
  .active-notice,
  .feed {
    margin-left: 13px;
    margin-right: 13px;
  }
  .mobile-nav {
    position: fixed;
    z-index: 200;
    left: 50%;
    bottom: 10px;
    width: min(410px, calc(100% - 28px));
    height: 61px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    background: rgba(23, 30, 27, 0.93);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
  }
  .mobile-nav a,
  .mobile-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 0;
    border-radius: 17px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }
  .mobile-nav .active {
    background: var(--acid);
    color: var(--ink);
  }
  .mobile-nav svg {
    width: 21px;
    height: 21px;
  }
  .toast {
    bottom: 82px;
  }
}

@media (max-width: 560px) {
  .top-actions .icon-button {
    width: 36px;
    height: 36px;
  }
  .brand {
    gap: 7px;
  }
  .location-copy small {
    display: none;
  }
  .location-pill > svg {
    width: 13px;
  }
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sheet {
    padding-left: 18px;
    padding-right: 18px;
  }
  .detail-hero {
    min-height: 330px;
  }
  .detail-hero-copy {
    padding: 24px 20px;
  }
  .detail-hero-copy h2 {
    font-size: 29px;
  }
  .detail-body {
    padding: 22px 20px 27px;
  }
  .detail-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand > span:last-child {
    display: none;
  }
  .location-pill {
    min-width: 108px;
  }
  .language-control select {
    width: 67px;
    padding-left: 8px;
    padding-right: 20px;
  }
}

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

/* Discovery-first home */
.page-shell {
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 880px) 250px;
  gap: clamp(26px, 4vw, 50px);
}
.home-main {
  min-width: 0;
}
.discovery-panel {
  padding: 24px;
  border: 1px solid rgba(24, 32, 29, 0.1);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 12px 35px rgba(30, 35, 31, 0.05);
}
.home-location {
  display: none;
}
.discovery-search.search-box {
  max-width: none;
  height: 58px;
  margin: 0;
  padding: 0 18px;
  border-color: rgba(24, 32, 29, 0.18);
  border-radius: 17px;
  box-shadow: 0 5px 18px rgba(30, 35, 31, 0.04);
}
.discovery-search.search-box:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(217, 244, 95, 0.58);
}
.discovery-search.search-box svg {
  width: 23px;
  height: 23px;
  color: var(--ink);
}
.discovery-search.search-box input {
  font-size: 15px;
  font-weight: 600;
}
.discovery-search.search-box input::placeholder {
  color: #747b76;
  font-weight: 400;
}
.intent-scroll {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.intent-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}
.intent-group-label {
  align-self: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.intent-chip {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #d7d6cf;
  border-radius: 999px;
  background: white;
  color: #4f5551;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    transform 0.16s ease;
}
.intent-chip:hover {
  border-color: #8c918d;
  transform: translateY(-1px);
}
.intent-chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.intent-chip.value-intent.active {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}
.intent-chip.intent-default.active {
  border-color: #c9c8c1;
  background: #ebe9e3;
  color: #4f5551;
}
.results-toolbar {
  scroll-margin-top: 86px;
  margin: 25px 0 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.results-count {
  display: grid;
  gap: 5px;
}
.results-count strong {
  font-size: 14px;
}
.results-count small {
  color: var(--muted);
  font-size: 11px;
}
.active-notice {
  margin-bottom: 20px;
}
.feed {
  gap: 44px;
}
.listing-section {
  min-width: 0;
}
.listing-section-head {
  margin-bottom: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(24, 32, 29, 0.13);
  padding-bottom: 12px;
}
.listing-section-heading-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.listing-section-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.9px;
}
.listing-section-head p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  column-gap: 22px;
  row-gap: 34px;
  padding-bottom: 48px;
}
.listing-card {
  --listing-accent: #d9f45f;
  --listing-soft: #f2f8d9;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(24, 32, 29, 0.14);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 8px 26px rgba(30, 35, 31, 0.05);
  animation: cardIn 0.4s both;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}
.listing-card:nth-child(4n + 1) {
  width: 94%;
  justify-self: start;
}
.listing-card:nth-child(4n + 4) {
  width: 94%;
  justify-self: end;
}
.listing-card:nth-child(even) {
  margin-top: 52px;
}
.tone-arts,
.tone-culture {
  --listing-accent: #7f8cff;
  --listing-soft: #eef0ff;
}
.tone-festival,
.tone-concert {
  --listing-accent: #ff8b6f;
  --listing-soft: #fff0e9;
}
.tone-family,
.tone-recreation,
.tone-fitness {
  --listing-accent: #56c6a0;
  --listing-soft: #e8f7f1;
}
.tone-food,
.tone-local-deals {
  --listing-accent: #ffbd55;
  --listing-soft: #fff4d9;
}
.tone-access,
.tone-transit {
  --listing-accent: #71bce4;
  --listing-soft: #e8f5fb;
}
.tone-library {
  --listing-accent: #b990e7;
  --listing-soft: #f4ebfb;
}
.listing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(89, 91, 255, 0.34);
  box-shadow: 0 20px 44px rgba(30, 35, 31, 0.11);
}
.listing-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #39423d;
}
.listing-card:nth-child(odd) .listing-media {
  aspect-ratio: 4 / 3;
}
.listing-media-open {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #39423d;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.listing-media-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.listing-card:hover .listing-media-open img {
  transform: scale(1.035);
}
.listing-media-placeholder,
.similar-media-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 24%, rgba(209, 255, 81, 0.72), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(129, 211, 255, 0.48), transparent 30%),
    linear-gradient(135deg, #24352d, #566f61);
  color: white;
}
.listing-media-placeholder > span,
.similar-media-placeholder > span {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
}
.listing-save {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(14, 20, 17, 0.55);
  color: white;
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.listing-save svg {
  width: 19px;
  height: 19px;
}
.listing-save.saved {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}
.listing-save.saved svg {
  fill: currentColor;
}
.listing-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px;
}
.listing-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.listing-card-date {
  flex: 0 0 auto;
  color: #595b68;
  font-size: 13px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}
.listing-card-location {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.listing-title {
  width: 100%;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.7px;
  text-align: left;
  text-wrap: balance;
  overflow-wrap: anywhere;
  cursor: pointer;
}
.listing-title > span:first-child {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.listing-open-arrow {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #d9d6ce;
  border-radius: 50%;
  color: #656774;
  font-size: 13px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.listing-title:hover .listing-open-arrow,
.listing-card:hover .listing-open-arrow {
  transform: translate(2px, -2px);
  border-color: var(--blue);
  color: var(--blue);
}
.listing-card-hook {
  margin: 8px 43px 0 0;
  overflow: hidden;
  display: -webkit-box;
  color: #686a75;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.rail-verify {
  padding: 22px;
  border: 1px solid rgba(24, 32, 29, 0.11);
  border-radius: 20px;
  background: var(--ink);
  color: white;
}
.rail-verify .trust-icon {
  margin-bottom: 15px;
  color: var(--ink);
}
.rail-verify > strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}
.rail-verify p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.6;
}
.rail-verify button {
  margin-top: 15px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 960px) {
  .page-shell {
    grid-template-columns: minmax(0, 760px);
  }
  .right-rail {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
  }
  .topbar {
    height: 60px;
    grid-template-columns: 1fr auto;
    padding: 0 14px;
  }
  .brand > span:last-child {
    display: grid;
  }
  .brand-copy strong {
    font-size: 20px;
  }
  .brand-mark {
    width: 27px;
    height: 27px;
  }
  .location-pill {
    display: none;
  }
  .top-actions .saved-trigger {
    display: grid;
  }
  .top-actions {
    grid-column: 2;
  }
  .language-control select {
    height: 32px;
  }
  .page-shell {
    width: 100%;
    margin: 0 auto 32px;
    display: block;
  }
  .home-main {
    width: 100%;
  }
  .discovery-panel {
    padding: 14px 14px 17px;
    border: 0;
    border-bottom: 1px solid rgba(24, 32, 29, 0.1);
    border-radius: 0;
    background: rgba(255, 253, 249, 0.72);
    box-shadow: none;
  }
  .home-location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 1px 0 13px;
    padding: 5px 2px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .home-location > svg:first-child {
    width: 17px;
    height: 17px;
    color: var(--orange);
  }
  .home-location strong {
    font-size: 13px;
  }
  .home-location .location-chevron {
    width: 14px;
    height: 14px;
  }
  .discovery-search.search-box {
    height: 52px;
    padding: 0 14px;
    border-radius: 15px;
  }
  .discovery-search.search-box input {
    font-size: 14px;
  }
  .intent-scroll {
    flex-wrap: nowrap;
    gap: 7px;
    margin: 13px -14px 0;
    padding: 1px 14px 4px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .intent-scroll::-webkit-scrollbar {
    display: none;
  }
  .intent-chip {
    min-height: 36px;
    padding: 8px 13px;
    scroll-snap-align: start;
  }
  .intent-group-label {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .results-toolbar {
    margin: 18px 14px 13px;
    scroll-margin-top: 72px;
  }
  .results-count strong {
    font-size: 12px;
  }
  .sort-button {
    padding: 9px 10px;
  }
  .sort-button span {
    display: none;
  }
  .active-notice {
    margin: 0 14px 18px;
  }
  .feed {
    gap: 38px;
    margin: 0;
  }
  .listing-section {
    margin: 0 14px;
  }
  .listing-section-head {
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .listing-section-head h2 {
    font-size: 21px;
  }
  .listing-section-head p {
    display: none;
  }
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 24px;
  }
  .listing-card,
  .listing-card:nth-child(4n + 1),
  .listing-card:nth-child(4n + 4) {
    width: 100%;
    margin-top: 0;
    justify-self: stretch;
    border-radius: 20px;
  }
  .listing-media,
  .listing-card:nth-child(odd) .listing-media {
    aspect-ratio: 3 / 2;
  }
  .listing-title {
    font-size: 22px;
  }
  .empty-state {
    margin: 0 14px;
  }
  .mobile-nav {
    bottom: 9px;
  }
}

@media (max-width: 390px) {
  .language-control select {
    width: 61px;
  }
  .top-actions {
    gap: 2px;
  }
  .listing-body {
    padding: 16px 15px 18px;
  }
  .listing-title {
    font-size: 20px;
  }
}

/* Editorial, decision-first listing detail */
.detail-modal {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(24, 32, 29, 0.13);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(18, 25, 21, 0.22);
}
.detail-modal[open] {
  display: flex;
}
.detail-scroll-area {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #9ca39e transparent;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  background: #f3f1eb;
}
.detail-scroll-area::-webkit-scrollbar {
  width: 11px;
}
.detail-scroll-area::-webkit-scrollbar-track {
  margin-block: 9px;
  background: transparent;
}
.detail-scroll-area::-webkit-scrollbar-thumb {
  min-height: 54px;
  border: 3px solid transparent;
  border-radius: 999px;
  background: #9ca39e;
  background-clip: content-box;
}
.detail-scroll-area::-webkit-scrollbar-thumb:hover {
  background-color: #68716b;
}
.detail-dialog-bar {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px 9px 14px;
  border-bottom: 1px solid rgba(24, 32, 29, 0.12);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 5px 16px rgba(24, 32, 29, 0.055);
  backdrop-filter: blur(14px);
}
.detail-back-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: #efede7;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.detail-back-button > span:first-child {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.detail-dialog-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.detail-toolbar-button,
.detail-close-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.detail-toolbar-button:hover {
  background: #efede7;
}
.detail-toolbar-button svg {
  width: 21px;
  height: 21px;
}
.detail-toolbar-button.saved {
  background: var(--acid);
}
.detail-toolbar-button.saved svg {
  fill: currentColor;
}
.detail-close-button {
  margin-left: 3px;
  border: 1px solid #d7d5ce;
  background: #efede7;
  color: var(--ink);
}
.detail-close-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}
.detail-close-button:hover {
  border-color: #bcbeb9;
  background: #e2dfd7;
}
.detail-dialog-bar :is(button):focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 2px;
}
.listing-detail {
  --listing-accent: #d9f45f;
  --listing-soft: #f2f8d9;
}
.listing-detail.tone-arts,
.listing-detail.tone-culture {
  --listing-accent: #7f8cff;
  --listing-soft: #eef0ff;
}
.listing-detail.tone-festival,
.listing-detail.tone-concert {
  --listing-accent: #ff8b6f;
  --listing-soft: #fff0e9;
}
.listing-detail.tone-family,
.listing-detail.tone-recreation,
.listing-detail.tone-fitness {
  --listing-accent: #56c6a0;
  --listing-soft: #e8f7f1;
}
.listing-detail.tone-food,
.listing-detail.tone-local-deals {
  --listing-accent: #ffbd55;
  --listing-soft: #fff4d9;
}
.listing-detail.tone-access,
.listing-detail.tone-transit {
  --listing-accent: #71bce4;
  --listing-soft: #e8f5fb;
}
.listing-detail.tone-library {
  --listing-accent: #b990e7;
  --listing-soft: #f4ebfb;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
  grid-template-areas:
    "photo decision"
    "story decision";
  align-items: start;
  gap: 20px;
  padding: 22px;
}
.detail-layout-without-photo {
  grid-template-areas: "story decision";
}
.detail-photo {
  grid-area: photo;
  position: relative;
  min-height: 545px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #39423d;
}
.detail-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 15, 12, 0.55), transparent 38%);
}
.detail-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 17px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(16, 22, 19, 0.58);
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 650;
  backdrop-filter: blur(8px);
}
.detail-decision {
  grid-area: decision;
  position: sticky;
  top: 18px;
  align-self: start;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 38px;
  border: 1px solid #dedbd3;
  border-left: 5px solid var(--listing-accent);
  border-radius: 20px;
  background: var(--card);
}
.detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5a625d;
  font-size: 11px;
  font-weight: 800;
}
.detail-eyebrow span:first-child {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--listing-soft);
  color: #26372f;
}
.detail-eyebrow span:last-child::before {
  content: "·";
  margin-right: 8px;
  color: #9ba09d;
}
.detail-title {
  max-width: 580px;
  margin: 16px 0 12px;
  display: grid;
  gap: 9px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -1.25px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.detail-title-base {
  display: block;
  text-wrap: balance;
}
.detail-title-benefit {
  display: block;
  color: #34423a;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.45px;
  text-wrap: balance;
}
.detail-overview {
  max-width: 560px;
  margin: 0 0 26px;
  color: #344139;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0;
  text-wrap: pretty;
}
.detail-primary-facts {
  display: grid;
  gap: 13px;
}
.detail-primary-facts p {
  margin: 0;
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #343d37;
  font-size: 14px;
  line-height: 1.55;
}
.detail-primary-facts svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: #606862;
}
.detail-primary-facts strong {
  font-weight: 700;
}
.detail-primary-fact-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.detail-primary-fact-copy > span {
  color: var(--muted);
}
.detail-date-lines {
  min-width: 0;
  display: grid;
  gap: 2px;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.detail-action-row {
  margin-top: 23px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.detail-action-row a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfcfc8;
  border-radius: 13px;
  background: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.detail-action-row .official-action {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.detail-action-row a:hover {
  transform: translateY(-1px);
  border-color: #9da29d;
  box-shadow: 0 7px 18px rgba(24, 32, 29, 0.08);
}
.detail-action-row a:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 2px;
}
.detail-story {
  grid-area: story;
  min-width: 0;
  display: grid;
  gap: 20px;
}
.useful-section {
  background: #fffdfa;
}
.detail-section {
  padding: 29px 30px;
  border: 1px solid #dedbd3;
  border-radius: 20px;
  background: var(--card);
}
.detail-section > h3 {
  margin: 4px 0 0;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.detail-section-kicker {
  color: #687169;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.experience-section {
  background: #fffdfa;
}
.detail-expectation-list {
  margin-top: 15px;
  display: grid;
  gap: 0;
}
.detail-expectation-summary {
  max-width: 66ch;
  margin: 20px 0 2px;
  color: #2f3833;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.72;
  text-wrap: pretty;
}
.detail-expectation {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #dedbd1;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.detail-expectation:last-child {
  border-bottom: 0;
}
.detail-expectation-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--listing-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.detail-expectation p {
  max-width: 66ch;
  margin: 0;
  color: #2f3833;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.62;
  text-wrap: pretty;
}
.visit-section {
  background: #fffdfa;
}
.visit-fact-grid {
  margin-top: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid #dcd9d1;
  border-radius: 15px;
  background: white;
}
.visit-fact {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding: 17px 18px;
  border: 0;
  border-bottom: 1px solid #e0ddd5;
  border-radius: 0;
  background: transparent;
}
.visit-fact:last-child {
  border-bottom: 0;
}
.visit-fact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef1e5;
  color: #344239;
}
.visit-fact-icon svg {
  width: 18px;
  height: 18px;
}
.visit-fact div > span {
  display: block;
  color: #58615b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.visit-fact strong {
  display: block;
  margin-top: 4px;
  color: #26302a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}
.practical-tips {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid #d8e1d2;
  border-radius: 15px;
  background: #f4f8ef;
}
.practical-tips h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.1px;
}
.practical-tip-list {
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  list-style: none;
}
.practical-tip-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
}
.practical-tip-list li > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcefdc;
  color: #247346;
  font-size: 11px;
  font-weight: 800;
}
.practical-tip-list p {
  margin: 0;
  color: #344139;
  font-size: 14px;
  line-height: 1.6;
  text-wrap: pretty;
}
.before-callout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 16px 18px;
  border: 1px solid #f0c9b8;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  background: #fff5ef;
}
.before-callout-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 800;
}
.before-callout h4 {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.before-callout p {
  margin: 0;
  color: #4f453f;
  font-size: 15px;
  line-height: 1.65;
}
.verification-section {
  margin: 0 25px 25px;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 18px 30px;
  background: #eaf4fb;
}
.verification-title {
  display: flex;
  align-items: center;
  gap: 11px;
}
.verified-seal {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px 11px 11px 4px;
  background: #3c8fbe;
  color: white;
  font-size: 17px;
  font-weight: 900;
}
.verification-title h3 {
  margin: 0;
  font-size: 17px;
}
.verification-title p {
  margin: 4px 0 0;
  color: #26739e;
  font-size: 12px;
  font-weight: 600;
}
.verification-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.verification-grid span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #d4e4ef;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  color: #3b453f;
  font-size: 13px;
  font-weight: 600;
}
.verification-grid b {
  color: #26739e;
}
.detail-sources {
  grid-column: 1 / -1;
  margin-top: 0;
  border-top: 1px solid #cddfea;
}
.detail-sources summary {
  padding: 17px 0 3px;
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.detail-sources summary::-webkit-details-marker {
  display: none;
}
.detail-sources[open] summary span {
  transform: rotate(90deg);
}
.detail-source-list {
  margin-top: 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.58);
}
.detail-source-list .source-item {
  padding-left: 10px;
  padding-right: 10px;
}
.similar-section {
  margin: 0 25px 25px;
}
.similar-list {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.similar-card {
  width: 100%;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 7px;
  border: 1px solid #dfddd6;
  border-radius: 14px;
  background: white;
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.similar-card:hover {
  border-color: #aaada7;
}
.similar-card img {
  width: 76px;
  height: 65px;
  object-fit: cover;
  border-radius: 10px;
}
.similar-media-placeholder {
  width: 76px;
  height: 65px;
  border-radius: 10px;
}
.similar-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.similar-copy small {
  color: #a63d29;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.similar-copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.similar-copy > span {
  color: var(--muted);
  font-size: 12px;
}
.similar-card > span:last-child {
  padding-right: 7px;
}

@media (max-width: 900px) {
  .detail-photo {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .similar-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .detail-modal {
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    transform: none;
    border-radius: 0;
    animation: none;
  }
  .detail-scroll-area::-webkit-scrollbar {
    width: 9px;
  }
  .detail-dialog-bar {
    min-height: 60px;
    padding: 8px 10px;
  }
  .detail-back-button {
    min-height: 42px;
  }
  .detail-photo {
    min-height: 0;
    aspect-ratio: 4 / 2.8;
  }
  .detail-photo figcaption {
    left: 13px;
    bottom: 12px;
    max-width: calc(100% - 26px);
    font-size: 9px;
  }
  .detail-decision {
    padding: 23px 20px 22px;
  }
  .detail-title {
    margin-top: 13px;
    font-size: 29px;
    letter-spacing: -1.1px;
  }
  .detail-title-benefit {
    font-size: 21px;
  }
  .detail-overview {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.7;
  }
  .detail-section {
    padding: 24px 20px;
    border-radius: 17px;
  }
  .detail-section > h3 {
    font-size: 21px;
  }
  .verification-section {
    margin-right: max(12px, env(safe-area-inset-right));
    margin-left: max(12px, env(safe-area-inset-left));
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .detail-expectation {
    padding: 14px 0;
  }
  .visit-fact {
    padding: 15px 14px;
  }
  .before-callout {
    padding: 15px 14px;
  }
  .practical-tip-list {
    grid-template-columns: 1fr;
  }
  .detail-action-row {
    position: static;
    margin: 22px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .verification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .similar-section {
    margin: 0 12px 12px;
  }
}

html[lang="ko"]
  :is(
    .brand-copy strong,
    .listing-section-head h2,
    .listing-title,
    .detail-title,
    .detail-title-benefit,
    .detail-section > h3
  ) {
  letter-spacing: -0.02em;
}

html[lang="ko"] :is(.visit-fact div > span, .similar-copy small) {
  letter-spacing: 0;
  text-transform: none;
}

/* NearFree Radar product shell */
.topbar {
  height: 76px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  background: rgba(248, 246, 240, 0.92);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: auto;
}
.desktop-nav a {
  padding: 9px 11px;
  border-radius: 10px;
  color: #48514b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a:hover {
  background: rgba(24, 32, 29, 0.06);
  color: var(--ink);
}
.top-actions {
  flex: 0 0 auto;
}
.top-actions .location-pill {
  min-width: 144px;
}
.top-radar-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.top-radar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(24, 32, 29, 0.15);
}
.radar-status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(217, 244, 95, 0.14);
}
.radar-status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  animation: radarPulse 2.2s ease-out infinite;
}
@keyframes radarPulse {
  70%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.site-main {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 60px;
}
.radar-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.radar-match-signal {
  width: fit-content;
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.radar-match-signal.signal-ending {
  color: #ff9b7f;
}
.radar-match-signal.signal-upcoming {
  color: #9ca8ff;
}

.radar-metrics {
  margin: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #d8d8d0;
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(255, 253, 249, 0.88);
}
.radar-metrics article {
  min-width: 0;
  padding: 24px 26px;
  display: grid;
  gap: 4px;
  border-right: 1px solid #deddd6;
}
.radar-metrics article:last-child {
  border-right: 0;
}
.radar-metrics strong {
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -1px;
}
.radar-metrics span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.how-section,
.radar-preview,
.site-footer {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.how-section {
  padding: 104px 0 88px;
  scroll-margin-top: 96px;
}
.section-intro {
  max-width: 670px;
}
.section-intro h2,
.radar-preview h2 {
  margin: 11px 0 13px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.section-intro p,
.radar-preview-controls > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  text-wrap: pretty;
}
.how-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cacbc4;
  border-bottom: 1px solid #cacbc4;
}
.how-grid article {
  min-width: 0;
  padding: 27px 25px 29px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  border-right: 1px solid #d4d4cd;
}
.how-grid article:last-child {
  border-right: 0;
}
.how-grid article > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--acid);
  font-size: 10px;
  font-weight: 850;
}
.how-grid h3 {
  margin: 3px 0 7px;
  font-size: 15px;
}
.how-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.radar-preview {
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(35px, 6vw, 74px);
  padding: clamp(38px, 6vw, 70px);
  border-radius: 30px;
  background: #e8eddd;
}
.radar-preview .radar-kicker {
  color: #366b4c;
}
.radar-preview .radar-status-dot {
  background: #278453;
  box-shadow: 0 0 0 4px rgba(39, 132, 83, 0.12);
}
.radar-preview .radar-status-dot::after {
  border-color: #278453;
}
#radarPreviewForm {
  margin-top: 29px;
}
.radar-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.radar-field-row label {
  display: grid;
  gap: 7px;
  color: #4e5952;
  font-size: 11px;
  font-weight: 750;
}
.radar-field-row select {
  width: 100%;
  height: 49px;
  padding: 0 38px 0 13px;
  border: 1px solid #c9cec1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.radar-interest-fieldset {
  margin: 21px 0 0;
  padding: 0;
  border: 0;
}
.radar-interest-fieldset legend {
  margin-bottom: 9px;
  color: #4e5952;
  font-size: 11px;
  font-weight: 750;
}
.radar-interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.radar-interest-list button {
  min-height: 39px;
  padding: 8px 12px;
  border: 1px solid #c9cec1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #48534c;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.radar-interest-list button:hover {
  border-color: #68766c;
}
.radar-interest-list button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}
.save-radar-button {
  width: 100%;
  min-height: 51px;
  margin-top: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.save-radar-button:hover {
  background: #2a3530;
}
.radar-preview-note {
  margin: 10px 2px 0;
  color: #657068;
  font-size: 10px;
  line-height: 1.5;
}
.radar-preview-results {
  min-width: 0;
  align-self: stretch;
  padding: 23px;
  border: 1px solid rgba(24, 32, 29, 0.14);
  border-radius: 23px;
  background: #fffdf9;
  box-shadow: 0 22px 48px rgba(30, 35, 31, 0.1);
}
.radar-preview-results > header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 17px;
  border-bottom: 1px solid #dfdfd7;
}
.radar-preview-results > header > div {
  display: grid;
  gap: 3px;
}
.radar-preview-results > header span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.radar-preview-results > header strong {
  font-size: 34px;
  line-height: 1;
}
.radar-preview-results > header > span {
  padding-top: 3px;
}
.radar-preview-summary {
  margin: 13px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.radar-preview-summary > span {
  padding: 12px;
  display: grid;
  gap: 2px;
  border-radius: 12px;
  background: #f0eee8;
}
.radar-preview-summary strong {
  font-size: 18px;
}
.radar-preview-summary small {
  color: var(--muted);
  font-size: 10px;
}
.radar-match-list {
  display: grid;
}
.radar-match-item {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 14px 34px 14px 2px;
  border: 0;
  border-top: 1px solid #e0dfd8;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.radar-match-item:hover strong {
  color: var(--blue);
}
.radar-match-item strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.radar-match-item small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.radar-match-item > span:last-child {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}
.radar-empty-match {
  margin: 28px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.site-main > .page-shell {
  width: min(1120px, 100%);
  margin: 26px auto 100px;
  grid-template-columns: minmax(0, 840px) 250px;
  gap: 30px;
}
.site-main .discovery-panel {
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.9);
}

.membership-price {
  display: flex;
  align-items: start;
}
.membership-price > span {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 850;
}
.membership-price strong {
  font-size: 66px;
  line-height: 0.95;
  letter-spacing: -4px;
}
.membership-price small {
  align-self: end;
  margin: 0 0 8px 8px;
  font-size: 12px;
  font-weight: 700;
}
.membership-status {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}
.membership-status .radar-status-dot {
  margin-top: 3px;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(24, 32, 29, 0.12);
}
.membership-status .radar-status-dot::after {
  border-color: var(--ink);
}

.site-footer {
  margin-top: 68px;
  padding: 38px 0 24px;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 34px 54px;
  border-top: 1px solid #cbc7bd;
}
.footer-brand {
  justify-self: start;
}
.footer-identity {
  display: grid;
  justify-items: start;
  gap: 14px;
}
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  text-align: left;
}
.site-footer .footer-nav {
  width: 100%;
  justify-self: stretch;
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(260px, 1.3fr);
  gap: 32px;
}
.footer-nav-group {
  min-width: 0;
}
:where(.footer-nav-group > strong) {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
:where(.footer-nav-group > div) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 9px 18px;
}
:where(.site-footer nav a) {
  color: #4d554f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}
:where(.site-footer nav a:is(:hover, [aria-current="page"])) {
  color: var(--blue);
}
.footer-independent {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 26, 43, 0.1);
}

.desktop-nav a:focus-visible,
.top-radar-cta:focus-visible,
.radar-interest-list button:focus-visible,
.save-radar-button:focus-visible,
.radar-match-item:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 3px;
}

html[lang="ko"] :is(.radar-kicker, .radar-match-signal) {
  letter-spacing: 0;
}
html[lang="ko"] :is(.section-intro h2, .radar-preview h2) {
  line-height: 1.25;
  letter-spacing: -0.035em;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }
  .how-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-grid article:nth-child(2) {
    border-right: 0;
  }
  .how-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #d4d4cd;
  }
}

@media (max-width: 860px) {
  .topbar {
    height: 66px;
    padding: 0 16px;
  }
  .top-radar-cta {
    display: none;
  }
  .site-main {
    width: 100%;
    margin-bottom: 90px;
  }
  .radar-metrics {
    margin: 0 18px;
    grid-template-columns: 1fr 1fr;
  }
  .radar-metrics article:nth-child(2) {
    border-right: 0;
  }
  .radar-metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid #deddd6;
  }
  .how-section,
  .site-footer {
    width: calc(100% - 36px);
  }
  .how-section {
    padding: 82px 0 70px;
  }
  .radar-preview {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }
  .site-main > .page-shell {
    width: 100%;
    margin-top: 22px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mobile-nav .mobile-radar-button {
    color: var(--acid);
  }
}

@media (max-width: 680px) {
  .top-actions .location-pill {
    display: none;
  }
  .radar-metrics {
    margin: 0 12px;
  }
  .radar-metrics article {
    padding: 19px 16px;
  }
  .radar-metrics strong {
    font-size: 24px;
  }
  .how-section,
  .site-footer,
  .radar-preview {
    width: calc(100% - 28px);
  }
  .section-intro h2,
  .radar-preview h2 {
    font-size: 32px;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .how-grid article {
    border-right: 0;
    border-bottom: 1px solid #d4d4cd;
  }
  .how-grid article:nth-child(2) {
    border-bottom: 1px solid #d4d4cd;
  }
  .how-grid article:last-child {
    border-bottom: 0;
  }
  .radar-preview {
    padding: 27px 20px 20px;
    border-radius: 24px;
  }
  .radar-field-row {
    grid-template-columns: 1fr;
  }
  .radar-preview-results {
    padding: 18px;
    border-radius: 18px;
  }
  .site-main .discovery-panel {
    border-top: 1px solid rgba(24, 32, 29, 0.1);
  }
  .membership-price strong {
    font-size: 58px;
  }
  .site-footer {
    align-items: flex-start;
  }
  .site-footer .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Local Signal Editorial — visual system */
:root {
  --paper: #f7f3e9;
  --card: #fffdf8;
  --ink: #171a2b;
  --muted: #626473;
  --line: #dcd8cd;
  --acid: #dff45b;
  --orange: #ff6b57;
  --blue: #595bff;
  --sky: #cbe3f6;
  --shadow: 0 24px 70px rgba(37, 34, 70, 0.1);
  --radius: 26px;
  --font: "Avenir Next", Avenir, "Segoe UI Variable", "Segoe UI", ui-sans-serif, sans-serif;
}

html[lang="ko"] {
  --font: Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", ui-sans-serif, sans-serif;
}
body {
  background:
    radial-gradient(circle at 88% 7%, rgba(89, 91, 255, 0.11), transparent 29rem),
    radial-gradient(circle at 5% 38%, rgba(255, 107, 87, 0.08), transparent 25rem), var(--paper);
}
button,
input,
select {
  font: inherit;
}

.topbar {
  height: 74px;
  border-bottom-color: rgba(23, 26, 43, 0.1);
  background: rgba(247, 243, 233, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}
.brand-mark {
  border-radius: 10px 10px 10px 3px;
  background: var(--blue);
  transform: rotate(-3deg);
}
.brand-mark i {
  background: white;
}
.brand-mark i:nth-child(2) {
  background: var(--acid);
}
.brand-dot {
  color: var(--blue);
}
.desktop-nav {
  padding: 4px;
  border: 1px solid rgba(23, 26, 43, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}
.desktop-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: #515363;
}
.desktop-nav a:hover {
  background: white;
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(46, 42, 96, 0.08);
}
.top-radar-cta {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(89, 91, 255, 0.2);
}
.top-radar-cta:hover {
  box-shadow: 0 11px 26px rgba(89, 91, 255, 0.28);
}
.location-pulse {
  background: #e6e6ff;
}
.location-pulse::before {
  background: var(--blue);
}
.location-pulse::after {
  border-color: var(--blue);
}
.location-pill,
.language-control select {
  border-color: rgba(23, 26, 43, 0.11);
  background: rgba(255, 255, 255, 0.64);
}

.site-main {
  width: min(1280px, calc(100% - 36px));
}
.radar-status-dot {
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(143, 163, 32, 0.12);
}

.radar-metrics {
  margin: 17px 28px 0;
  overflow: hidden;
  border: 1px solid #ddd9ce;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 35px rgba(49, 45, 83, 0.05);
}
.radar-metrics article {
  position: relative;
  padding: 23px 28px 22px 47px;
  border-right-color: #e2ded3;
}
.radar-metrics article::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 31px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}
.radar-metrics article:nth-child(2)::before {
  background: #20a66a;
}
.radar-metrics article:nth-child(3)::before {
  background: var(--orange);
}
.radar-metrics article:nth-child(4)::before {
  background: #e1b330;
}
.radar-metrics strong {
  color: var(--ink);
  font-size: 31px;
}
.radar-metrics span {
  color: #6b6c78;
}

.section-intro h2,
.radar-preview h2 {
  letter-spacing: -0.055em;
}
.site-main > .page-shell {
  width: min(1180px, 100%);
  margin-top: 30px;
  grid-template-columns: minmax(0, 880px) 270px;
  gap: 30px;
}
.site-main .discovery-panel {
  padding: 20px;
  border: 1px solid rgba(23, 26, 43, 0.1);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 12px 32px rgba(45, 40, 80, 0.05);
}
.discovery-search.search-box {
  border-color: #d5d2c9;
  border-radius: 16px 16px 16px 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}
.intent-chip {
  border-color: rgba(23, 26, 43, 0.11);
  border-radius: 11px;
  background: #f7f4ed;
}
.intent-chip:hover {
  border-color: #b4b2c3;
}
.intent-chip.active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 6px 14px rgba(89, 91, 255, 0.16);
}
.intent-chip.value-intent.active {
  background: var(--acid);
  color: var(--ink);
}
.results-toolbar {
  margin-top: 24px;
}
.sort-button {
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.64);
}

.feed {
  gap: 54px;
}
.listing-section-head {
  margin-bottom: 17px;
  padding-bottom: 15px;
  border-bottom-color: #cbc8bf;
}
.listing-section-head h2 {
  font-size: 27px;
  letter-spacing: -1.15px;
}
.listing-grid {
  column-gap: 24px;
  row-gap: 38px;
}
.listing-card {
  border-color: rgba(23, 26, 43, 0.12);
  border-radius: 23px 23px 23px 8px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(42, 38, 70, 0.055);
}
.listing-card:hover {
  border-color: rgba(89, 91, 255, 0.32);
  box-shadow: 0 22px 44px rgba(42, 38, 70, 0.12);
}
.listing-media {
  background: #262a3e;
}
.listing-save {
  top: 11px;
  right: 11px;
  border: 0;
  background: rgba(23, 26, 43, 0.68);
}
.listing-save.saved {
  background: var(--blue);
  color: white;
}
.listing-body {
  padding: 19px 19px 21px;
}
.listing-title {
  font-size: 23px;
  letter-spacing: -0.8px;
}
.listing-card-hook {
  color: #4e5060;
}

.nearby-card {
  border-color: rgba(23, 26, 43, 0.11);
  border-radius: 22px 22px 22px 8px;
  background: rgba(255, 253, 248, 0.82);
}
.nearby-card .section-kicker {
  color: var(--blue);
}
.rail-verify {
  border: 0;
  border-radius: 22px 22px 22px 8px;
  background: var(--blue);
  box-shadow: 0 18px 35px rgba(89, 91, 255, 0.18);
}
.rail-verify .trust-icon {
  background: var(--acid);
}
.rail-verify button {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(223, 244, 91, 0.62);
  text-underline-offset: 4px;
}

.radar-preview {
  width: min(1180px, 100%);
  margin-top: 108px;
  padding: clamp(42px, 6vw, 72px);
  border-radius: 34px 34px 34px 12px;
  background:
    radial-gradient(circle at 8% 108%, rgba(223, 244, 91, 0.24), transparent 28rem), var(--blue);
  color: white;
  box-shadow: 0 28px 70px rgba(89, 91, 255, 0.2);
}
.radar-preview .radar-kicker {
  color: var(--acid);
}
.radar-preview .radar-status-dot {
  background: var(--acid);
}
.radar-preview-controls > p {
  color: rgba(255, 255, 255, 0.72);
}
.radar-field-row label,
.radar-interest-fieldset legend {
  color: rgba(255, 255, 255, 0.74);
}
.radar-field-row select {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  color-scheme: dark;
}
.radar-interest-list button {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.radar-interest-list button:hover {
  border-color: white;
}
.radar-interest-list button.active {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}
.save-radar-button {
  border-radius: 14px 14px 14px 5px;
  background: var(--acid);
  color: var(--ink);
}
.save-radar-button:hover {
  background: #ebff73;
}
.radar-preview-note {
  color: rgba(255, 255, 255, 0.68);
}
.radar-preview-results {
  border: 0;
  border-radius: 25px 25px 25px 8px;
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 25px 60px rgba(31, 27, 79, 0.25);
}
.radar-preview-summary > span {
  background: #efefff;
}
.radar-match-item:hover strong {
  color: var(--blue);
}
.radar-match-signal {
  padding: 4px 6px;
  border-radius: 5px;
  background: #e8e9ff;
  color: var(--blue);
}
.radar-match-signal.signal-ending {
  background: #fff0ea;
  color: #c64c39;
}
.radar-match-signal.signal-happening {
  background: var(--trust-soft);
  color: var(--trust);
}

.how-section {
  padding-top: 116px;
}
.how-section .section-kicker {
  color: var(--blue);
}
.how-grid {
  gap: 12px;
  border: 0;
}
.how-grid article {
  min-height: 190px;
  align-content: start;
  padding: 26px;
  border: 0;
  border-radius: 21px 21px 21px 7px;
  background: #ececff;
}
.how-grid article:nth-child(2) {
  background: #fff0e9;
}
.how-grid article:nth-child(3) {
  background: #e5f2fa;
}
.how-grid article:nth-child(4) {
  background: #f0f5d5;
}
.how-grid article > span {
  background: var(--blue);
  color: white;
}
.how-grid article:nth-child(2) > span {
  background: var(--orange);
}
.how-grid article:nth-child(3) > span {
  background: #4e9bc8;
}
.how-grid article:nth-child(4) > span {
  background: #758719;
  color: white;
}
.how-grid h3 {
  font-size: 17px;
}
.how-grid p {
  color: #5b5d6a;
  font-size: 13px;
}

.detail-modal {
  width: min(1220px, calc(100% - 30px));
  border-color: rgba(23, 26, 43, 0.14);
  border-radius: 31px 31px 31px 10px;
  box-shadow: 0 36px 100px rgba(24, 22, 48, 0.3);
}
.detail-scroll-area {
  background: #f5f1e8;
}
.detail-dialog-bar {
  border-bottom-color: rgba(23, 26, 43, 0.1);
  background: rgba(255, 253, 248, 0.96);
}
.detail-back-button {
  border-radius: 12px 12px 12px 4px;
  background: #eeebff;
  color: #383a9b;
}
.detail-toolbar-button.saved {
  background: var(--blue);
  color: white;
}
.detail-close-button {
  background: #f0ede5;
}
.detail-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(370px, 0.82fr);
  gap: 24px;
  padding: 25px;
}
.detail-photo {
  min-height: 590px;
  border-radius: 22px 22px 22px 8px;
  background: #292c40;
}
.detail-photo::after {
  background: linear-gradient(0deg, rgba(14, 15, 28, 0.63), transparent 43%);
}
.detail-photo figcaption {
  border: 0;
  border-radius: 8px;
  background: rgba(23, 26, 43, 0.72);
}
.detail-decision {
  padding: 48px 42px;
  border-color: #ddd8cd;
  border-left-color: var(--blue);
  border-radius: 22px 22px 22px 8px;
  background: linear-gradient(180deg, #fffdf8, #f4f3ff);
}
.detail-eyebrow span:first-child {
  border-radius: 7px;
  background: #e9e9ff;
  color: #3f41a2;
}
.detail-title {
  font-size: 42px;
  letter-spacing: -1.65px;
}
.detail-title-benefit {
  color: #4d4f63;
}
.detail-overview {
  color: #494b5b;
}
.detail-action-row a {
  border-radius: 13px 13px 13px 4px;
}
.detail-action-row .official-action {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(89, 91, 255, 0.18);
}
.detail-section {
  border-color: #ddd8cd;
  border-radius: 22px 22px 22px 8px;
}
.detail-expectation-mark {
  border-radius: 9px 9px 9px 3px;
  background: var(--blue);
  color: white;
}
.visit-fact-grid {
  border-radius: 15px 15px 15px 5px;
}
.visit-fact-icon {
  border-radius: 11px 11px 11px 4px;
  background: #ececff;
  color: var(--blue);
}
.practical-tips {
  border-color: #d8d8ee;
  background: #f1f1ff;
}
.practical-tip-list li > span {
  background: #e4e5ff;
  color: var(--blue);
}
.before-callout {
  border-color: #f2c5b9;
  border-left-color: var(--orange);
  border-radius: 13px 13px 13px 4px;
  background: #fff1eb;
}
.similar-card {
  border-radius: 15px 15px 15px 5px;
}

.desktop-nav a:focus-visible,
.top-radar-cta:focus-visible,
.radar-interest-list button:focus-visible,
.save-radar-button:focus-visible,
.radar-match-item:focus-visible {
  outline-color: var(--blue);
}

@media (max-width: 1080px) {
  .site-main > .page-shell {
    grid-template-columns: minmax(0, 880px);
    justify-content: center;
  }
  .right-rail {
    display: none;
  }
}

@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "decision"
      "story";
    gap: 0;
    padding: 0;
  }
  .detail-layout-without-photo {
    grid-template-areas:
      "decision"
      "story";
  }
  .detail-decision {
    position: static;
    top: auto;
    border-top: 5px solid var(--blue);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
  .detail-photo {
    min-height: 0;
    border-radius: 0;
  }
  .detail-story {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 26px;
  }
  .listing-card,
  .listing-card:nth-child(4n + 1),
  .listing-card:nth-child(4n + 4) {
    width: 100%;
    margin-top: 0;
    justify-self: stretch;
  }
  .listing-media,
  .listing-card:nth-child(odd) .listing-media {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 860px) {
  .radar-metrics {
    border-radius: 19px 19px 19px 7px;
  }
  .site-main > .page-shell {
    width: 100%;
  }
  .radar-preview {
    width: calc(100% - 36px);
  }
}

@media (max-width: 680px) {
  body {
    background: var(--paper);
  }
  .topbar {
    height: 62px;
  }
  .site-main {
    width: 100%;
  }
  .radar-metrics {
    margin: 12px 12px 0;
  }
  .radar-metrics article {
    padding-left: 39px;
  }
  .radar-metrics article::before {
    left: 19px;
  }
  .site-main .discovery-panel {
    border-radius: 0;
  }
  .listing-grid {
    gap: 18px;
  }
  .listing-body {
    padding: 17px 16px 19px;
  }
  .listing-title {
    font-size: 22px;
  }
  .radar-preview {
    margin-top: 82px;
    padding: 31px 19px 19px;
    border-radius: 25px 25px 25px 8px;
  }
  .how-section {
    padding-top: 90px;
  }
  .how-grid article {
    min-height: 0;
    border-bottom: 0;
  }
  .detail-modal {
    width: 100%;
    border-radius: 0;
  }
  .detail-decision {
    padding: 26px 20px 24px;
  }
  .detail-story {
    gap: 12px;
    padding: 12px;
  }
  .detail-title {
    font-size: 31px;
  }
  .detail-section {
    border-radius: 18px 18px 18px 6px;
  }
  .mobile-nav .mobile-radar-button {
    color: #bfc2ff;
  }
}

/* Landing image hero */
.landing-hero {
  position: relative;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  border: 1px solid #d8d8e7;
  border-radius: 38px;
  background: #f7f6f2;
  box-shadow: 0 24px 70px rgba(43, 45, 80, 0.1);
}
.landing-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.landing-hero-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 860px) {
  .landing-hero {
    height: calc(100svh - 66px);
    min-height: 560px;
    max-height: 820px;
    aspect-ratio: auto;
    border-width: 0 0 1px;
    border-radius: 0 0 30px 10px;
  }
  .landing-hero-image {
    object-position: 88% center;
  }
}

@media (max-width: 680px) {
  .landing-hero {
    height: calc(100svh - 62px);
    max-height: none;
  }
}

/* Multi-page product architecture */
.desktop-nav a.active {
  background: white;
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(46, 42, 96, 0.08);
}
.icon-button,
.top-radar-cta {
  text-decoration: none;
}
.marketing-main,
.page-main {
  padding-top: 18px;
}
.page-main {
  min-height: calc(100vh - 74px);
}

.landing-hero-copy {
  position: absolute;
  z-index: 2;
  top: 58%;
  left: 4.3%;
  width: min(620px, 56%);
}
.landing-hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-primary,
.hero-secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 18px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.hero-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 26px rgba(89, 91, 255, 0.22);
}
.hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(89, 91, 255, 0.28);
}
.hero-secondary {
  border: 1px solid rgba(23, 26, 43, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  backdrop-filter: blur(9px);
}
.hero-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.home-choices,
.home-promise,
.home-membership,
.radar-benefits,
.radar-join-band,
.verification-page,
.trust-facts,
.transparency-band,
.plans-section,
.pricing-principles,
.pricing-faq,
.pricing-cta-band {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}
.home-choices {
  padding: 104px 0 96px;
  scroll-margin-top: 96px;
}
.home-section-heading {
  max-width: 760px;
}
.home-section-heading .section-kicker {
  color: var(--blue);
}
.home-section-heading h2 {
  margin: 11px 0 15px;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.home-section-heading p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}
.home-choice-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 16px;
}
.home-choice-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 27px 27px 27px 8px;
  background: #22263b;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.home-choice-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.home-choice-card:hover img {
  transform: scale(1.035);
}
.home-choice-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 25, 0.04) 20%, rgba(10, 12, 25, 0.88) 100%);
}
.home-choice-copy {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 7px;
  padding: 28px;
}
.home-choice-copy small {
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
}
.home-choice-copy strong {
  max-width: 360px;
  font-size: 24px;
  line-height: 1.13;
  letter-spacing: -0.7px;
  text-wrap: balance;
}
.home-choice-featured .home-choice-copy strong {
  font-size: 30px;
}
.home-choice-copy > span {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}
.home-choice-copy i {
  position: absolute;
  right: 26px;
  bottom: 29px;
  color: var(--acid);
  font-size: 21px;
  font-style: normal;
}

.home-promise {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 56px;
  align-items: center;
  padding: 64px;
  border-radius: 31px 31px 31px 9px;
  background: var(--ink);
  color: white;
}
.home-promise > div {
  position: relative;
}
.promise-number {
  position: absolute;
  right: 0;
  top: -48px;
  color: rgba(223, 244, 91, 0.07);
  font-size: 122px;
  font-weight: 900;
  letter-spacing: -10px;
}
.home-promise .section-kicker {
  color: var(--acid);
}
.home-promise h2 {
  position: relative;
  margin: 12px 0 14px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.home-promise p {
  position: relative;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}
.home-promise ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-promise li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.home-promise li span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
}
.home-promise li strong {
  font-size: 13px;
}
.home-promise > a {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  gap: 12px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 5px;
}
.home-promise > a span:last-child {
  color: var(--acid);
}

.home-membership {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 310px;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 43, 0.1);
  border-radius: 31px 31px 31px 9px;
  background: #e6e9ff;
}
.home-membership > div:first-child {
  padding: clamp(42px, 6vw, 72px);
}
.home-membership h2 {
  max-width: 720px;
  margin: 14px 0;
  font-size: clamp(35px, 4vw, 51px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.home-membership p {
  max-width: 690px;
  margin: 0;
  color: #595b69;
  font-size: 15px;
  line-height: 1.75;
}
.home-membership-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-membership-preview {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(23, 26, 43, 0.18);
  border-radius: 13px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.home-price {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px;
  background: var(--acid);
  text-align: center;
}
.home-price > span:first-child {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.home-price > div {
  margin-top: 19px;
  display: flex;
  align-items: flex-start;
}
.home-price > div small {
  margin-top: 9px;
  font-size: 22px;
  font-weight: 850;
}
.home-price > div strong {
  font-size: 73px;
  line-height: 0.85;
  letter-spacing: -5px;
}
.home-price > p {
  margin: 11px 0 26px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.coming-label {
  max-width: 185px;
  padding: 9px 11px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: 0;
}

.page-hero {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 52px;
  padding: clamp(62px, 8vw, 104px) clamp(28px, 6vw, 74px);
  border-radius: 31px 31px 31px 9px;
  background: #e6e9ff;
}
.page-hero h1 {
  max-width: 830px;
  margin: 13px 0 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.page-hero > div > p {
  max-width: 710px;
  margin: 0;
  color: #5e6070;
  font-size: 17px;
  line-height: 1.72;
  text-wrap: pretty;
}
.page-hero > a,
.page-hero > aside {
  border-radius: 22px 22px 22px 7px;
}
.page-hero > a {
  align-self: end;
  display: grid;
  gap: 8px;
  padding: 23px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}
.page-hero > a span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}
.page-hero > a strong {
  color: var(--acid);
  font-size: 16px;
}
.page-hero > aside {
  align-self: stretch;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
  background: var(--ink);
  color: white;
}
.page-hero > aside > span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.page-hero > aside > strong {
  margin-top: 11px;
  font-size: 21px;
  line-height: 1.25;
}
.page-hero > aside > p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.65;
}
.explore-page-hero {
  padding-top: 72px;
  padding-bottom: 72px;
}
.explore-shell {
  width: min(1180px, 100%);
  margin: 34px auto 96px;
  grid-template-columns: minmax(0, 880px) 270px;
  gap: 30px;
}
.rail-method-link {
  display: inline-block;
  margin-top: 13px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.radar-page-hero {
  background: var(--ink);
  color: white;
}
.radar-page-hero h1 {
  color: white;
}
.radar-page-hero > div > p {
  color: rgba(255, 255, 255, 0.68);
}
.radar-page-hero > aside {
  background: var(--acid);
  color: var(--ink);
}
.radar-page-hero > aside > span,
.radar-page-hero > aside > p {
  color: rgba(23, 26, 43, 0.68);
}
.page-hero-actions {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.page-hero-actions button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}
.page-hero-actions a {
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 5px;
}
.radar-page-main > .radar-metrics {
  width: min(1120px, calc(100% - 56px));
  margin-right: auto;
  margin-left: auto;
}
.radar-page-preview {
  margin-top: 88px;
}
.radar-benefits {
  padding: 104px 0 88px;
}
.radar-benefit-grid {
  margin-top: 37px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cbc8bf;
  border-bottom: 1px solid #cbc8bf;
}
.radar-benefit-grid article {
  padding: 30px 28px;
  border-right: 1px solid #d6d2c7;
}
.radar-benefit-grid article:last-child {
  border-right: 0;
}
.radar-benefit-grid article > span,
.trust-fact-grid article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}
.radar-benefit-grid h3 {
  margin: 14px 0 9px;
  font-size: 20px;
}
.radar-benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.radar-join-band,
.pricing-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 48px;
  border-radius: 27px 27px 27px 8px;
  background: var(--ink);
  color: white;
}
.radar-join-band h2,
.pricing-cta-band h2 {
  margin: 10px 0;
  font-size: 34px;
  letter-spacing: -1.4px;
}
.radar-join-band p,
.pricing-cta-band p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.65;
}
.radar-join-band > div:last-child,
.pricing-cta-band > div:last-child {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.radar-join-band a,
.pricing-cta-band a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  color: white;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.radar-join-band .primary-action,
.pricing-cta-band .primary-action {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.how-page-hero {
  background: #ffe5db;
}
.how-page-hero > aside > span {
  color: var(--acid);
  font-size: 55px;
  line-height: 1;
  letter-spacing: -4px;
}
.how-page-steps {
  width: min(1180px, 100%);
  padding-top: 104px;
}
.verification-page {
  padding: 34px 0 104px;
  scroll-margin-top: 96px;
}
.verification-pass-grid {
  margin-top: 39px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.verification-pass-grid article {
  min-height: 290px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  padding: 36px;
  border-radius: 26px 26px 26px 8px;
  background: #fffdf8;
  box-shadow: 0 14px 38px rgba(42, 38, 70, 0.07);
}
.verification-pass-grid article:nth-child(2) {
  background: var(--ink);
  color: white;
}
.pass-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 900;
}
.verification-pass-grid article:nth-child(2) .pass-number {
  background: var(--acid);
  color: var(--ink);
}
.verification-pass-grid small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.verification-pass-grid article:nth-child(2) small {
  color: var(--acid);
}
.verification-pass-grid h3 {
  margin: 16px 0 12px;
  font-size: 27px;
  letter-spacing: -1px;
}
.verification-pass-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.verification-pass-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.68);
}
.trust-facts {
  padding: 82px 64px;
  border-radius: 31px 31px 31px 9px;
  background: #e6e9ff;
}
.trust-facts > div:first-child {
  max-width: 720px;
}
.trust-facts h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.trust-fact-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(23, 26, 43, 0.2);
}
.trust-fact-grid article {
  min-height: 190px;
  padding: 26px 23px;
  border-right: 1px solid rgba(23, 26, 43, 0.14);
  border-bottom: 1px solid rgba(23, 26, 43, 0.14);
}
.trust-fact-grid article:nth-child(3n) {
  border-right: 0;
}
.trust-fact-grid h3 {
  margin: 13px 0 8px;
  font-size: 18px;
}
.trust-fact-grid p {
  margin: 0;
  color: #5c5e6b;
  font-size: 12px;
  line-height: 1.65;
}
.transparency-band {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 45px;
  padding: 52px 58px;
  border-radius: 27px 27px 27px 8px;
  background: #fffdf8;
  box-shadow: 0 14px 40px rgba(42, 38, 70, 0.06);
}
.transparency-band > div {
  max-width: 770px;
}
.transparency-band h2 {
  margin: 11px 0 12px;
  font-size: 35px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-wrap: balance;
}
.transparency-band p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.transparency-band > a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 19px;
  padding: 0 17px;
  border-radius: 12px;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.pricing-page-hero {
  background: var(--acid);
}
.pricing-page-hero > aside {
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(42, 38, 70, 0.09);
}
.pricing-page-hero > aside > span,
.pricing-page-hero > aside > p {
  color: #676955;
}
.pricing-page-hero .membership-price {
  margin-top: 20px;
}
.pricing-page-hero .membership-price strong {
  font-size: 65px;
}
.plans-section {
  padding: 104px 0 96px;
  scroll-margin-top: 96px;
}
.plan-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.plan-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(23, 26, 43, 0.12);
  border-radius: 28px 28px 28px 9px;
  background: #fffdf8;
  box-shadow: 0 12px 34px rgba(42, 38, 70, 0.06);
}
.plan-card-featured {
  border: 0;
  background: var(--ink);
  color: white;
}
.plan-popular {
  position: absolute;
  top: 19px;
  right: 19px;
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.plan-card-head > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.plan-card-featured .plan-card-head > span {
  color: var(--acid);
}
.plan-card-head > div {
  margin-top: 22px;
  display: flex;
  align-items: end;
}
.plan-card-head small {
  align-self: start;
  margin-top: 7px;
  font-size: 21px;
  font-weight: 850;
}
.plan-card-head strong {
  font-size: 68px;
  line-height: 0.85;
  letter-spacing: -4px;
}
.plan-card-head em {
  margin: 0 0 4px 10px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}
.plan-card-featured .plan-card-head em {
  color: rgba(255, 255, 255, 0.6);
}
.plan-card-head p {
  max-width: 470px;
  min-height: 50px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.plan-card-featured .plan-card-head p {
  color: rgba(255, 255, 255, 0.66);
}
.plan-card ul {
  margin: 31px 0;
  padding: 0;
  list-style: none;
}
.plan-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(23, 26, 43, 0.12);
  font-size: 13px;
  font-weight: 700;
}
.plan-card-featured li {
  border-top-color: rgba(255, 255, 255, 0.13);
}
.plan-card li > span:first-child {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e6e9ff;
  color: var(--blue);
  font-size: 10px;
}
.plan-card-featured li > span:first-child {
  background: var(--acid);
  color: var(--ink);
}
.plan-card > a {
  width: 100%;
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border: 0;
  border-radius: 12px;
  background: #e6e9ff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.plan-card-featured > a {
  background: var(--acid);
}
.plan-card .membership-status {
  color: var(--ink);
}
.pricing-principles {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: 60px;
  padding: 62px;
  border-radius: 29px 29px 29px 9px;
  background: #ffe5db;
}
.pricing-principles h2 {
  margin: 11px 0 0;
  font-size: 39px;
  line-height: 1.06;
  letter-spacing: -1.8px;
  text-wrap: balance;
}
.pricing-principles ul {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: principle;
}
.pricing-principles li {
  counter-increment: principle;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 26, 43, 0.16);
  font-size: 13px;
  font-weight: 750;
}
.pricing-principles li::before {
  content: counter(principle, decimal-leading-zero);
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}
.pricing-faq {
  padding: 104px 0 90px;
}
.faq-list {
  margin-top: 38px;
  border-top: 1px solid #cbc8bf;
}
.faq-list details {
  border-bottom: 1px solid #cbc8bf;
}
.faq-list summary {
  padding: 22px 38px 22px 2px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}
.faq-list p {
  max-width: 780px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

html[lang="ko"]
  :is(
    .home-section-heading h2,
    .home-promise h2,
    .home-membership h2,
    .page-hero h1,
    .trust-facts h2,
    .transparency-band h2,
    .pricing-principles h2
  ) {
  line-height: 1.2;
  letter-spacing: -0.035em;
}

@media (max-width: 1080px) {
  .home-choice-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-choice-featured {
    grid-column: 1 / -1;
    min-height: 500px;
  }
  .page-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .page-hero > a,
  .page-hero > aside {
    width: min(520px, 100%);
  }
}

@media (max-width: 860px) {
  .marketing-main,
  .page-main {
    padding-top: 0;
  }
  .landing-hero-copy {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px 22px 22px 7px;
    background: rgba(255, 253, 248, 0.91);
    box-shadow: 0 18px 50px rgba(31, 31, 60, 0.16);
    backdrop-filter: blur(14px);
  }
  .landing-hero-actions {
    margin-top: 0;
  }
  .home-choices,
  .home-promise,
  .home-membership,
  .radar-benefits,
  .radar-join-band,
  .verification-page,
  .trust-facts,
  .transparency-band,
  .plans-section,
  .pricing-principles,
  .pricing-faq,
  .pricing-cta-band,
  .page-hero,
  .explore-shell,
  .how-page-steps {
    width: calc(100% - 36px);
  }
  .home-choice-grid {
    grid-template-columns: 1fr;
  }
  .home-choice-featured {
    grid-column: auto;
  }
  .home-choice-card,
  .home-choice-featured {
    min-height: 430px;
  }
  .home-promise,
  .pricing-principles {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 44px 34px;
  }
  .home-membership {
    grid-template-columns: 1fr;
  }
  .home-price {
    min-height: 290px;
  }
  .page-hero {
    width: 100%;
    border-radius: 0 0 29px 8px;
  }
  .explore-shell {
    margin-top: 26px;
  }
  .radar-page-main > .radar-metrics {
    width: calc(100% - 36px);
  }
  .radar-page-preview {
    margin-top: 64px;
  }
  .radar-benefit-grid {
    grid-template-columns: 1fr;
  }
  .radar-benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid #d6d2c7;
  }
  .radar-benefit-grid article:last-child {
    border-bottom: 0;
  }
  .radar-join-band,
  .pricing-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .verification-pass-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .trust-fact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-fact-grid article:nth-child(3n) {
    border-right: 1px solid rgba(23, 26, 43, 0.14);
  }
  .trust-fact-grid article:nth-child(2n) {
    border-right: 0;
  }
  .transparency-band {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 42px 34px;
  }
}

@media (max-width: 680px) {
  .landing-hero-copy {
    right: 12px;
    bottom: 14px;
    left: 12px;
    padding: 20px;
  }
  .landing-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }
  .hero-primary,
  .hero-secondary {
    width: 100%;
    min-height: 47px;
  }
  .home-choices {
    padding: 76px 0 70px;
  }
  .home-section-heading h2 {
    font-size: 34px;
  }
  .home-choice-card,
  .home-choice-featured {
    min-height: 390px;
  }
  .home-choice-copy {
    padding: 23px;
  }
  .home-choice-copy strong,
  .home-choice-featured .home-choice-copy strong {
    padding-right: 15px;
    font-size: 25px;
  }
  .home-promise,
  .pricing-principles {
    padding: 37px 24px;
  }
  .home-membership > div:first-child {
    padding: 38px 24px;
  }
  .home-membership-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .home-membership-actions > a {
    width: 100%;
  }
  .page-hero {
    padding: 52px 22px 46px;
  }
  .page-hero h1 {
    font-size: 43px;
  }
  .page-hero > div > p {
    font-size: 15px;
  }
  .page-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .page-hero-actions button {
    justify-content: space-between;
  }
  .radar-page-main > .radar-metrics {
    width: calc(100% - 24px);
  }
  .radar-benefits {
    padding: 76px 0 65px;
  }
  .radar-join-band,
  .pricing-cta-band {
    padding: 34px 24px;
  }
  .radar-join-band > div:last-child,
  .pricing-cta-band > div:last-child {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
  .radar-join-band a,
  .pricing-cta-band a {
    justify-content: center;
  }
  .verification-page {
    padding: 20px 0 76px;
  }
  .verification-pass-grid article {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .trust-facts {
    padding: 45px 24px;
  }
  .trust-fact-grid {
    grid-template-columns: 1fr;
  }
  .trust-fact-grid article,
  .trust-fact-grid article:nth-child(3n) {
    min-height: 0;
    border-right: 0;
  }
  .transparency-band {
    padding: 35px 24px;
  }
  .plan-card {
    padding: 29px 23px;
  }
  .plan-card-head strong {
    font-size: 61px;
  }
  .pricing-faq {
    padding: 76px 0 70px;
  }
  .faq-list summary {
    font-size: 15px;
  }
}

/* NearFree semantic product system */
:root {
  --paper: #f7f4ec;
  --card: #fffefa;
  --ink: #1c1d2e;
  --muted: #626474;
  --line: #ded9ce;
  --brand: #5158d9;
  --brand-strong: #4147ba;
  --brand-soft: #ececff;
  --value: #dff25f;
  --value-soft: #f3f8d8;
  --urgent: #c4513e;
  --trust: #267b88;
  --trust-soft: #e8f5f5;
  --blue: var(--brand);
  --acid: var(--value);
  --orange: var(--urgent);
  --sky: var(--trust-soft);
  --shadow: 0 14px 38px rgba(35, 34, 59, 0.07);
}

body {
  background: linear-gradient(180deg, rgba(236, 236, 255, 0.42), transparent 340px), var(--paper);
}
.topbar {
  height: 72px;
  border-bottom-color: rgba(25, 26, 32, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}
.brand-mark {
  background: var(--brand);
  transform: none;
}
.brand-mark i,
.brand-mark i:nth-child(2) {
  background: white;
}
.brand-copy strong {
  color: var(--brand);
}
.brand-dot {
  color: var(--urgent);
}
.desktop-nav {
  padding: 0;
  border: 0;
  background: transparent;
}
.desktop-nav a.active {
  background: var(--brand-soft);
  color: var(--brand-strong);
  box-shadow: none;
}
.location-pulse {
  background: var(--brand-soft);
}
.location-pulse::before {
  background: var(--blue);
}
.location-pulse::after {
  border-color: var(--blue);
}
.location-pill,
.language-control select {
  background: white;
}

.radar-metrics {
  border-color: var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: none;
}
.radar-metrics article::before,
.radar-metrics article:nth-child(2)::before {
  background: var(--brand);
}
.radar-metrics article:nth-child(3)::before {
  background: var(--urgent);
}
.radar-metrics article:nth-child(4)::before {
  background: var(--trust);
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding: 52px 58px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--card), var(--brand-soft));
}
.page-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1.02;
}
.page-hero > div > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
}
.page-hero > a {
  min-width: 220px;
  border-radius: 15px;
}
.page-hero > a strong {
  color: var(--value);
}
.explore-page-hero {
  padding-top: 50px;
  padding-bottom: 50px;
}
.how-page-hero,
.trust-facts {
  background: var(--trust-soft);
}
.pricing-page-hero,
.pricing-principles {
  background: var(--value-soft);
}
.radar-page-hero {
  border-color: var(--brand-strong);
  background: linear-gradient(135deg, #252765, var(--brand-strong));
}

.home-membership {
  border-color: #d8d7ee;
  background: var(--brand-soft);
}
.home-price {
  border-left: 1px solid #d8d7ee;
  background: var(--value-soft);
}
.home-price .coming-label {
  background: white;
}
.home-choice-copy small,
.home-choice-copy i {
  color: white;
}
.home-promise .section-kicker,
.home-promise > a span:last-child {
  color: var(--value);
}
.home-promise li span {
  background: var(--value);
}
.radar-preview {
  background: linear-gradient(145deg, #252765, var(--brand-strong));
  box-shadow: 0 22px 56px rgba(25, 26, 32, 0.13);
}
.how-grid {
  gap: 14px;
}
.how-grid article,
.how-grid article:nth-child(2),
.how-grid article:nth-child(3),
.how-grid article:nth-child(4) {
  border: 1px solid var(--line);
  background: white;
}
.how-grid article > span,
.how-grid article:nth-child(2) > span,
.how-grid article:nth-child(3) > span,
.how-grid article:nth-child(4) > span {
  background: var(--trust);
  color: white;
}

.explore-shell,
.site-main > .explore-shell {
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 1fr);
  margin-top: 28px;
}
.explore-shell .right-rail {
  display: none;
}
.site-main .discovery-panel {
  padding: 18px;
  border-color: #d8d7eb;
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.94);
  box-shadow: none;
}
.discovery-search.search-box {
  border-color: #cfcfca;
  border-radius: 14px;
  box-shadow: none;
}
.discovery-search.search-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79, 86, 217, 0.12);
}
.intent-chip {
  border-color: var(--line);
  border-radius: 999px;
  background: var(--card);
}
.intent-chip:hover {
  border-color: #a7a7a1;
  transform: none;
}
.intent-chip.active,
.intent-chip.value-intent.active {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
  box-shadow: none;
}
.intent-chip.value-intent.active {
  border-color: #cadf48;
  background: var(--value);
  color: var(--ink);
}
.intent-chip.intent-default.active {
  border-color: var(--line);
  background: #f0f0ed;
  color: #55575d;
}

.feed {
  gap: 64px;
}
.listing-section-head {
  margin-bottom: 22px;
  padding-bottom: 13px;
  border-bottom-color: var(--line);
}
.listing-section-head h2 {
  font-size: 25px;
  letter-spacing: -0.8px;
}
.listing-section-head p {
  color: var(--muted);
}
.listing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 38px;
  padding-bottom: 42px;
}
.listing-card,
.listing-card:nth-child(4n + 1),
.listing-card:nth-child(4n + 4) {
  --card-stagger: 0px;
  width: 100%;
  margin-top: 0;
  justify-self: stretch;
  border-color: var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 5px 18px rgba(25, 26, 32, 0.045);
  transform: translateY(var(--card-stagger));
}
.listing-card:nth-child(even) {
  --card-stagger: 24px;
  margin-top: 0;
}
.listing-card:hover {
  transform: translateY(calc(var(--card-stagger) - 3px));
  border-color: #b9b8db;
  box-shadow: 0 15px 34px rgba(35, 34, 59, 0.1);
}
.listing-media,
.listing-card:nth-child(odd) .listing-media {
  aspect-ratio: 3 / 2;
  background: #e8e8e4;
}
.listing-save {
  width: 44px;
  height: 44px;
  background: rgba(28, 29, 46, 0.74);
}
.listing-save.saved {
  background: var(--brand);
}
.listing-body {
  width: 100%;
  padding: 17px 17px 19px;
  display: block;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.listing-card-date {
  color: var(--brand-strong);
  font-size: 12px;
  letter-spacing: 0.045em;
}
.listing-card-date.is-urgent {
  color: var(--urgent);
}
.listing-card-location {
  color: var(--muted);
  font-size: 12px;
}
.listing-title {
  margin-top: 13px;
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: -0.6px;
}
.listing-open-arrow {
  border-color: #d7d7d1;
  color: #666870;
}
.listing-title:hover .listing-open-arrow,
.listing-card:hover .listing-open-arrow {
  border-color: var(--blue);
  color: var(--blue);
}
.listing-card-hook {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.quick-filter-bar {
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.quick-intents {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}
.quick-intents::-webkit-scrollbar {
  display: none;
}
.quick-intent,
.all-filters-button {
  min-height: 44px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: #4f5160;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.quick-intent {
  padding: 9px 15px;
}
.quick-intent:hover,
.all-filters-button:hover {
  border-color: #aba9c8;
}
.quick-intent.active {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}
.quick-intent.value-intent.active {
  border-color: #cadf48;
  background: var(--value);
  color: var(--ink);
}
.all-filters-button {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
}
.all-filters-button svg {
  width: 17px;
  height: 17px;
}
.all-filters-button strong {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 10px;
}
.filter-sheet {
  width: min(700px, 100%);
  padding-bottom: 20px;
}
.filter-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}
.filter-sheet-head h2 {
  margin: 5px 0 0;
  font-size: 26px;
  letter-spacing: -0.8px;
}
.filter-sheet-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.sheet-close {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 24px;
  cursor: pointer;
}
.filter-sheet .intent-scroll {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
}
.filter-sheet .intent-group {
  min-width: 0;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-sheet .intent-group-label {
  width: 100%;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 11px;
}
.filter-apply {
  width: 100%;
  min-height: 50px;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 13px;
  background: var(--brand);
  color: white;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.filter-apply strong {
  min-width: 25px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--value);
  color: var(--ink);
  font-size: 11px;
}
.feed-trust-strip {
  min-height: 62px;
  margin-top: 13px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border: 1px solid #cfe5e4;
  border-radius: 14px;
  background: var(--trust-soft);
  color: #205f68;
  text-decoration: none;
}
.feed-trust-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--trust);
  color: white;
}
.feed-trust-icon svg {
  width: 20px;
  height: 20px;
}
.feed-trust-strip > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 1px;
}
.feed-trust-strip strong {
  color: #194e55;
  font-size: 12px;
}
.feed-trust-strip small {
  color: #46737a;
  font-size: 10px;
}
.active-notice {
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
}
.active-filter-list {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.active-notice .active-filter-list button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #d8d7ec;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 10px;
  text-decoration: none;
}
.active-notice .active-filter-list button span:last-child {
  font-size: 15px;
  line-height: 1;
}
.active-notice > #clearAllFilters {
  min-height: 36px;
  padding: 0 8px;
  color: var(--brand-strong);
}
:is(button, a, input, select, summary):focus-visible {
  outline: 3px solid rgba(81, 88, 217, 0.38);
  outline-offset: 3px;
}

.mobile-nav {
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(64px + env(safe-area-inset-bottom));
  transform: none;
  padding: 4px 8px env(safe-area-inset-bottom);
  border: 0;
  border-top: 1px solid rgba(25, 26, 32, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -5px 20px rgba(25, 26, 32, 0.05);
}
.mobile-nav a,
.mobile-nav button {
  min-height: 48px;
  border-radius: 10px;
  color: #777980;
  font-size: 10px;
}
.mobile-nav .active {
  background: transparent;
  color: var(--blue);
}
.mobile-nav .mobile-radar-button {
  color: #777980;
}

@media (max-width: 860px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
  .topbar {
    height: 60px;
    padding: 0 16px;
  }
  .top-actions .saved-trigger,
  .top-actions .location-pill,
  .top-radar-cta {
    display: none;
  }
  .language-control select {
    min-width: 64px;
    height: 36px;
  }

  .marketing-main {
    width: 100%;
  }
  .landing-hero {
    width: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 12px;
    overflow: hidden;
    aspect-ratio: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: none;
  }
  .landing-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1672 / 941;
    object-fit: contain;
    object-position: center;
    background: #f1f1ee;
  }
  .landing-hero-copy {
    position: static;
    width: auto;
    padding: 24px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: white;
    box-shadow: none;
    backdrop-filter: none;
  }
  .landing-hero-actions {
    margin-top: 0;
  }

  .page-hero {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 28px;
    border-radius: 18px;
  }
  .page-hero > a,
  .page-hero > aside {
    width: 100%;
  }
  .explore-page-hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .explore-page-hero h1 {
    font-size: 38px;
  }
  .explore-page-hero > a {
    display: none;
  }
  .explore-shell {
    width: 100%;
    margin-top: 16px;
  }
  .feed-trust-strip {
    margin-right: 18px;
    margin-left: 18px;
  }
  .results-toolbar {
    margin-right: 18px;
    margin-left: 18px;
  }
  .active-notice {
    margin-right: 18px;
    margin-left: 18px;
  }
  .listing-section {
    margin-right: 18px;
    margin-left: 18px;
  }
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-choice-card,
  .home-choice-featured {
    min-height: 300px;
  }
  .home-price {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .brand > span:last-child {
    display: grid;
  }
  .brand-copy strong {
    font-size: 19px;
  }
  .brand-mark {
    width: 27px;
    height: 27px;
  }
  .top-actions {
    gap: 0;
  }

  .marketing-main .radar-metrics {
    margin: 10px 14px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
  }
  .marketing-main .radar-metrics article {
    padding: 15px 14px 15px 34px;
    border-bottom: 0;
  }
  .marketing-main .radar-metrics article::before {
    left: 16px;
    top: 24px;
  }
  .marketing-main .radar-metrics article:nth-child(2),
  .marketing-main .radar-metrics article:nth-child(3) {
    display: none;
  }
  .marketing-main .radar-metrics article:first-child {
    border-right: 1px solid var(--line);
  }
  .marketing-main .radar-metrics strong {
    font-size: 22px;
  }
  .landing-hero {
    margin: 10px 10px 0;
  }
  .landing-hero-copy {
    padding: 22px 20px 20px;
  }
  .landing-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }
  .hero-primary,
  .hero-secondary {
    min-height: 48px;
  }

  .home-choices {
    width: calc(100% - 28px);
    padding: 68px 0 64px;
  }
  .home-section-heading h2 {
    font-size: 32px;
  }
  .home-section-heading p {
    font-size: 14px;
  }
  .home-choice-grid {
    gap: 18px;
    margin-top: 28px;
  }
  .home-choice-card,
  .home-choice-featured {
    min-height: 260px;
    border-radius: 18px;
  }
  .home-choice-copy {
    padding: 22px;
  }
  .home-choice-copy strong,
  .home-choice-featured .home-choice-copy strong {
    font-size: 22px;
  }
  .home-choice-copy > span {
    display: none;
  }
  .home-choice-copy i {
    right: 21px;
    bottom: 22px;
  }
  .home-promise,
  .home-membership {
    width: calc(100% - 28px);
    border-radius: 20px;
  }
  .home-promise {
    gap: 30px;
    padding: 34px 24px;
  }
  .home-promise h2,
  .home-membership h2 {
    font-size: 32px;
  }
  .home-membership > div:first-child {
    padding: 34px 24px;
  }
  .home-price {
    min-height: 230px;
  }

  .explore-page-hero {
    width: 100%;
    padding: 26px 18px 18px;
    border-width: 0 0 1px;
    border-radius: 0;
  }
  .explore-page-hero .section-kicker,
  .explore-page-hero > div > p {
    display: none;
  }
  .explore-page-hero h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
  }
  .explore-shell {
    margin-top: 0;
  }
  .site-main .discovery-panel {
    padding: 14px 14px 16px;
    border-width: 0 0 1px;
    border-radius: 0;
  }
  .home-location {
    min-height: 44px;
    margin: 0 0 8px;
    padding: 0;
  }
  .home-location > svg:first-child {
    color: var(--blue);
  }
  .discovery-search.search-box {
    height: 52px;
    border-radius: 13px;
  }
  .quick-filter-bar {
    margin: 11px -14px 0;
    padding: 0 14px;
    overflow: hidden;
  }
  .quick-intents {
    margin-right: -5px;
  }
  .quick-intent {
    min-height: 44px;
    padding: 9px 14px;
  }
  .all-filters-button {
    min-width: 44px;
    padding: 8px 12px;
  }
  .all-filters-button > span {
    display: none;
  }
  .filter-sheet {
    max-height: 88vh;
    padding-right: 18px;
    padding-left: 18px;
  }
  .filter-sheet .intent-scroll {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .filter-sheet .intent-chip {
    min-height: 44px;
    padding: 9px 14px;
  }
  .feed-trust-strip {
    margin: 11px 16px 0;
  }
  .feed-trust-strip small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .results-toolbar {
    margin: 22px 16px 18px;
  }
  .sort-button {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .active-notice {
    margin-right: 16px;
    margin-left: 16px;
  }
  .feed {
    gap: 54px;
  }
  .listing-section {
    margin: 0 16px;
  }
  .listing-section-head {
    margin-bottom: 18px;
  }
  .listing-section-head h2 {
    font-size: 22px;
  }
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 38px;
  }
  .listing-card,
  .listing-card:nth-child(4n + 1),
  .listing-card:nth-child(4n + 4) {
    border-radius: 18px;
  }
  .listing-save {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }
  .listing-body {
    padding: 18px 17px 20px;
  }
  .listing-title {
    font-size: 21px;
  }
  .listing-card-hook {
    margin-right: 0;
    font-size: 13px;
    -webkit-line-clamp: 1;
  }
  .empty-state {
    margin: 0 16px;
  }

  .detail-modal {
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border: 0;
    border-radius: 0;
    transform: none;
  }
  .detail-scroll-area {
    width: 100%;
    overflow-x: hidden;
    scrollbar-gutter: auto;
    scrollbar-width: none;
  }
  .detail-scroll-area::-webkit-scrollbar {
    display: none;
    width: 0;
  }
  .detail-dialog-bar {
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }
  .detail-decision {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .detail-story {
    width: 100%;
    margin: 0;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
}

/* Explore catalog hierarchy */
.explore-page-hero {
  padding-top: 32px;
  padding-bottom: 32px;
}
.explore-page-hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 4vw, 48px);
}
.explore-page-hero > div > p {
  max-width: 720px;
}
.explore-shell,
.site-main > .explore-shell {
  margin-top: 20px;
}
.site-main .discovery-panel {
  padding: 16px;
}

.catalog-control-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.catalog-view-switcher {
  width: min(720px, 100%);
  flex: 1 1 620px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #efefec;
}
.catalog-view-option {
  min-height: 48px;
  padding: 9px 12px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #666871;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
  cursor: pointer;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}
.catalog-view-option:hover {
  color: var(--ink);
}
.catalog-view-option.active {
  background: white;
  color: var(--brand-strong);
  box-shadow: 0 2px 9px rgba(31, 31, 49, 0.09);
}
.catalog-control-row .quick-filter-bar {
  flex: 0 0 auto;
  justify-content: flex-end;
  margin-top: 0;
}
.quick-intents {
  flex: 0 1 auto;
}

.results-toolbar {
  margin-top: 18px;
  align-items: center;
}
.results-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.results-toolbar .feed-trust-strip {
  min-height: 44px;
  margin: 0;
  gap: 8px;
  padding: 5px 10px 5px 6px;
  border-radius: 12px;
}
.results-toolbar .feed-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}
.results-toolbar .feed-trust-icon svg {
  width: 17px;
  height: 17px;
}
.results-toolbar .feed-trust-strip strong {
  font-size: 11px;
}
.results-toolbar .feed-trust-strip small {
  font-size: 9px;
}

.listing-section-head {
  min-height: 56px;
  align-items: center;
}
.listing-section-head .listing-section-heading-copy p {
  max-width: 620px;
  text-align: left;
}
.listing-section-link {
  min-height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 2px 8px 12px;
  border: 0;
  background: transparent;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}
.listing-section-link span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #d5d5e6;
  border-radius: 50%;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.listing-section-link:hover span {
  transform: translateX(2px);
  border-color: var(--brand);
}
.listing-section-month .listing-section-head {
  min-height: 64px;
  align-items: center;
  border-bottom-color: #c8c8d2;
}
.listing-section-month .listing-section-heading-copy {
  width: 100%;
}
.listing-section-month .listing-section-head h2 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.45px;
  text-transform: none;
}
.listing-section-month .listing-section-head p {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}
.listing-card-hook {
  -webkit-line-clamp: 1;
}

@media (max-width: 860px) {
  .explore-page-hero {
    width: calc(100% - 28px);
    padding: 24px 22px;
  }
  .explore-page-hero h1 {
    font-size: 32px;
  }
  .explore-shell,
  .site-main > .explore-shell {
    margin-top: 12px;
  }
  .results-toolbar .feed-trust-strip {
    margin: 0;
  }
  .results-toolbar .feed-trust-strip small {
    display: none;
  }
  .listing-section-head .listing-section-heading-copy p {
    display: none;
  }
  .listing-section-month .listing-section-head p {
    display: block;
  }
  .listing-grid {
    gap: 26px;
  }
  .listing-card:nth-child(even) {
    --card-stagger: 0px;
  }
}

@media (max-width: 680px) {
  .explore-page-hero {
    width: 100%;
    padding: 17px 16px 13px;
  }
  .explore-page-hero h1 {
    font-size: 24px;
  }
  .site-main .discovery-panel {
    padding: 12px 14px 14px;
  }
  .catalog-control-row {
    margin-top: 10px;
    display: block;
  }
  .catalog-view-switcher {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border-radius: 12px;
  }
  .catalog-view-option {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.3;
  }
  .catalog-control-row .quick-filter-bar {
    margin: 8px 0 0;
    padding: 0;
    justify-content: space-between;
    overflow: visible;
  }
  .quick-intents {
    margin-right: 0;
  }
  .catalog-control-row .all-filters-button > span {
    display: inline;
  }
  .results-toolbar {
    margin-top: 16px;
    margin-bottom: 14px;
  }
  .results-actions {
    gap: 6px;
  }
  .results-toolbar .feed-trust-strip {
    min-height: 42px;
    padding-right: 7px;
  }
  .results-toolbar .feed-trust-strip > span:nth-child(2) {
    display: none;
  }
  .listing-section {
    margin: 0 16px;
  }
  .listing-section-head {
    min-height: 50px;
    margin-bottom: 16px;
  }
  .listing-section-head h2 {
    font-size: 21px;
  }
  .listing-section-link {
    min-height: 42px;
    padding-left: 6px;
    font-size: 11px;
  }
  .listing-section-link span {
    width: 26px;
    height: 26px;
  }
  .listing-section-month .listing-section-head h2 {
    font-size: 20px;
  }
  .feed {
    gap: 46px;
  }
  .listing-grid {
    gap: 24px;
    padding-bottom: 32px;
  }
  .listing-body {
    min-height: 128px;
  }
}

/* Trust and policy pages */
.trust-main {
  width: min(1160px, calc(100% - 40px));
}
.trust-hero {
  margin-top: 28px;
  padding: clamp(48px, 7vw, 86px) clamp(28px, 7vw, 84px);
  border: 1px solid var(--line);
  border-radius: 30px 30px 30px 8px;
  background:
    radial-gradient(circle at 90% 15%, rgba(223, 242, 95, 0.32), transparent 30%), var(--card);
}
.trust-hero h1 {
  max-width: 880px;
  margin: 18px 0 20px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
:where(.trust-hero > p:not(.trust-updated)) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  text-wrap: pretty;
}
.trust-updated {
  margin: 30px 0 0;
  color: var(--trust);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.policy-main .trust-hero {
  padding: clamp(38px, 5vw, 58px) clamp(28px, 6vw, 68px);
  border-radius: 20px 20px 20px 6px;
  background: var(--card);
}
.policy-main .trust-hero h1 {
  max-width: 760px;
  margin: 14px 0 16px;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.042em;
}
.trust-layout {
  margin-top: 60px;
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: clamp(38px, 7vw, 88px);
}
.policy-main .trust-layout {
  margin-top: 48px;
}
.trust-toc {
  position: sticky;
  top: 98px;
}
.trust-toc nav {
  display: grid;
  gap: 3px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 5px;
  background: rgba(255, 254, 250, 0.72);
}
:where(.trust-toc strong) {
  margin: 0 10px 10px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
:where(.trust-toc a) {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}
:where(.trust-toc a:hover) {
  background: var(--brand-soft);
  color: var(--brand-strong);
}
.trust-content {
  min-width: 0;
}
.trust-section {
  padding: 0 0 46px;
  margin-bottom: 46px;
  scroll-margin-top: 100px;
  border-bottom: 1px solid var(--line);
}
.trust-section:last-child {
  margin-bottom: 0;
}
:where(.trust-section h2) {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.policy-main :where(.trust-section h2) {
  font-size: clamp(26px, 2.7vw, 34px);
}
.trust-section h3 {
  margin: 32px 0 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}
:where(.trust-section p) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
  text-wrap: pretty;
}
.trust-followup {
  margin-top: 20px;
}
.trust-check-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.trust-check-list li {
  min-height: 48px;
  position: relative;
  padding: 13px 16px 13px 48px;
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  background: var(--card);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.trust-check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  left: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--value-soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.trust-notice,
.trust-security,
.trust-next {
  padding: 30px;
  border: 1px solid rgba(38, 123, 136, 0.2);
  border-radius: 20px 20px 20px 6px;
  background: var(--trust-soft);
}
.trust-security {
  border-color: rgba(81, 88, 217, 0.2);
  background: var(--brand-soft);
}
.trust-next {
  border-color: rgba(143, 163, 32, 0.22);
  background: var(--value-soft);
}
.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trust-action-card {
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 5px;
  background: var(--card);
}
:where(.trust-action-card > span) {
  color: var(--trust);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
:where(.trust-action-card h2) {
  margin: 18px 0 12px;
  font-size: 21px;
  line-height: 1.2;
}
:where(.trust-action-card p) {
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
}
:where(.trust-action-card a),
.trust-primary-action,
:where(.trust-actions a) {
  min-height: 44px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}
:where(.trust-action-card a) {
  width: 100%;
}
:where(.trust-action-card a:hover),
.trust-primary-action:hover,
:where(.trust-actions a:hover) {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
}
.trust-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
:where(.trust-actions a) {
  margin-top: 0;
}
.trust-text-link {
  min-height: 44px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 4px;
}
:where(.trust-toc a:focus-visible),
:where(.trust-action-card a:focus-visible),
.trust-primary-action:focus-visible,
:where(.trust-actions a:focus-visible),
.trust-text-link:focus-visible,
:where(.site-footer a:focus-visible) {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}
html[lang="ko"] .trust-hero h1 {
  line-height: 1.16;
  letter-spacing: -0.04em;
}
html[lang="ko"] :is(.trust-toc strong, .footer-nav-group > strong) {
  letter-spacing: 0;
}

@media (max-width: 860px) {
  .trust-main {
    width: calc(100% - 36px);
  }
  .trust-layout {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .trust-toc {
    position: static;
  }
  .trust-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  :where(.trust-toc strong) {
    grid-column: 1 / -1;
  }
  .trust-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .trust-main {
    width: calc(100% - 28px);
  }
  .trust-top-actions .saved-trigger {
    display: none;
  }
  .trust-hero {
    margin-top: 14px;
    padding: 36px 22px;
    border-radius: 22px 22px 22px 7px;
  }
  .policy-main .trust-hero {
    padding: 30px 22px;
    border-radius: 16px 16px 16px 5px;
  }
  .trust-hero h1 {
    margin-top: 14px;
    font-size: 38px;
  }
  :where(.trust-hero > p:not(.trust-updated)) {
    font-size: 16px;
  }
  .trust-toc nav {
    grid-template-columns: 1fr;
  }
  :where(.trust-toc strong) {
    grid-column: auto;
  }
  .trust-section {
    padding-bottom: 36px;
    margin-bottom: 36px;
  }
  .trust-notice,
  .trust-security,
  .trust-next {
    padding: 24px 20px;
  }
  .trust-actions {
    display: grid;
  }
  :where(.trust-actions a) {
    width: 100%;
  }
}

/* Standalone listing permalink pages */
.listing-page {
  padding-bottom: 0;
}
.listing-page-main {
  width: min(1240px, calc(100% - 40px));
  margin: 28px auto 76px;
}
.listing-breadcrumbs {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.listing-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.listing-breadcrumbs li {
  min-width: 0;
}
.listing-breadcrumbs li + li::before {
  margin-right: 8px;
  color: var(--line-strong);
  content: "/";
}
:where(.listing-breadcrumbs a) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
}
.listing-breadcrumbs [aria-current="page"] {
  overflow-wrap: anywhere;
  color: var(--ink);
}
.listing-page-toolbar {
  min-height: 54px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.listing-page-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.listing-page-back:hover {
  border-color: #b9b8db;
  color: var(--brand-strong);
}
.listing-page-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.listing-page-actions .detail-toolbar-button {
  width: auto;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 12px;
  font-weight: 800;
}
.listing-page-actions .detail-toolbar-button.saved {
  border-color: #bdcf5e;
  background: var(--acid);
}
.listing-page .listing-detail {
  overflow: hidden;
  border: 1px solid #d8d4cb;
  border-radius: 26px 26px 26px 8px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow);
}
.listing-page .detail-decision {
  top: 96px;
}
.listing-page-footer {
  width: min(1120px, calc(100% - 40px));
}
.listing-page-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}
.listing-page-footer .footer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .listing-page-main {
    width: min(760px, calc(100% - 36px));
  }
  .listing-page .listing-detail {
    border-radius: 22px 22px 22px 7px;
  }
}

@media (max-width: 680px) {
  .listing-page-main {
    width: calc(100% - 24px);
    margin-top: 14px;
  }
  .listing-page-top-actions .saved-trigger {
    display: none;
  }
  .listing-page-toolbar {
    align-items: stretch;
  }
  .listing-page-back {
    padding: 0 11px;
  }
  .listing-page-actions .detail-toolbar-button {
    width: 44px;
    padding: 0;
    justify-content: center;
  }
  .listing-page-actions .detail-toolbar-button > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .listing-page .listing-detail {
    border-radius: 16px 16px 16px 5px;
  }
  .listing-page-footer {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }
  .listing-page-footer .footer-nav {
    justify-content: flex-start;
  }
}
