:root {
  --navy: #082f4b;
  --navy-deep: #05253c;
  --ink: #102d42;
  --muted: #5e6769;
  --paper: #f6f0e5;
  --paper-deep: #e9decb;
  --blue: #1d527d;
  --blue-soft: #d7e2e8;
  --rust: #a95424;
  --rust-soft: #ecddd0;
  --green: #355f40;
  --green-soft: #dce4d7;
  --gold: #c9983f;
  --line: rgba(26, 50, 60, .18);
  --shadow: 0 18px 45px rgba(24, 38, 42, .14);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--paper) url("/world/assets/atlas-v1/paper-texture.webp") repeat;
  background-size: 600px 240px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.detail-open { overflow: hidden; }

button, input, select { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; }

a { color: inherit; }

img { display: block; max-width: 100%; }

.page-width { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  background: white;
  color: var(--navy);
}

.skip-link:focus { transform: translateY(0); }

.site-nav {
  position: relative;
  z-index: 20;
  height: 72px;
  padding: 0 max(32px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(20, 48, 63, .13);
  background: rgba(248, 244, 235, .96);
}

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand picture { display: block; }
.brand img { width: 212px; height: auto; }

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }

.nav-links a {
  position: relative;
  color: #153348;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  min-height: 42px;
  padding: 9px 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--navy-deep) !important;
  background: #d6aa55;
  box-shadow: 0 6px 16px rgba(111, 77, 22, .18);
}

.menu-toggle { display: none; }

.world-hero {
  position: relative;
  min-height: 470px;
  padding: 25px 0 20px;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(to bottom, rgba(249, 245, 237, .88) 0%, rgba(249, 245, 237, .16) 23%, rgba(249, 245, 237, .08) 62%, rgba(246, 240, 229, .94) 100%),
    url("/world/assets/atlas-v1/hero-neighborhood.webp");
  background-position: center;
  background-size: cover;
}

.world-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--paper));
}

.hero-copy { text-align: center; }

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .12em;
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: .08em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .55);
}

.hero-lead {
  max-width: 720px;
  margin: 14px auto 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 650;
  letter-spacing: .04em;
}

.work-mode-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 970px;
}

.work-mode-card {
  position: relative;
  min-height: 152px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(27, 52, 62, .18);
  border-radius: 8px 10px 7px 9px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.72), rgba(237,230,216,.68)),
    url("/world/assets/atlas-v1/paper-texture.webp") repeat;
  box-shadow: 0 11px 27px rgba(41, 49, 44, .13);
  text-align: left;
  cursor: pointer;
  transform: rotate(-.25deg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.work-mode-card:nth-child(2) { transform: rotate(.35deg); }
.work-mode-card:nth-child(3) { transform: rotate(-.15deg); }

.work-mode-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px dashed rgba(36, 63, 72, .18);
  border-radius: 5px;
}

.work-mode-card:hover,
.work-mode-card:focus-visible,
.work-mode-card.is-active {
  transform: translateY(-7px) rotate(0);
  box-shadow: 0 19px 34px rgba(25, 42, 48, .21);
}

.work-mode-card[data-mode="employee"].is-active { border-color: var(--blue); }
.work-mode-card[data-mode="owner"].is-active { border-color: var(--rust); }
.work-mode-card[data-mode="independent"].is-active { border-color: var(--green); }

.work-mode-card img {
  width: 68px;
  height: 90px;
  object-fit: cover;
  border-radius: 5px;
  mix-blend-mode: multiply;
}

.mode-copy { display: flex; flex-direction: column; align-items: flex-start; }

.mode-copy strong {
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.15;
}

