:root {
  --forest: #1a2332;
  --forest-2: #2a3548;
  --mint: #eef1f6;
  --ink: #141820;
  --muted: #667085;
  --line: #d5dae3;
  --paper: #f1f0ec;
  --white: #ffffff;
  --amber: #d4a84b;
  --amber-2: #b8892f;
  --amber-soft: rgba(212, 168, 75, .18);
  --champagne: #f3e6c8;
  --display: "Syne", "Segoe UI", sans-serif;
  --body: "DM Sans", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --dock-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
  min-height: 100dvh;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
[hidden] { display: none !important; }

/* —— Splash (~3s) —— */
.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(120% 80% at 50% 0%, #3a465c 0%, var(--forest) 55%, #0d1118 100%);
  color: #f7f4ee;
  transition: opacity .45s ease, visibility .45s ease;
}
.splash.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner {
  width: min(360px, 100%);
  text-align: center;
  animation: splashIn .55s ease both;
}
.splash-mark {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, #f3e6c8, var(--amber) 48%, var(--amber-2));
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
  animation: pulse 1.2s ease-in-out infinite;
}
.splash-brand {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.splash-tag {
  color: rgba(242, 250, 246, .78);
  font-size: .92rem;
  margin-bottom: 22px;
}
.splash-board {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 14px 16px;
  text-align: left;
  margin-bottom: 18px;
}
.splash-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.splash-row:last-child { border-bottom: 0; }
.splash-row span { color: rgba(242, 250, 246, .7); }
.splash-row strong {
  font-family: var(--display);
  font-weight: 600;
  color: var(--champagne);
  font-variant-numeric: tabular-nums;
}
.splash-bar {
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
  margin-bottom: 10px;
}
.splash-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #f0d48a, var(--amber));
  transition: width .12s linear;
}
.splash-hint {
  font-size: .78rem;
  color: rgba(242, 250, 246, .62);
}

/* —— App shell —— */
.app { padding-bottom: calc(var(--dock-h) + var(--safe-b) + 8px); }

.promo {
  text-align: center;
  padding: 9px 16px;
  background: linear-gradient(90deg, #141820, #1a2332 45%, #2a3548);
  color: #f7f4ee;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(244, 247, 245, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.topbar.is-solid { border-bottom-color: var(--line); }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .92rem;
}
.logo-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(145deg, #f3e6c8, var(--amber));
}
.topbar-right { display: flex; align-items: center; gap: 8px; }
.lang-wrap select {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .82rem;
  max-width: 118px;
}
.pill-cta {
  background: var(--forest);
  color: #f7f4ee;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 0;
  font-weight: 650;
  font-family: var(--display);
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-primary {
  background: linear-gradient(180deg, #3a465c, var(--forest));
  color: #f7f4ee;
  box-shadow: 0 10px 24px rgba(20, 24, 32, .28);
}
.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: #f7f4ee;
  border: 1px solid rgba(244, 255, 249, .45);
  backdrop-filter: blur(8px);
}
.btn-block { width: 100%; }

/* Hero — mobile full-bleed */
.hero {
  position: relative;
  min-height: min(78dvh, 620px);
  display: flex;
  align-items: flex-end;
  color: #f7f4ee;
  overflow: hidden;
}
.hero-bg, .hero-shade { position: absolute; inset: 0; }
.hero-bg img {
  transform: scale(1.06);
  animation: heroDrift 14s ease-in-out infinite alternate;
}
.hero-shade {
  background:
    linear-gradient(180deg, rgba(13, 17, 24, .28) 0%, rgba(13, 17, 24, .58) 45%, rgba(13, 17, 24, .94) 100%);
}
.hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px 16px 32px;
  animation: riseIn .75s ease both;
}
.brand-lockup {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .28em;
  font-size: clamp(2.1rem, 11vw, 3rem);
  line-height: 1;
  margin-bottom: 12px;
  color: var(--champagne);
  text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(1.4rem, 5.8vw, 1.85rem);
  line-height: 1.18;
  max-width: 16ch;
  margin-bottom: 10px;
}
.hero-lead {
  color: rgba(244, 255, 249, .86);
  font-size: .98rem;
  max-width: 36ch;
  margin-bottom: 18px;
}
.hero-actions {
  display: grid;
  gap: 10px;
}
.hero .btn { width: 100%; }

.trust {
  padding: 0 12px;
  margin-top: -16px;
  position: relative;
  z-index: 3;
}
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(18, 32, 24, .1);
  animation: riseIn .7s .12s ease both;
}
.trust-row article {
  text-align: center;
  padding: 8px 4px;
}
.trust-n {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest);
  letter-spacing: -.01em;
}
.trust-t {
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.3;
}

