:root {
  --sky: #cfe0f2;
  --sky-2: #e8f0f8;
  --cream: #f9f6ef;
  --blue: #3b6ea8;
  --ink: #1c1c1e;
  --mute: #6b7280;
  --char: #171717;
  --white: #ffffff;
  --line: rgba(28, 28, 30, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --w: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html.lenis, html.lenis body { scroll-behavior: auto !important; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
strong { font-weight: 600; color: var(--ink); }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--char);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}
.skip:focus { top: 12px; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.top {
  position: fixed;
  top: 18px;
  left: 28px;
  right: 28px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  pointer-events: none;
}
.top > * { pointer-events: auto; }
.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.25);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.capsule {
  display: flex;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.28);
}
.capsule a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.capsule a.is-on {
  background: #fff;
  color: var(--ink);
}
.tools { display: flex; justify-content: flex-end; gap: 8px; }
.orb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}
.orb svg { width: 16px; height: 16px; }
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(18px);
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: #fff;
}
.burger span:first-child { top: 15px; }
.burger span:last-child { top: 23px; }
.sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(249,246,239,0.97);
  padding: 92px 28px 32px;
  flex-direction: column;
}
.sheet a {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sheet-cta {
  margin-top: 20px;
  text-align: center;
  background: var(--char);
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px;
  font-size: 15px !important;
  padding: 14px !important;
}
.sheet.open { display: flex; }
.top.dark .logo { color: var(--ink); text-shadow: none; }
.top.dark .capsule {
  background: rgba(255,255,255,0.78);
  border-color: var(--line);
}
.top.dark .capsule a { color: var(--ink); }
.top.dark .capsule a.is-on { background: var(--char); color: #fff; }
.top.dark .orb, .top.dark .burger {
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  border-color: var(--line);
}
.top.dark .burger span { background: var(--ink); }

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--sky);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(10, 18, 32, 0.52) 0%,
      rgba(10, 18, 32, 0.28) 42%,
      rgba(10, 18, 32, 0.14) 68%,
      rgba(255, 255, 255, 0.08) 100%
    ),
    linear-gradient(
      90deg,
      rgba(15, 20, 30, 0.3) 0%,
      transparent 18%,
      transparent 82%,
      rgba(15, 20, 30, 0.3) 100%
    );
}
.hero > img {
  position: absolute;
  inset: 0;
  object-position: center 40%;
  filter: brightness(0.88) contrast(1.04);
  will-change: transform;
}
.sky {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.38), transparent);
}
.fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--white));
}
.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 132px 24px 0;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
}
.hero-copy h1 {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}
.hero-copy h1 .word {
  display: inline-block;
  margin-right: 0.28em;
}
.hero-copy h1 .word:last-child {
  margin-right: 0;
}
h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero-copy p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.94);
  max-width: 520px;
  margin: 0 auto;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.badges span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.28);
}
.hero-price {
  margin-top: 22px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.hero-price em {
  font-style: normal;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.92;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: tick 32s linear infinite;
}
.ticker span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.ticker span::after {
  content: "·";
  margin-left: 36px;
  color: var(--blue);
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.listing {
  max-width: var(--w);
  margin: 64px auto 0;
  padding: 0 24px;
}
.listing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
  text-align: left;
}
.kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.listing-top h2 { margin-bottom: 6px; text-align: left; }
.listing-top p { color: var(--mute); margin: 0; }
.listing-price {
  background: var(--sky-2);
  border-radius: 20px;
  padding: 16px 22px;
  white-space: nowrap;
}
.listing-price span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}
.listing-price strong {
  font-size: 36px;
  letter-spacing: -0.05em;
  color: var(--blue);
}
.listing-price em {
  font-style: normal;
  color: var(--mute);
  font-size: 14px;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}