.work-mode-card[data-mode="owner"] .mode-copy strong { color: #873f1d; }
.work-mode-card[data-mode="independent"] .mode-copy strong { color: #31543b; }

.mode-copy small { margin-top: 8px; color: #33484f; font-size: 13px; line-height: 1.5; }

.mode-action {
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

[data-mode="owner"] .mode-action { background: var(--rust); }
[data-mode="independent"] .mode-action { background: var(--green); }

.catalog-totals {
  width: fit-content;
  margin-top: 14px;
  padding: 6px 16px;
  border: 1px solid rgba(42, 64, 70, .16);
  border-radius: 8px;
  background: rgba(248, 243, 233, .83);
  box-shadow: 0 4px 16px rgba(47, 54, 48, .06);
  font-family: var(--serif);
  font-size: 18px;
}

.catalog-totals strong { font-size: 24px; font-weight: 500; }
.catalog-totals span { margin-inline: 16px; color: #78766c; }

.industry-street { padding: 26px 0 80px; }

.section-heading,
.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.section-heading h2,
.catalog-heading h2,
.explore-cta h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
}

.section-heading p:not(.section-kicker),
.catalog-heading p:not(.section-kicker) { margin: 7px 0 0; color: var(--muted); }

.text-button {
  flex: 0 0 auto;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.industry-windows {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.industry-window {
  position: relative;
  padding: 0 0 20px;
  border: 0;
  border-right: 1px solid rgba(36, 54, 56, .21);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.industry-window:first-child { border-left: 1px solid rgba(36, 54, 56, .21); }

.industry-sign {
  position: relative;
  z-index: 2;
  width: calc(100% - 20px);
  min-height: 50px;
  margin: 0 auto -8px;
  padding: 10px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(42, 50, 41, .28);
  border-radius: 5px 5px 2px 2px;
  color: var(--navy-deep);
  background: #d5cab5 url("/world/assets/atlas-v1/paper-texture.webp") repeat;
  box-shadow: 0 5px 13px rgba(55, 48, 33, .18);
  font-family: var(--serif);
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 750;
  text-align: center;
}

.industry-window img {
  width: 100%;
  aspect-ratio: 1 / 1.35;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(.88) contrast(.97);
  transition: filter .25s ease, transform .25s ease;
}

.industry-window:hover img,
.industry-window:focus-visible img { filter: saturate(1) contrast(1.03); transform: translateY(-3px); }

.industry-note {
  min-height: 63px;
  padding: 12px 16px 0;
  display: block;
  color: #4b5556;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.industry-action {
  padding: 5px 16px 0;
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.catalog-section {
  padding: 76px 0 90px;
  border-top: 1px solid rgba(43, 55, 54, .15);
  background: rgba(238, 229, 214, .5);
}

.search-box {
  width: min(430px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 16px;
  border: 1px solid rgba(16, 47, 69, .24);
  border-radius: 999px;
  background: rgba(255, 253, 248, .82);
  box-shadow: inset 0 1px 0 white;
}

.search-box label { color: var(--navy); font-size: 13px; font-weight: 800; }
.search-box input { min-width: 0; padding: 4px 0; border: 0; outline: 0; color: var(--ink); background: transparent; }
.search-box input::placeholder { color: #8b8b82; }
.search-box button { padding: 4px 8px; border: 0; color: var(--rust); background: transparent; cursor: pointer; }

.catalog-tabs { margin-top: 32px; display: flex; gap: 8px; }

.catalog-tabs button {
  min-width: 118px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  font-weight: 750;
  cursor: pointer;
}

.catalog-tabs button[aria-selected="true"] { color: white; border-color: var(--navy); background: var(--navy); }

.filters { margin-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

.industry-filters { display: flex; flex-wrap: wrap; gap: 7px; }

.industry-filters button {
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #516065;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.industry-filters button:hover,
.industry-filters button.is-active { border-color: rgba(14, 49, 72, .26); color: var(--navy); background: rgba(255,255,255,.52); }

.result-tools { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }
.result-tools p { margin: 0 4px 0 0; color: var(--muted); font-size: 13px; }
.result-tools label { color: var(--muted); font-size: 13px; }
.result-tools select { padding: 7px 29px 7px 10px; border: 1px solid var(--line); border-radius: 6px; color: var(--ink); background: rgba(255,255,255,.64); }

.catalog-list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.catalog-item {
  position: relative;
  min-height: 126px;
  padding: 21px 52px 21px 8px;
  display: grid;
  grid-template-columns: minmax(120px, .7fr) 1.3fr;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.catalog-item:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 36px; }
.catalog-item:nth-child(even) { padding-left: 28px; }

.catalog-item::after {
  content: "查看";
  position: absolute;
  right: 12px;
  top: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

.catalog-item:hover,
.catalog-item:focus-visible { background: rgba(255,255,255,.46); }

.item-title span { color: var(--rust); font-size: 12px; font-weight: 700; }
.item-title strong { margin-top: 5px; display: block; color: var(--navy-deep); font-family: var(--serif); font-size: 22px; line-height: 1.25; }
.item-body p { margin: 0; color: #4f5b5e; font-size: 14px; }
.item-meta { margin-top: 11px; display: flex; flex-wrap: wrap; gap: 8px; }
.item-meta span { padding: 3px 8px; border-radius: 999px; color: #315067; background: rgba(213,225,230,.75); font-size: 11px; }

.load-more {
  min-width: 190px;
  margin: 32px auto 0;
  padding: 12px 26px;
  display: block;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}

.load-more:hover { color: white; background: var(--navy); }

.empty-state { padding: 70px 20px; text-align: center; }
.empty-state h3 { margin: 0; font-family: var(--serif); font-size: 30px; }
.empty-state p { color: var(--muted); }
.empty-state button { padding: 10px 18px; border: 0; border-radius: 999px; color: white; background: var(--navy); cursor: pointer; }

.methodology { margin-top: 44px; border-top: 1px solid var(--line); }
.methodology details { padding: 18px 0; }
.methodology summary { color: var(--navy); font-weight: 750; cursor: pointer; }
.methodology details div { max-width: 850px; color: var(--muted); font-size: 13px; }
.methodology a { color: var(--blue); }

.explore-cta {
  min-height: 430px;
  padding: 64px 0;
  display: flex;
  align-items: center;
  color: white;
  background: var(--navy-deep) url("/world/assets/atlas-v1/explore-cta.webp") center / cover no-repeat;
}

.explore-guide { padding-right: 42%; }
.cta-copy { max-width: 650px; }
.explore-cta .section-kicker { color: #e6be6c; }
.explore-cta h2 { color: white; }
.explore-cta p:not(.section-kicker) { margin: 10px 0 0; color: rgba(255,255,255,.77); }
.explore-cta button { margin-top: 24px; padding: 11px 27px; border: 0; border-radius: 999px; color: var(--navy-deep); background: #ddb04e; font-weight: 800; cursor: pointer; }

.explore-steps {
  max-width: 720px;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
}

.explore-steps li {
  padding-top: 16px;
  border-top: 1px solid rgba(230, 190, 108, .54);
}

.explore-steps li > span {
  color: #e6be6c;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .12em;
}

.explore-steps strong {
  margin-top: 8px;
  display: block;
  color: white;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.explore-steps p {
  margin-top: 7px !important;
  font-size: 12px;
  line-height: 1.65;
}

footer {
  padding: 34px 32px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-top: 1px solid rgba(20,48,63,.14);
  background: #f4ede2;
}

footer img { width: 190px; }
footer p { margin: 0; color: #677072; font-family: var(--serif); }

/* Detail */
.world-detail {
  position: fixed;
  z-index: 60;
  inset: 0;
  overflow-y: auto;
  background: var(--paper) url("/world/assets/atlas-v1/paper-texture.webp") repeat;
  background-size: 600px 240px;
}

.detail-topbar {
  position: sticky;
  z-index: 5;
  top: 0;
  height: 66px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(248,244,235,.95);
  backdrop-filter: blur(12px);
}

.detail-topbar button {
  padding: 9px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.detail-topbar button:focus-visible {
  outline: none;
  box-shadow: 0 2px 0 var(--gold);
}

.detail-shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 42px 0 90px; }

.detail-header { max-width: 820px; }
.detail-industry { margin: 0; color: var(--blue); font-size: 13px; font-weight: 750; }
.detail-header h1 { margin: 8px 0 0; color: var(--navy-deep); font-family: var(--serif); font-size: clamp(46px, 6vw, 76px); line-height: 1.05; }
.detail-header .detail-summary { margin: 15px 0 0; color: #46565c; font-size: clamp(16px, 2vw, 21px); }

.detail-image { width: 100%; margin-top: 34px; aspect-ratio: 16 / 6; object-fit: cover; object-position: center; border-radius: 4px; box-shadow: var(--shadow); }

.detail-grid { margin-top: 48px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr); gap: 66px; }

.detail-section { padding: 0 0 34px; border-bottom: 1px solid var(--line); }
.detail-section + .detail-section { padding-top: 34px; }
.detail-section h2 { margin: 0 0 16px; color: var(--navy-deep); font-family: var(--serif); font-size: 28px; }
.detail-section ul, .detail-section ol { margin: 0; padding-left: 23px; }
.detail-section li { margin: 8px 0; color: #44565b; }

.income-value { margin: 0; color: #1e5685; font-family: Georgia, var(--serif); font-size: 34px; font-weight: 750; }
.detail-note { margin: 6px 0 0; color: #6a7475; font-size: 13px; }

.try-card {
  margin-top: 34px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 138px;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(30, 57, 67, .19);
  border-radius: 12px;
  background: rgba(255, 253, 248, .65);
  box-shadow: 0 10px 25px rgba(55, 53, 44, .07);
}

.try-card h2 { margin: 0 0 6px; font-size: 25px; }
.try-card p { margin: 0; color: #586567; }
.try-card .try-action { margin-top: 18px; padding: 9px 17px; display: inline-flex; border-radius: 999px; color: white; background: var(--blue); font-size: 13px; font-weight: 750; }
.try-card img { width: 138px; height: 132px; object-fit: cover; border-radius: 9px; mix-blend-mode: multiply; }

.facts-panel { position: sticky; top: 94px; align-self: start; }
.fact-row { padding: 17px 0; border-bottom: 1px solid var(--line); }
.fact-row span { display: block; color: #7b807b; font-size: 12px; }
.fact-row strong { margin-top: 4px; display: block; color: var(--ink); font-size: 16px; font-weight: 700; }
.related-block { margin-top: 30px; }
.related-block h2 { margin: 0 0 12px; font-family: var(--serif); font-size: 23px; }
.related-list { display: flex; flex-wrap: wrap; gap: 8px; }
.related-list button { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: rgba(255,255,255,.54); cursor: pointer; }

@media (max-width: 1050px) {
  .site-nav { height: 72px; padding-inline: 22px; }
  .brand img { width: 176px; }
  .nav-links { gap: 17px; }
  .nav-links a { font-size: 12px; }
  .nav-cta { padding-inline: 15px; }
  .work-mode-grid { max-width: calc(100% - 64px); }
  .industry-note { padding-inline: 9px; }
  .detail-grid { gap: 38px; }
}

@media (max-width: 760px) {
  .page-width { width: min(100% - 28px, 520px); }
  .site-nav { position: sticky; top: 0; height: 64px; padding-inline: 14px; background: var(--navy-deep); }
  .brand img { width: 156px; }
  .menu-toggle { padding: 7px 10px; display: inline-flex; border: 1px solid rgba(255,255,255,.5); border-radius: 6px; color: white; background: transparent; font-size: 13px; }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    padding: 16px 20px 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--navy-deep);
    box-shadow: 0 18px 35px rgba(0,0,0,.25);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 11px 4px; color: white; font-size: 14px; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 9px; justify-content: center; color: var(--navy-deep) !important; }

  .world-hero {
    min-height: auto;
    padding: 29px 0 34px;
    background-image:
      linear-gradient(to bottom, rgba(248,244,235,.75), rgba(248,244,235,.96) 33%, rgba(246,240,229,.98)),
      url("/world/assets/atlas-v1/hero-neighborhood.webp");
    background-position: center top;
    background-size: auto 360px;
    background-repeat: no-repeat;
  }
  .eyebrow { max-width: 280px; margin-inline: auto; font-size: 10px; }
  .hero-copy h1 { font-size: 40px; letter-spacing: .05em; }
  .hero-lead { max-width: 310px; margin-top: 11px; font-size: 14px; }
  .work-mode-grid { max-width: 520px; margin-top: 28px; grid-template-columns: 1fr; gap: 12px; }
  .work-mode-card,
  .work-mode-card:nth-child(2),
  .work-mode-card:nth-child(3) {
    min-height: 132px;
    padding: 18px;
    grid-template-columns: 66px 1fr;
    transform: none;
  }
  .work-mode-card:hover,
  .work-mode-card:focus-visible,
  .work-mode-card.is-active { transform: translateY(-2px); }
  .work-mode-card img { width: 58px; height: 78px; }
  .mode-copy strong { font-size: 23px; }
  .mode-copy small { margin-top: 5px; font-size: 12px; }
  .mode-action { margin-top: 8px; padding: 5px 10px; font-size: 11px; }
  .catalog-totals { margin-top: 17px; font-size: 15px; }
  .catalog-totals strong { font-size: 22px; }
  .catalog-totals span { margin-inline: 10px; }

  .industry-street { padding: 35px 0 56px; overflow: hidden; }
  .section-heading, .catalog-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .section-heading h2, .catalog-heading h2, .explore-cta h2 { font-size: 32px; }
  .section-heading p:not(.section-kicker) { font-size: 14px; }
  .text-button { align-self: flex-end; }
  .industry-windows { width: max-content; margin-right: -14px; grid-template-columns: repeat(5, 184px); gap: 0; overflow: visible; }
  .industry-window img { aspect-ratio: 1 / 1.42; }
  .industry-sign { min-height: 48px; font-size: 15px; }
  .industry-note { min-height: 68px; font-size: 12px; }

  .catalog-section { padding: 53px 0 62px; }
  .search-box { width: 100%; }
  .catalog-tabs { margin-top: 22px; }
  .catalog-tabs button { flex: 1; }
  .filters { align-items: stretch; flex-direction: column; gap: 16px; }
  .industry-filters { max-height: 84px; overflow-y: auto; }
  .result-tools { justify-content: space-between; }
  .result-tools p { margin-right: auto; }
  .result-tools label { display: none; }
  .result-tools select { max-width: 172px; }
  .catalog-list { grid-template-columns: 1fr; }
  .catalog-item,
  .catalog-item:nth-child(odd),
  .catalog-item:nth-child(even) { padding: 18px 46px 18px 4px; grid-template-columns: 1fr; gap: 8px; border-right: 0; }
  .catalog-item::after { right: 6px; top: 20px; }
  .item-title strong { font-size: 21px; }
  .item-body p { font-size: 13px; }

  .explore-cta {
    min-height: 660px;
    padding: 48px 0 202px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(4, 31, 50, .94) 0%, rgba(4, 31, 50, .82) 58%, rgba(4, 31, 50, .64) 100%),
      var(--navy-deep) url("/world/assets/atlas-v1/explore-cta.webp") 70% bottom / cover no-repeat;
  }
  .explore-guide { padding-right: 0; }
  .cta-copy { max-width: none; text-align: left; }
  .explore-cta .section-kicker { color: #e9c472; }
  .explore-cta button { width: 100%; margin-top: 22px; }
  .explore-steps { margin-top: 32px; grid-template-columns: 1fr; gap: 15px; }
  .explore-steps li { padding-top: 12px; display: grid; grid-template-columns: 34px 1fr; gap: 10px; }
  .explore-steps strong { margin-top: 0; font-size: 17px; }
  .explore-steps p { margin-top: 4px !important; }

  footer { padding: 28px 16px; flex-direction: column; gap: 12px; }
  footer img { width: 170px; }

  .world-detail { position: fixed; }
  .detail-topbar { height: 58px; padding-inline: 15px; }
  .detail-shell { width: 100%; padding: 24px 0 62px; }
  .detail-header { padding-inline: 16px; }
  .detail-header h1 { font-size: 45px; }
  .detail-header .detail-summary { font-size: 16px; }
  .detail-image { margin-top: 26px; aspect-ratio: 1.85 / 1; border-radius: 0; object-position: center; }
  .detail-grid { margin-top: 0; padding: 0 16px; display: flex; flex-direction: column; gap: 0; }
  .detail-main { display: contents; }
  .detail-section { padding-top: 28px; padding-bottom: 28px; }
  .detail-section + .detail-section { padding-top: 28px; }
  .detail-section h2 { font-size: 25px; }
  .facts-panel { position: static; order: 2; }
  .try-card { margin-top: 28px; padding: 19px; grid-template-columns: 1fr 98px; gap: 15px; }
  .try-card h2 { font-size: 22px; }
  .try-card img { width: 98px; height: 110px; }
  .related-block { padding-bottom: 8px; }
}

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