/* Price / karat board — peer-style estimator */
.price-card {
  margin: 16px 12px 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(18, 32, 24, .08);
}
.price-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.eyebrow {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--amber-2);
  margin-bottom: 4px;
}
.price-card h2, .block h2, .promise-strip h2 {
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.2;
}
.live-dot {
  flex: none;
  font-size: .72rem;
  font-weight: 700;
  color: var(--forest-2);
  background: var(--mint);
  border-radius: 999px;
  padding: 6px 10px;
}
.live-dot::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4a84b;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(212, 168, 75, .55);
  animation: ping 1.6s ease infinite;
}
.price-lead { color: var(--muted); font-size: .9rem; margin: 12px 0 14px; }

.spot-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(160deg, #2a3548, #141820);
  color: #f7f4ee;
}
.spot-main { display: grid; gap: 2px; }
.spot-main span {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(242, 250, 246, .7);
  font-weight: 600;
}
.spot-main strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 5vw, 1.55rem);
  font-variant-numeric: tabular-nums;
  color: var(--champagne);
  line-height: 1.15;
}
.spot-main em {
  font-style: normal;
  font-size: .75rem;
  color: rgba(242, 250, 246, .65);
}
.spot-meta {
  grid-column: 1 / -1;
  font-size: .75rem;
  color: rgba(242, 250, 246, .68);
  margin-top: 2px;
}

.karat-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.karat-chips button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .86rem;
  cursor: pointer;
}
.karat-chips button.is-on {
  background: var(--forest);
  border-color: var(--forest);
  color: #f7f4ee;
}

.weight-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--muted);
}
.weight-field input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
}

.payout-hero {
  margin-bottom: 12px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, #2a3548, #141820);
  color: #f7f4ee;
  text-align: center;
}
.payout-hero p {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(242, 250, 246, .72);
  font-weight: 600;
}
.payout-hero strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 7vw, 2.3rem);
  color: var(--champagne);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.payout-hero small {
  display: block;
  margin-top: 6px;
  font-size: .82rem;
  color: rgba(242, 250, 246, .7);
}
.rates-cta { margin-top: 14px; }

.trade-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.trade-cell {
  border-radius: 14px;
  padding: 14px 12px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
}
.trade-cell.bid {
  background: linear-gradient(180deg, #f4f1ea, #ebe4d6);
  border-color: #d9cfb8;
}
.trade-cell.ask {
  background: linear-gradient(180deg, #fff8ea, #f7efd8);
  border-color: #e2d0a4;
}
.trade-top {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trade-cell span {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
}
.trade-cell em {
  font-style: normal;
  font-size: .72rem;
  color: var(--ink);
  font-weight: 600;
}
.trade-cell strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 5vw, 1.7rem);
  font-variant-numeric: tabular-nums;
  color: var(--forest);
  line-height: 1.15;
}
.trade-cell.bid strong { color: #1a2332; }
.trade-cell.ask strong { color: #8a6414; }
.trade-cell small {
  font-size: .72rem;
  color: var(--muted);
}
.spread-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px dashed var(--line);
  font-size: .86rem;
}
.spread-row strong {
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  color: var(--forest);
}
.micro { font-size: .82rem; color: var(--ink); }
.micro.muted, .muted { color: var(--muted); }

.block {
  padding: 28px 16px 8px;
}
.section-lead { color: var(--muted); margin: 8px 0 16px; font-size: .92rem; }

.steps-mobile { margin-top: 14px; display: grid; gap: 10px; }
.steps-mobile li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}
.steps-mobile span {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--amber-soft);
  color: var(--amber-2);
  font-family: var(--display);
  font-weight: 700;
}
.steps-mobile h3 { font-size: 1rem; margin-bottom: 4px; }
.steps-mobile p { color: var(--muted); font-size: .9rem; }

