:root {
  color-scheme: light;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --line: #e6e6ea;
  --accent: #007aff;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body { background: var(--paper); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; }
.tracking-page { min-height: 100dvh; display: grid; place-items: center; padding: 24px; }
.tracking-card { width: min(100%, 440px); padding: 32px 28px; border-radius: 28px; background: #fff; box-shadow: 0 22px 64px rgba(0,0,0,.08); text-align: center; }
.tracking-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.brand { font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.language { border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; background: #fff; color: var(--muted); font: inherit; font-size: 12px; font-weight: 600; cursor: pointer; }
.language:hover { color: var(--accent); border-color: var(--accent); }
.status { margin: 0; font-size: 25px; letter-spacing: -.04em; line-height: 1.18; }
.hint { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.map { height: 230px; margin-top: 24px; overflow: hidden; border-radius: 20px; background: #ececf0; position: relative; }
.pin { position: absolute; z-index: 2; left: 50%; top: 50%; width: 20px; height: 20px; margin: -20px 0 0 -10px; border: 4px solid #fff; border-radius: 50% 50% 50% 0; background: var(--accent); box-shadow: 0 4px 14px rgba(0,0,0,.25); transform: rotate(-45deg); pointer-events: none; }
.pin::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #fff; }
@media (max-width: 480px) { .tracking-page { padding: 16px; } .tracking-card { padding: 27px 22px; border-radius: 24px; } }
