/*
 * Online Scratch Map  https://onlinescratchmap.com/
 * Copyright (c) 2026 Optional Ltd. All rights reserved.
 */
/* The holding page: the name on gold, and nothing more. No webfonts, no script. */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --green: #0b2d27; --gold: #cfab55; }
html, body { height: 100%; }
body { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--gold); color: var(--green); text-align: center; -webkit-font-smoothing: antialiased; }
main { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mark { margin-bottom: 20px; }
h1 { font-size: clamp(32px, 7vw, 56px); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 12px; }
p { font-size: clamp(17px, 2.6vw, 20px); }
.soon { margin-top: 24px; display: inline-block; padding: 6px 16px; border: 2px solid var(--green);
  border-radius: 999px; font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
footer { font-size: 13px; opacity: .75; }