.buy-scroll {
  margin-top: 14px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78%, 280px);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.buy-scroll article {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.buy-art {
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(circle at 30% 30%, rgba(243, 230, 200, .45), transparent 50%),
    linear-gradient(145deg, #141820, #2a3548 55%, #b8892f);
}
.buy-art--jewels {
  background:
    radial-gradient(circle at 70% 40%, rgba(212, 168, 75, .5), transparent 45%),
    linear-gradient(160deg, #1a2332, #3a465c 50%, #d4a84b);
}
.buy-art--scrap {
  background:
    radial-gradient(circle at 40% 60%, rgba(184, 137, 47, .4), transparent 50%),
    linear-gradient(150deg, #0d1118, #1a2332 60%, #8a6414);
}
.buy-art img { width: 100%; height: 100%; object-fit: cover; }
.buy-scroll h3, .buy-scroll p { padding: 0 12px; }
.buy-scroll h3 { margin-top: 12px; font-size: 1.02rem; font-family: var(--display); }
.buy-scroll p { color: var(--muted); font-size: .88rem; padding-bottom: 14px; margin-top: 4px; }

.market-list { margin-top: 12px; display: grid; gap: 8px; }
.market-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}
.market-item .code {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--forest);
  font-family: var(--display);
  font-weight: 700;
  font-size: .82rem;
}
.market-item h3 { font-size: .98rem; }
.market-item p { color: var(--muted); font-size: .84rem; margin-top: 2px; }

.promise-strip {
  margin: 20px 12px;
  background: var(--forest);
  color: #f7f4ee;
  border-radius: 20px;
  padding: 18px 16px;
}
.promise-strip .eyebrow { color: #f6e2a8; }
.promise-strip h2 { margin-bottom: 12px; color: #f6e2a8; }
.promise-strip li {
  padding: 8px 0 8px 16px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: .92rem;
}
.promise-strip li:last-child { border-bottom: 0; }
.promise-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 8px;
  height: 2px;
  background: var(--amber);
}

.quote-form {
  margin-top: 8px;
  display: grid;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}
.quote-form label { display: grid; gap: 6px; font-size: .86rem; font-weight: 600; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 12px;
}
.quote-form textarea { min-height: 96px; resize: vertical; }
.photo-field {
  display: grid;
  gap: 8px;
  font-size: .86rem;
  font-weight: 600;
}
.photo-drop {
  display: grid;
  gap: 4px;
  place-items: center;
  text-align: center;
  min-height: 96px;
  padding: 16px;
  border: 1.5px dashed #9bb8ab;
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
}
.photo-drop__cta { color: var(--forest); font-weight: 700; }
.photo-drop__hint { color: var(--muted); font-size: .78rem; font-weight: 500; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.photo-thumb {
  aspect-ratio: 1;
  border: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #1a2332;
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.form-status {
  background: var(--mint);
  border: 1px solid #d9cfb8;
  border-radius: 12px;
  padding: 12px;
  font-size: .9rem;
}
.form-status.ok { color: var(--forest); }
.form-status.err {
  background: #fff1f0;
  border-color: #f0c2bd;
  color: #b42318;
}

.faq-list { margin-top: 12px; display: grid; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  background: none;
  border: 0;
  padding: 14px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  min-height: 48px;
}
.faq-a {
  display: none;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: .9rem;
}
.faq-item.open .faq-a { display: block; }

.site-footer {
  padding: 28px 16px 20px;
  color: var(--muted);
  font-size: .86rem;
}
.footer-brand {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--ink);
  margin-bottom: 6px;
}
.disclaimer { margin-top: 12px; font-size: .78rem; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 12px calc(10px + var(--safe-b));
  background: linear-gradient(180deg, transparent, rgba(244, 247, 245, .92) 28%, var(--paper));
}
.dock .btn { box-shadow: 0 12px 28px rgba(11, 61, 46, .28); }

@keyframes splashIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(212, 168, 75, .45); }
  70% { box-shadow: 0 0 0 8px rgba(212, 168, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 157, 106, 0); }
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tablet */
@media (min-width: 720px) {
  .topbar {
    padding: 14px 28px;
  }
  .lang-wrap select { max-width: 160px; }
  .hero {
    min-height: min(78dvh, 640px);
  }
  .hero-body {
    width: min(720px, calc(100% - 56px));
    margin: 0 auto;
    padding: 36px 0 40px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 3.4vw, 2.35rem);
    max-width: 22ch;
  }
  .hero-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 480px;
  }
  .hero .btn { width: 100%; }
  .trust {
    width: min(720px, calc(100% - 56px));
    margin: -16px auto 0;
    padding: 0;
  }
  .trust-row { grid-template-columns: repeat(4, 1fr); }
  .price-card {
    width: min(720px, calc(100% - 56px));
    margin: 18px auto 0;
    padding: 22px;
  }
  .karat-chips { grid-template-columns: repeat(6, 1fr); }
  .block, .site-footer {
    width: min(720px, calc(100% - 56px));
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .block { padding-top: 36px; }
  .steps-mobile { grid-template-columns: 1fr 1fr; }
  .buy-scroll {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
  .market-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-strip {
    width: min(720px, calc(100% - 56px));
    margin-left: auto;
    margin-right: auto;
  }
  .quote-form {
    grid-template-columns: 1fr 1fr;
  }
  .quote-form label:nth-child(5),
  .quote-form .photo-field,
  .quote-form button,
  .quote-form .micro,
  .quote-form .form-status {
    grid-column: 1 / -1;
  }
  .dock {
    width: min(720px, calc(100% - 56px));
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Desktop — wider board, no sticky dock clutter */
@media (min-width: 1024px) {
  .app { padding-bottom: 40px; }
  .topbar {
    padding: 16px max(32px, calc(50% - 520px));
  }
  .hero {
    min-height: min(86dvh, 720px);
    align-items: center;
  }
  .hero-shade {
    background:
      linear-gradient(105deg, rgba(13, 17, 24, .88) 0%, rgba(13, 17, 24, .55) 42%, rgba(13, 17, 24, .28) 70%, rgba(13, 17, 24, .45) 100%);
  }
  .hero-body {
    width: min(1040px, calc(100% - 64px));
    padding: 48px 0;
  }
  .brand-lockup { font-size: clamp(3rem, 5vw, 4.2rem); }
  .hero h1 {
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    max-width: 18ch;
  }
  .hero-lead { font-size: 1.05rem; max-width: 42ch; }
  .hero-actions { max-width: 520px; }
  .trust {
    width: min(1040px, calc(100% - 64px));
    margin: -20px auto 0;
  }
  .price-card {
    width: min(1040px, calc(100% - 64px));
    margin-top: 24px;
    padding: 28px;
  }
  .spot-board {
    grid-template-columns: 1fr 1fr 1.2fr;
    align-items: end;
  }
  .spot-meta {
    grid-column: auto;
    align-self: center;
    text-align: right;
  }
  .trade-board {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .block, .site-footer, .promise-strip {
    width: min(1040px, calc(100% - 64px));
  }
  .steps-mobile {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps-mobile li {
    grid-template-columns: 1fr;
    min-height: 100%;
  }
  .market-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .promise-strip {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 32px;
  }
  .promise-strip ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
  .quote {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
  }
  .quote > .eyebrow,
  .quote > h2,
  .quote > .section-lead {
    grid-column: 1;
  }
  .quote > .section-lead { margin-bottom: 0; }
  .quote-form {
    grid-column: 2;
    grid-row: 1 / span 4;
  }
  .dock { display: none; }
}

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  .quote-form input,
  .quote-form select,
  .quote-form textarea,
  .weight-field input,
  .lang-wrap select {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-bg img { transform: none; }
}
