@font-face {
  font-family: Outfit;
  src: url("/assets/outfit-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}
/* 暖白纸张、朱红印记、石墨文字：上海城市出行手册。 */
:root {
  --paper: #f7f5f0;
  --ink: #2b2d32;
  --accent: #ce4327;
  --bright: #ef5a35;
  --muted: #72716e;
  --line: #d9d5cd;
  --soft: #eeebe4;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --display: Outfit, "PingFang SC", "Microsoft YaHei", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15px var(--sans);
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
  color: inherit;
}
button,
a,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: #f3c1ac;
  color: var(--ink);
}
.shell {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.header {
  height: 100px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
.brand img {
  width: 40px;
  height: 40px;
}
.brand small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 5px;
}
.nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 44px;
  font-size: 12px;
}
.nav a {
  padding-block: 12px;
  border-bottom: 1px solid transparent;
}
.nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 16px 23px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  color: #fffdf7;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #b7371d;
  border-color: #b7371d;
  transform: translateY(-2px);
}
.button-small {
  min-height: 42px;
  padding: 11px 17px;
  gap: 28px;
  font-size: 11px;
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.button-small:hover {
  color: white;
}
.button-small .icon {
  width: 17px;
  height: 17px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.8;
  font-weight: 500;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: center;
  position: relative;
  min-height: 660px;
  padding-block: 64px 67px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy > .eyebrow {
  color: var(--accent);
  letter-spacing: 2px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(66px, 6.3vw, 94px);
  font-weight: 700;
  letter-spacing: -5.5px;
  line-height: 1.22;
  margin: 28px 0 29px;
  white-space: nowrap;
}
.highlight-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.highlight-word svg {
  display: none;
}
.hero-description {
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
  letter-spacing: 0.4px;
  max-width: 365px;
}
.mobile-break {
  display: none;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.text-link {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}
.text-link span {
  font-size: 22px;
}
.text-link:hover {
  color: var(--accent);
}
.hero-note {
  display: flex;
  gap: 23px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 17px;
}
.hero-note span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note .icon {
  width: 12px;
  height: 12px;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  isolation: isolate;
}
.city-art {
  position: relative;
  display: block;
  width: 116%;
  max-width: none;
  height: auto;
  mix-blend-mode: multiply;
  z-index: -1;
}
.visual-orbit {
  position: absolute;
  width: 88%;
  height: 83%;
  border: 1px solid #c7c4bc;
  top: 8%;
  left: 8%;
  z-index: -2;
}
.visual-orbit:before,
.visual-orbit:after {
  content: "+";
  font: 24px Outfit;
  color: #a6a198;
  position: absolute;
  line-height: 1;
  background: var(--paper);
  width: 20px;
  height: 23px;
  text-align: center;
}
.visual-orbit:before {
  top: -13px;
  left: -11px;
}
.visual-orbit:after {
  bottom: -12px;
  right: -11px;
}
.visual-coordinate {
  position: absolute;
  top: 1px;
  left: 8%;
  font: 9px Outfit;
  letter-spacing: 2.2px;
  color: var(--muted);
}
.floating-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffdf8;
  border: 1px solid #c9c5bc;
  padding: 13px 16px;
  box-shadow: 5px 5px 0 #d8d3c540;
}
.floating-label strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.floating-label small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 6px;
}
.label-top {
  top: 39px;
  right: -5px;
  transform: rotate(3deg);
  border-left: 4px solid var(--accent);
}
.label-top > .icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.little-pin {
  color: var(--accent);
  width: 28px;
  height: 30px;
  display: grid;
  place-items: center;
}
.little-pin .icon {
  width: 22px;
  height: 22px;
}
.label-bottom {
  bottom: 32px;
  left: 15px;
  transform: rotate(-5deg);
  min-width: 236px;
  border-style: dashed;
}
.parking-symbol {
  font: 600 30px Outfit;
  width: 45px;
  height: 48px;
  color: var(--paper);
  background: var(--accent);
  display: grid;
  place-items: center;
}
.sparkle {
  font: 40px Outfit;
  color: var(--accent);
  margin-left: 5px;
}
.art-caption {
  position: absolute;
  bottom: -22px;
  left: 8%;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.art-caption span {
  font-size: 8px;
  letter-spacing: 0;
}
.proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 29px 0;
}
.proof-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  line-height: 1.9;
  color: var(--muted);
}
.proof-intro > .icon {
  width: 30px;
  height: 36px;
  color: var(--accent);
}
.proof-intro strong {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.proof {
  border-left: 1px solid var(--line);
  padding-left: 40px;
}
.proof > strong {
  display: block;
  font: 500 43px/1.1 var(--display);
  letter-spacing: -1.3px;
}
.proof strong span {
  font-size: 17px;
  margin-left: 5px;
}
.proof > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 1px;
}
.proof-words > strong {
  font: 550 20px var(--sans);
  letter-spacing: 0;
}
.proof-words > span {
  margin-top: 12px;
}
.section {
  padding-block: 100px;
}
h2 {
  font-size: clamp(32px, 3vw, 43px);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -1.8px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 30px;
}
.section-heading .eyebrow,
.start .eyebrow,
.faq .eyebrow {
  color: var(--accent);
  margin-bottom: 17px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
  margin-bottom: 8px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 265px 238px;
  gap: 17px;
}
.feature {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.feature-copy {
  position: relative;
  padding: 29px;
  z-index: 2;
  pointer-events: none;
}
.index-label {
  font: 11px var(--display);
  letter-spacing: 1.5px;
  color: var(--accent);
}
.feature h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  margin-top: 18px;
}
.feature p {
  font-size: 11px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 13px;
}
.feature-map {
  grid-row: span 2;
  background: #e8ecee;
}
.map-art {
  position: absolute;
  height: 290px;
  width: 108%;
  left: -2%;
  bottom: -18px;
  transform: rotate(-5deg);
  border-top: 1px solid #d0d8dc;
}
.map-art > svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-pin {
  position: absolute;
  background: var(--accent);
  color: white;
  border-radius: 2px;
  font: 600 19px Outfit;
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  box-shadow: 4px 4px 0 #b3392320;
}
.pin-a {
  left: 27%;
  top: 37%;
}
.pin-b {
  left: 66%;
  top: 23%;
}
.pin-c {
  left: 64%;
  top: 77%;
}
.map-destination {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: 43%;
  top: 28%;
  font-size: 10px;
  color: var(--ink);
  background: #fffdf7;
  padding: 8px 11px;
  transform: rotate(5deg);
  border: 1px solid #cbd2d7;
}
.map-destination .icon {
  width: 14px;
  height: 14px;
  color: var(--accent);
}
.demo-note {
  position: absolute;
  left: 34px;
  bottom: 24px;
  color: #6f7980;
  font-size: 9px;
  transform: rotate(5deg);
}
.feature-price {
  background: #f1e5da;
}
.feature-price .feature-copy {
  max-width: 59%;
  padding-right: 0;
}
.receipt {
  position: absolute;
  width: 192px;
  right: -8px;
  top: 52px;
  transform: rotate(9deg);
  background: #fffdf7;
  padding: 19px 17px 24px;
  box-shadow: 0 7px 20px #56311b0c;
  font-size: 10px;
  border-top: 3px solid var(--accent);
}
.receipt:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 13px;
  background:
    linear-gradient(135deg, #fffdf7 25%, transparent 25%) -6px 0/12px 12px,
    linear-gradient(225deg, #fffdf7 25%, transparent 25%) -6px 0/12px 12px;
}
.receipt > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 10px;
}
.receipt strong {
  font-weight: 500;
}
.receipt .receipt-title {
  border-bottom: 1px dashed #d7cfc2;
  color: var(--accent);
  padding-top: 0;
  padding-bottom: 13px;
  margin-bottom: 5px;
  font-size: 10px;
}
.receipt-title .icon {
  width: 15px;
  height: 15px;
}
.receipt .receipt-bottom {
  display: block;
  border-top: 1px dashed #d7cfc2;
  color: var(--muted);
  font-size: 8px;
  padding-top: 13px;
  margin-top: 3px;
}
.feature-favorite {
  background: #eeeae4;
}
.feature-favorite .feature-copy {
  padding-block: 25px;
}
.feature-favorite h3 {
  margin-top: 12px;
}
.favorite-art {
  position: absolute;
  width: 220px;
  right: -56px;
  bottom: 23px;
  transform: rotate(-12deg);
}
.saved-place {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fffdf7;
  border: 1px solid #d9d1c3;
  padding: 17px 14px;
}
.saved-place b {
  font-size: 10px;
  font-weight: 600;
  display: block;
}
.saved-place div > span {
  font-size: 8px;
  color: var(--muted);
  display: block;
  margin-top: 7px;
}
.saved-icon {
  font: 18px Outfit;
  color: var(--accent);
  background: #f9e5db;
  padding: 8px 11px;
}
.star {
  font-size: 21px;
  color: var(--accent);
}
.saved-shadow {
  position: absolute;
  inset: 24px 6px auto;
  height: 56px;
  transform: rotate(-6deg);
  border: 1px solid #d1cbbf;
  background: #f8f5ef;
}
.explore {
  background: #e6ebef;
  border-block: 1px solid #d4dce1;
}
.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 85px;
  align-items: center;
}
.explore-copy .eyebrow {
  color: var(--accent);
  margin-bottom: 18px;
}
.explore-copy h2 span {
  color: var(--accent);
}
.explore-copy > p {
  margin-top: 21px;
  font-size: 12px;
  color: #646d74;
  line-height: 2;
}
.scenario-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 400px;
  margin-top: 31px;
  gap: 10px;
}
.scenario-tabs button {
  min-height: 49px;
  padding: 13px 15px;
  border: 1px solid #bbc5cd;
  border-radius: 2px;
  background: transparent;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  transition:
    color 0.18s,
    background 0.18s;
}
.scenario-tabs button span {
  font: 10px Outfit;
  opacity: 0.6;
}
.scenario-tabs button:hover {
  border-color: var(--accent);
}
.scenario-tabs button[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.explore-panel {
  padding: 26px 28px 20px;
  border: 1px solid #c7c9c8;
  border-top: 4px solid var(--accent);
  background: #fffdf9;
  border-radius: 2px;
  min-height: 497px;
  box-shadow: 8px 8px 0 #bcc6cd30;
}
.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 22px;
}
.panel-eyebrow,
.panel-location {
  display: flex;
  align-items: center;
  gap: 7px;
}
.panel-location .icon {
  width: 13px;
  height: 13px;
}
.explore-panel h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.5px;
  min-height: 29px;
}
.scenario-description {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 8px;
  min-height: 20px;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d7d5cd;
  background: #f7f5f0;
  padding: 5px 6px 5px 12px;
  margin-top: 20px;
}
.search-form > .icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.search-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: none;
  color: var(--ink);
  padding: 9px 0;
  font-size: 11px;
  outline-offset: 2px;
}
.search-form input::placeholder {
  color: #83817b;
}
.search-form button {
  display: grid;
  place-items: center;
  min-width: 35px;
  height: 35px;
  border: 0;
  background: var(--accent);
  color: white;
}
.search-form button .icon {
  width: 17px;
  height: 17px;
}
.result-meta {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.4px;
  margin-top: 18px;
  min-height: 16px;
  overflow-wrap: anywhere;
}
.parking-results {
  min-height: 190px;
}
.parking-row {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 72px;
  padding: 12px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid #e4e0d8;
  text-align: left;
}
.parking-row:hover .row-title {
  color: var(--accent);
}
.row-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 33px;
  height: 36px;
  background: #f2e7dd;
  color: var(--accent);
  font: 500 18px Outfit;
}
.row-info {
  min-width: 0;
  flex: 1;
}
.row-title {
  font-size: 12px;
  font-weight: 550;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.row-meta {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.row-price {
  text-align: right;
  max-width: 112px;
  font: 12px/1.6 var(--display);
  color: var(--accent);
  overflow-wrap: anywhere;
}
.row-price small {
  font: 8px/1.6 var(--sans);
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.results-message {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  padding-block: 25px;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.retry-button {
  padding: 5px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: none;
  margin-left: 8px;
}
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 16px;
}
.panel-footer a {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.panel-footer .icon {
  width: 15px;
  height: 15px;
}
.data-note {
  font-size: 9px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 13px;
}
.start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}
.start-heading > p {
  font-size: 12px;
  line-height: 2;
  color: var(--muted);
  margin-top: 22px;
}
.start-card {
  position: relative;
  padding: 31px 37px 27px;
  border: 1px solid #cbc5bb;
  border-left: 5px solid var(--accent);
  background: #f0ece4;
  box-shadow: 7px 7px 0 #e6e1d7;
}
.start-card:before {
  content: "上海出行";
  position: absolute;
  right: 19px;
  top: -19px;
  transform: rotate(7deg);
  background: var(--paper);
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 7px 9px;
}
.start-card-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}
.start-card-caption .icon {
  width: 22px;
  height: 22px;
}
.name-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fffdf8;
  border: 1px solid #d5cfc4;
  padding: 22px;
  margin: 23px 0 13px;
}
.name-card > .icon {
  color: var(--accent);
  width: 20px;
  height: 20px;
}
.name-card > span:first-of-type {
  font-size: 30px;
  letter-spacing: 5px;
  font-weight: 600;
}
.search-caret {
  width: 1px;
  height: 30px;
  background: var(--accent);
  animation: blink 1.2s steps(1) infinite;
}
.start-card > .button {
  width: 100%;
  font-size: 12px;
  justify-content: space-between;
  min-height: 51px;
}
.start-card > .button .icon {
  width: 18px;
  height: 18px;
}
.start-steps {
  padding: 0;
  margin: 23px 0 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 10px;
  color: var(--muted);
}
.start-steps li {
  display: flex;
  gap: 7px;
  align-items: center;
}
.start-steps li > span {
  font: 12px Outfit;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 2px;
}
.start-card > p {
  text-align: center;
  font-size: 9px;
  color: var(--muted);
  margin-top: 20px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 70px;
  padding-top: 10px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 21px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq-list details:first-child summary {
  padding-top: 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font: 300 24px/1 Outfit;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list p {
  padding: 0 22px 22px 0;
  font-size: 12px;
  line-height: 2;
  color: var(--muted);
}
.footer {
  background: var(--bright);
  color: #2c2725;
  padding-top: 62px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 58px;
}
.footer .eyebrow {
  font-size: 10px;
}
.footer-main p {
  font-size: 66px;
  line-height: 1.3;
  letter-spacing: -3px;
  font-weight: 650;
  margin-top: 19px;
}
.footer-main p span {
  color: #fff6e8;
}
.footer-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  font-size: 12px;
}
.footer-action > .icon {
  height: 95px;
  width: 95px;
  stroke-width: 1;
  border: 1px solid #783823;
  padding: 24px;
  transition: transform 0.2s;
}
.footer-action:hover > .icon {
  transform: translate(4px, -4px);
}
.footer-bottom {
  border-top: 1px solid #943a284b;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  gap: 20px;
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.footer-legal {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font-size: inherit;
}
.footer-legal:hover,
.footer-bottom a:hover {
  text-decoration: underline;
}
.guide-dialog,
.notice-dialog,
.place-dialog {
  width: 475px;
  max-width: calc(100% - 32px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  border: 1px solid #ccc4b6;
  border-top: 4px solid var(--accent);
  border-radius: 3px;
  padding: 38px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 25px 100px #25232138;
}
.guide-dialog::backdrop,
.notice-dialog::backdrop,
.place-dialog::backdrop {
  background: #252321a6;
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  right: 13px;
  top: 13px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d6cfc2;
  background: var(--soft);
}
.dialog-close > .icon {
  width: 17px;
  height: 17px;
}
.dialog-brand {
  margin-bottom: 24px;
}
.guide-dialog .eyebrow {
  color: var(--accent);
  font-size: 10px;
}
.guide-dialog h2 {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: -1px;
  margin-top: 13px;
}
.guide-dialog > p,
.notice-dialog p {
  font-size: 12px;
  line-height: 2;
  color: var(--muted);
  margin-top: 16px;
}
.dialog-name {
  padding: 20px;
  border: 1px solid #d7cfc2;
  background: #fffdf8;
  text-align: center;
  font-size: 27px;
  letter-spacing: 4px;
  margin: 22px 0 13px;
  user-select: all;
}
.guide-dialog > .button {
  width: 100%;
  min-height: 51px;
  font-size: 12px;
}
.guide-dialog small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}
.notice-dialog {
  width: 570px;
  padding-top: 47px;
}
.notice-dialog h2 {
  font-size: 25px;
}
.place-dialog {
  width: 540px;
  padding-top: 46px;
}
.place-dialog .eyebrow {
  font-size: 10px;
  color: var(--accent);
}
.place-dialog h2 {
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 13px;
}
.place-dialog > p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 16px;
}
.detail-price {
  font: 26px/1.5 var(--display);
  color: var(--accent);
  margin-top: 20px;
}
.place-dialog .detail-rules {
  white-space: pre-wrap;
  max-height: 30vh;
  overflow-y: auto;
  padding-right: 5px;
}
.place-dialog .data-note {
  font-size: 10px;
}
.place-dialog > .button {
  width: 100%;
  margin-top: 24px;
  font-size: 12px;
}
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 15px);
  width: max-content;
  max-width: calc(100% - 30px);
  padding: 14px 23px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 9px 35px #0002;
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.no-script {
  padding: 20px;
  background: #f6d2c2;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
}
@keyframes blink {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0;
  }
}
@keyframes intro {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: intro 0.55s ease both;
  }
  .hero-visual {
    animation: intro 0.7s 0.1s ease both;
  }
}
@media (min-width: 1550px) {
  .hero {
    min-height: 720px;
  }
  .hero-visual {
    align-self: center;
    height: 550px;
  }
  .hero h1 {
    font-size: 98px;
  }
}
@media (max-width: 1150px) {
  .shell {
    width: calc(100% - 72px);
  }
  .nav {
    gap: 24px;
    margin-right: 20px;
  }
  .hero {
    min-height: 625px;
    padding-block: 55px 64px;
  }
  .hero h1 {
    font-size: 73px;
    letter-spacing: -4.7px;
  }
  .hero-description {
    max-width: 330px;
    font-size: 12px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions > .button {
    font-size: 11px;
    padding-inline: 17px;
    gap: 12px;
  }
  .label-top {
    right: 0;
    top: 30px;
    padding: 11px 12px;
  }
  .label-top > .icon {
    display: none;
  }
  .floating-label strong {
    font-size: 10px;
  }
  .floating-label small {
    font-size: 8px;
  }
  .label-bottom {
    min-width: 211px;
    left: 0;
    bottom: 37px;
  }
  .parking-symbol {
    width: 39px;
    height: 43px;
    font-size: 27px;
  }
  .sparkle {
    font-size: 33px;
  }
  .proof {
    padding-left: 28px;
  }
  .proof-words > strong {
    font-size: 17px;
  }
  .feature h3 {
    font-size: 22px;
  }
  .feature-copy {
    padding: 26px;
  }
  .feature-price .feature-copy {
    max-width: 67%;
  }
  .receipt {
    width: 177px;
    right: -36px;
    top: 69px;
  }
  .favorite-art {
    right: -81px;
  }
  .explore-grid,
  .start {
    gap: 50px;
  }
  .explore-panel {
    padding-inline: 23px;
  }
  .row-price {
    max-width: 92px;
    font-size: 11px;
  }
  .row-title {
    font-size: 11px;
  }
  .start-card {
    padding-inline: 25px;
  }
  .start-steps {
    font-size: 9px;
  }
}
@media (max-width: 850px) {
  .shell {
    width: calc(100% - 48px);
  }
  .header {
    height: 82px;
  }
  .brand {
    font-size: 18px;
    gap: 10px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .nav {
    gap: 18px;
    margin-right: 0;
    font-size: 11px;
  }
  .button-small {
    padding: 10px 12px;
    gap: 12px;
    font-size: 10px;
  }
  .hero {
    min-height: 540px;
    padding-block: 46px 53px;
  }
  .hero h1 {
    font-size: 56px;
    letter-spacing: -3.5px;
    margin-block: 23px;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-description {
    font-size: 11px;
    max-width: 280px;
  }
  .hero-actions > .button {
    font-size: 10px;
    min-height: 49px;
    padding-inline: 14px;
    gap: 8px;
  }
  .hero-actions > .button .icon {
    width: 17px;
    height: 17px;
  }
  .hero-actions .text-link {
    display: none;
  }
  .hero-note {
    font-size: 8px;
    gap: 14px;
  }
  .city-art {
    width: 112%;
  }
  .visual-orbit {
    height: 74%;
    top: 12%;
  }
  .visual-coordinate {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .label-top {
    top: 28px;
    gap: 7px;
  }
  .little-pin {
    width: 22px;
  }
  .label-bottom {
    bottom: 28px;
    min-width: 190px;
    padding: 11px 12px;
  }
  .floating-label strong {
    font-size: 9px;
  }
  .art-caption {
    bottom: -13px;
    font-size: 8px;
    left: 3%;
  }
  .art-caption span {
    display: none;
  }
  .proof-strip {
    gap: 16px;
    padding-block: 26px;
  }
  .proof {
    padding-left: 18px;
  }
  .proof > strong {
    font-size: 35px;
  }
  .proof-words > strong {
    font-size: 14px;
  }
  .proof > span {
    font-size: 9px;
    letter-spacing: 0;
  }
  .proof-intro {
    font-size: 9px;
    gap: 8px;
  }
  .proof-intro > .icon {
    width: 25px;
  }
  .proof-intro strong {
    font-size: 11px;
  }
  .section {
    padding-block: 72px;
  }
  h2 {
    font-size: 32px;
  }
  .section-heading > p {
    font-size: 11px;
  }
  .feature-grid {
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: 255px 234px;
    gap: 12px;
  }
  .feature-copy {
    padding: 23px;
  }
  .feature h3 {
    font-size: 20px;
  }
  .feature p {
    font-size: 10px;
  }
  .feature-price .feature-copy {
    max-width: 86%;
  }
  .receipt {
    right: -72px;
    width: 160px;
    top: 77px;
  }
  .favorite-art {
    right: -124px;
  }
  .explore-grid {
    gap: 32px;
    grid-template-columns: 0.87fr 1fr;
  }
  .explore-copy h2 {
    font-size: 30px;
  }
  .explore-copy > p {
    font-size: 11px;
  }
  .scenario-tabs {
    gap: 8px;
  }
  .scenario-tabs button {
    font-size: 10px;
    padding: 12px;
    gap: 8px;
  }
  .explore-panel {
    padding: 23px 20px 18px;
  }
  .explore-panel h3 {
    font-size: 16px;
  }
  .scenario-description {
    font-size: 10px;
  }
  .row-price {
    max-width: 76px;
    font-size: 10px;
  }
  .parking-row {
    gap: 8px;
  }
  .row-icon {
    width: 28px;
    height: 32px;
    font-size: 16px;
  }
  .row-title {
    font-size: 10px;
  }
  .row-meta {
    font-size: 8px;
  }
  .panel-footer {
    font-size: 9px;
  }
  .start {
    gap: 33px;
  }
  .start-card {
    padding: 27px 20px 24px;
  }
  .name-card {
    padding: 18px;
    gap: 10px;
  }
  .name-card > span:first-of-type {
    font-size: 25px;
    letter-spacing: 3px;
  }
  .start-steps {
    font-size: 8px;
    gap: 5px;
  }
  .start-steps li {
    gap: 4px;
  }
  .start-card > p {
    font-size: 8px;
  }
  .faq {
    padding-top: 0;
    gap: 32px;
    grid-template-columns: 1fr 1.2fr;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .faq-list p {
    font-size: 11px;
  }
  .footer-main p {
    font-size: 53px;
  }
  .footer-action > .icon {
    width: 77px;
    height: 77px;
    padding: 19px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 24px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .header {
    height: 76px;
  }
  .header-inner {
    gap: 10px;
  }
  .nav {
    display: none;
  }
  .brand {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .button-small {
    min-height: 36px;
    padding: 9px 11px;
    gap: 9px;
  }
  .button-small .icon {
    width: 15px;
    height: 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
    padding-top: 39px;
    padding-bottom: 36px;
    overflow: clip;
    overflow-clip-margin: 18px;
  }
  .hero-copy {
    padding-left: 1px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  .hero h1 {
    font-size: clamp(59px, 14.4vw, 80px);
    line-height: 1.2;
    letter-spacing: -3.8px;
    margin: 23px 0 23px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
    max-width: 100%;
    letter-spacing: 0.1px;
  }
  .hero-description br:first-child {
    display: none;
  }
  .mobile-break {
    display: block;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 20px;
  }
  .hero-actions > .button {
    font-size: 11px;
    min-height: 49px;
    gap: 11px;
    padding-inline: 17px;
  }
  .hero-actions .text-link {
    display: flex;
    font-size: 11px;
    gap: 10px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 15px;
    gap: 21px;
  }
  .hero-visual {
    height: 375px;
    margin-top: 38px;
  }
  .city-art {
    width: 111%;
    max-width: 530px;
  }
  .visual-orbit {
    height: 81%;
    width: 88%;
    top: 8%;
    left: 6%;
  }
  .visual-coordinate {
    top: -4px;
    left: 6%;
    font-size: 8px;
  }
  .label-top {
    top: 34px;
    right: 0;
    padding: 11px 12px;
    gap: 8px;
    transform: rotate(3deg);
  }
  .label-top strong {
    font-size: 10px;
  }
  .label-top small {
    font-size: 8px;
  }
  .little-pin {
    width: 25px;
  }
  .little-pin .icon {
    width: 19px;
    height: 19px;
  }
  .label-bottom {
    left: 5px;
    bottom: 24px;
    min-width: 215px;
    padding: 11px 13px;
  }
  .floating-label strong {
    font-size: 10px;
  }
  .floating-label small {
    font-size: 9px;
  }
  .parking-symbol {
    width: 38px;
    height: 42px;
    font-size: 27px;
  }
  .sparkle {
    font-size: 33px;
  }
  .art-caption {
    bottom: -5px;
    left: 0;
    font-size: 8px;
    letter-spacing: 0.2px;
  }
  .art-caption span {
    display: block;
    font-size: 7px;
  }
  .proof-strip {
    grid-template-columns: 1fr 1fr;
    gap: 22px 0;
    padding-block: 25px;
  }
  .proof {
    padding-left: 0;
    border-left: 0;
  }
  .proof:nth-child(3) {
    padding-left: 24px;
    border-left: 1px solid var(--line);
  }
  .proof > strong {
    font-size: 40px;
  }
  .proof strong span {
    font-size: 16px;
  }
  .proof > span {
    font-size: 10px;
    margin-top: 6px;
  }
  .proof-intro {
    order: 3;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 9px;
  }
  .proof-intro strong {
    font-size: 11px;
  }
  .proof-intro > .icon {
    width: 26px;
    height: 33px;
  }
  .proof-words {
    order: 4;
    align-self: stretch;
    border-top: 1px solid var(--line);
    padding-top: 23px;
    padding-left: 24px;
  }
  .proof-words > strong {
    font-size: 14px;
  }
  .proof-words > span {
    font-size: 9px;
    margin-top: 8px;
  }
  .section {
    padding-block: 61px;
  }
  h2 {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: -1.3px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading .eyebrow,
  .start .eyebrow,
  .faq .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
  }
  .section-heading > p {
    margin: 17px 0 0;
    font-size: 11px;
    line-height: 1.9;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 412px 263px 246px;
    gap: 14px;
  }
  .feature-map {
    grid-row: auto;
  }
  .feature-copy {
    padding: 25px;
  }
  .feature h3 {
    font-size: 23px;
    margin-top: 15px;
  }
  .feature p {
    font-size: 11px;
  }
  .index-label {
    font-size: 10px;
  }
  .map-art {
    width: 116%;
    left: -6%;
    height: 215px;
    bottom: -13px;
  }
  .map-pin {
    width: 32px;
    height: 35px;
    font-size: 16px;
  }
  .map-destination {
    font-size: 8px;
    padding: 7px 9px;
    left: 43%;
    top: 26%;
  }
  .map-destination .icon {
    width: 12px;
    height: 12px;
  }
  .demo-note {
    left: 42px;
    bottom: 24px;
    font-size: 8px;
  }
  .feature-price .feature-copy {
    max-width: 68%;
  }
  .receipt {
    width: 174px;
    right: -46px;
    top: 65px;
  }
  .receipt > div {
    font-size: 9px;
  }
  .receipt .receipt-title {
    font-size: 9px;
  }
  .feature-favorite .feature-copy {
    padding: 25px;
  }
  .favorite-art {
    right: -55px;
    bottom: 19px;
    width: 195px;
  }
  .saved-place {
    padding: 14px 11px;
    gap: 8px;
  }
  .saved-place b {
    font-size: 9px;
  }
  .saved-place div > span {
    font-size: 7px;
  }
  .saved-icon {
    padding: 7px 10px;
    font-size: 16px;
  }
  .star {
    font-size: 18px;
  }
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .explore-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
    margin-bottom: 14px;
  }
  .explore-copy h2 {
    font-size: 32px;
  }
  .explore-copy > p {
    font-size: 11px;
    line-height: 1.9;
    margin-top: 16px;
  }
  .scenario-tabs {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    max-width: 100%;
    margin-top: 24px;
  }
  .scenario-tabs button {
    padding: 11px 4px;
    min-height: 42px;
    justify-content: center;
    font-size: 10px;
  }
  .scenario-tabs button span {
    display: none;
  }
  .explore-panel {
    min-height: 475px;
    padding: 24px 20px 20px;
    box-shadow: 5px 5px 0 #bcc6cd40;
  }
  .panel-top {
    font-size: 9px;
    margin-bottom: 21px;
  }
  .explore-panel h3 {
    font-size: 18px;
    letter-spacing: -0.6px;
  }
  .scenario-description {
    font-size: 10px;
  }
  .search-form {
    margin-top: 17px;
  }
  .row-title {
    font-size: 11px;
  }
  .row-meta {
    font-size: 9px;
  }
  .row-price {
    max-width: 80px;
    font-size: 11px;
  }
  .row-icon {
    width: 32px;
    height: 36px;
    font-size: 18px;
  }
  .parking-row {
    min-height: 71px;
    gap: 10px;
  }
  .panel-footer {
    font-size: 9px;
  }
  .data-note {
    font-size: 8px;
  }
  .start {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .start-heading > p {
    font-size: 11px;
    margin-top: 17px;
  }
  .start-card {
    margin-inline: 1px 5px;
    padding: 27px 23px 23px;
  }
  .start-card:before {
    right: 14px;
    font-size: 9px;
    top: -16px;
  }
  .start-card-caption {
    font-size: 11px;
  }
  .name-card {
    padding: 20px;
    margin-top: 21px;
    gap: 12px;
  }
  .name-card > span:first-of-type {
    font-size: 28px;
    letter-spacing: 5px;
  }
  .start-card > .button {
    font-size: 11px;
    min-height: 50px;
  }
  .start-steps {
    font-size: 9px;
    margin-top: 23px;
  }
  .start-card > p {
    font-size: 8px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 0;
    padding-bottom: 63px;
  }
  .faq-list summary {
    font-size: 12px;
    line-height: 1.6;
    padding-block: 21px;
  }
  .faq-list p {
    font-size: 11px;
    padding-right: 12px;
  }
  .footer {
    padding-top: 43px;
  }
  .footer-main {
    align-items: flex-end;
    padding-bottom: 37px;
    gap: 10px;
  }
  .footer-main .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .footer-main p {
    font-size: 39px;
    line-height: 1.35;
    letter-spacing: -1.6px;
    margin-top: 19px;
  }
  .footer-action > .icon {
    height: 58px;
    width: 58px;
    padding: 14px;
  }
  .footer-action > span {
    display: none;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 9px;
    gap: 15px;
    padding-block: 22px;
  }
  .footer-bottom > span:nth-child(2) {
    text-align: right;
  }
  .footer-bottom > div {
    grid-column: 1/-1;
    justify-content: space-between;
    font-size: 9px;
  }
  .guide-dialog,
  .notice-dialog,
  .place-dialog {
    padding: 32px 24px;
  }
  .guide-dialog h2 {
    font-size: 28px;
  }
  .guide-dialog > p {
    font-size: 11px;
  }
  .guide-dialog > p br {
    display: none;
  }
  .guide-dialog small {
    font-size: 9px;
  }
  .dialog-name {
    font-size: 25px;
  }
  .notice-dialog,
  .place-dialog {
    padding-top: 48px;
  }
  .place-dialog h2 {
    font-size: 23px;
  }
  .toast {
    font-size: 11px;
    bottom: 22px;
    padding: 12px 17px;
  }
}
@media (max-width: 370px) {
  .shell {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-description {
    font-size: 11px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions > .button {
    font-size: 10px;
    padding-inline: 12px;
    gap: 8px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-visual {
    height: 325px;
  }
  .receipt {
    right: -72px;
  }
  .favorite-art {
    right: -83px;
  }
  .feature-price .feature-copy {
    max-width: 78%;
  }
  .name-card > span:first-of-type {
    font-size: 23px;
    letter-spacing: 4px;
  }
  .start-card {
    padding-inline: 19px;
  }
  .start-steps {
    font-size: 8px;
  }
  .row-price {
    max-width: 70px;
  }
  .footer-main p {
    font-size: 34px;
  }
  .footer-action > .icon {
    width: 49px;
    height: 49px;
    padding: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