.form .full { grid-column: 1 / -1; }
.form input, .form textarea {
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
  background: var(--sky-2);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.form input:focus, .form textarea:focus {
  border-color: var(--blue);
  background: #fff;
}
.full-btn { grid-column: 1 / -1; justify-content: center; margin-top: 6px; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  width: fit-content;
  max-width: calc(100vw - 40px);
  margin-inline: auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 12px 12px 22px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(23,23,23,0.12);
  will-change: transform, opacity;
}
.dock > div {
  min-width: 0;
}
.dock small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}
.dock strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}
.dock .btn-dark {
  flex-shrink: 0;
  white-space: nowrap;
}
.dock-btn-short { display: none; }

.tiles img, .mosaic button, .banner, .wide img {
  transition: transform 0.7s var(--ease);
}
.tiles article {
  transition: transform 0.45s var(--ease);
}
.tiles article:hover { transform: translateY(-8px); }
.tiles article:hover img { transform: scale(1.05); }
.banner:hover { transform: scale(1.015); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
}

.pin {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
}
.pin i {
  display: block;
  width: 14px;
  height: 14px;
  margin: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.28);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
  100% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
}
.pin span {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--char);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.pin.on span, .pin:hover span { opacity: 1; }

.stage {
  max-width: 900px;
  margin: 0 auto;
  padding: 88px 24px 0;
  text-align: center;
}
.stage.wide {
  max-width: var(--w);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}
h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.12;
  margin-bottom: 18px;
}
.chip-img {
  display: inline-block;
  width: 92px;
  height: 38px;
  object-fit: cover;
  border-radius: 999px;
  vertical-align: middle;
  margin: 0 6px 6px;
}
.stage > p, .copy p, .why p {
  color: var(--mute);
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 17px;
}
.wide .copy p { margin-left: 0; }
.actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.wide .actions { justify-content: flex-start; margin-bottom: 0; }
.btn-dark, .btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--char);
  color: #fff;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.btn-dark svg, .btn-light svg { width: 14px; height: 14px; }
.btn-dark:hover { transform: translateY(-1px); background: #000; }
.btn-light { background: #fff; color: var(--char); }
.more {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(28,28,30,0.25);
  padding-bottom: 2px;
}
.banner {
  width: 100%;
  height: min(56vh, 520px);
  border-radius: 28px;
  margin-top: 8px;
}
.wide img, .wide iframe {
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 28px;
}

.stats {
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--sky-2);
  border-radius: 24px;
  overflow: hidden;
}
.stats div {
  text-align: center;
  padding: 28px 8px;
  border-top: 0;
  border-bottom: 0;
}
.stats div:not(:last-child) { border-right: 1px solid rgba(59,110,168,0.14); }
.stats b {
  display: block;
  font-size: 32px;
  letter-spacing: -0.05em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.stats span { font-size: 13px; color: var(--mute); font-weight: 500; }

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  text-align: left;
  margin-top: 8px;
}
.tiles article { min-width: 0; }
.tiles img {
  height: 240px;
  border-radius: 24px;
  margin-bottom: 14px;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.tiles p { color: var(--mute); font-size: 14px; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.mosaic button {
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
}
.mosaic button:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.mosaic img { transition: transform 0.6s var(--ease); }
.mosaic button:hover img { transform: scale(1.04); }

.lb {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(23,23,23,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.lb[hidden] { display: none; }
.lb img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 16px;
}
.lb button {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.x { top: 16px; right: 16px; }
.p { left: 16px; top: 50%; transform: translateY(-50%); }
.n { right: 16px; top: 50%; transform: translateY(-50%); }

.list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 14px;
}
.list li:last-child { border-bottom: 1px solid var(--line); }
.list strong { display: block; font-size: 16px; margin-bottom: 2px; }

#rates.stage { max-width: 1280px; }
.rates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: left;
  align-items: stretch;
}
.rates article {
  background: var(--sky-2);
  border-radius: 28px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow 0.4s var(--ease);
}
.rates article:hover {
  box-shadow: 0 16px 40px rgba(59, 110, 168, 0.18);
}
.rates article ul { flex: 1; }
.rates .btn-dark, .rates .btn-light {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.rates article > p:first-child {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.rates article > p:nth-child(2) {
  font-size: 13px;
  color: var(--mute);
  margin: 4px 0 14px;
}
.rates h3 {
  font-size: 40px;
  letter-spacing: -0.06em;
  color: var(--blue);
  margin-bottom: 14px;
  line-height: 1.1;
}
.rates small {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mute);
  margin-left: 6px;
  vertical-align: baseline;
}
.rates li {
  padding: 6px 0 6px 14px;
  position: relative;
  color: var(--mute);
  font-size: 13px;
}
.rates li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.rates article.hot {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 20px 44px rgba(59, 110, 168, 0.38);
}
.rates article.hot > p,
.rates article.hot h3,
.rates article.hot small,
.rates article.hot li { color: #fff; }
.rates article.hot li::before { background: #fff; }
.rates article.hot > p:first-child {
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
  background: var(--cream);
  color: var(--blue);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.rates article.hot > p:nth-child(2) {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 0;
}
.rates article.hot > p:nth-child(3) { color: rgba(255,255,255,0.78); }
.rates article.hot h3 { color: #fff; }
.rates article.hot small { color: rgba(255,255,255,0.95); }
.rates article.hot .btn-light {
  background: var(--cream);
  color: var(--blue);
}

.touch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.touch a {
  background: var(--sky-2);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.touch span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.touch b { font-size: 14px; font-weight: 600; }

.dots { margin: 0 0 24px; }
.dots li {
  padding: 8px 0 8px 14px;
  position: relative;
  text-align: left;
}
.dots li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.faq { display: grid; gap: 10px; text-align: left; max-width: 720px; margin: 0 auto; }
.faq details {
  background: var(--sky-2);
  border-radius: 18px;
}
.faq summary {
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 400; color: var(--mute); }
.faq details[open] summary::after { content: "–"; }
.faq p { padding: 0 18px 16px; margin: 0; text-align: left; }
.faq a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.why {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: left;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.why h3 { margin-bottom: 10px; }

.end {
  max-width: 720px;
  margin: 88px auto 0;
  padding: 0 24px 96px;
  text-align: center;
}
.end p { color: var(--mute); margin-bottom: 24px; }

footer {
  padding: 40px 24px 28px;
  border-top: 1px solid var(--line);
}
.foot {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 24px;
}
.foot strong { font-size: 16px; }
.foot p, .foot a { display: block; padding: 3px 0; font-size: 14px; color: var(--mute); }
.foot span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.foot a:hover { color: var(--ink); }
.legal {
  max-width: var(--w);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--mute);
}

@media (max-width: 960px) {
  .tiles, .touch, .foot, .form { grid-template-columns: 1fr 1fr; }
  .stage.wide { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic button:nth-child(1) { grid-column: span 2; }
  .wide img, .wide iframe { height: 360px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .listing-top { flex-direction: column; align-items: flex-start; }
  .rates {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .rates article {
    min-width: 240px;
    flex: 0 0 72%;
    scroll-snap-align: start;
  }
  .rates article.hot { transform: none; }
}
@media (max-width: 780px) {
  .capsule { display: none; }
  .orb { display: none; }
  .burger { display: block; }
  .top { grid-template-columns: 1fr auto; left: 16px; right: 16px; }
  .top.hide-logo .logo {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    position: absolute;
    width: 0;
    overflow: hidden;
  }
  .top.hide-logo {
    grid-template-columns: auto;
    justify-content: flex-end;
  }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats div { padding: 16px 4px; }
  .stats b { font-size: 24px; }
  .stats span { font-size: 11px; line-height: 1.25; }
  .stats div:nth-child(3n) { border-right: 0; }
  .stats div:nth-child(n+4) { border-top: 1px solid rgba(59,110,168,0.14); }
  .tiles, .touch, .foot, .form { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 110px; }
  .pin { display: none; }
  .dock {
    gap: 14px;
    padding: 10px 10px 10px 16px;
    max-width: calc(100vw - 24px);
  }
  .dock small { font-size: 10px; letter-spacing: 0.06em; }
  .dock strong { font-size: 13px; }
  .dock .btn-dark {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
  .dock-btn-long { display: none; }
  .dock-btn-short { display: inline; }
  .listing-price { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero > img, .pin i, .ticker-track { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
}
