/* ═══════════════════════════════════════════════════════════════════════
   Steuerfertig — pagina de espera (holding), 23-jul-2026
   Toma la paleta y el ritmo del sistema de diseño del sitio real
   (drafts/_shared/styles.css) para que no haya salto de marca cuando se
   sustituya por el sitio completo. Sin JS, sin webfonts, sin recursos
   externos: la CSP puede ser 'self' puro y no hay hashes que mantener.
   ═══════════════════════════════════════════════════════════════════════ */
:root {
  --paper: #ffffff;
  --ink: #112138;
  --muted: #51607a;
  --faint: #5f6c83;
  --teal: #0c5ded;
  --hair: #eceef2;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  font-size: 16.5px;
  letter-spacing: -.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 56px);
}

::selection { background: rgba(12, 93, 237, .18); }

.shell {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.mark {
  width: 56px;
  height: 56px;
  margin: 0 auto clamp(20px, 4vw, 28px);
  border-radius: 13px;
  background: var(--teal);
  color: #fff;
  font-size: 31px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -.02em;
}

.wordmark {
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.028em;
  color: var(--ink);
}

.lead {
  margin-top: clamp(12px, 2.5vw, 18px);
  font-size: clamp(1.02rem, 2.6vw, 1.18rem);
  color: var(--muted);
  text-wrap: balance;
}

.langs {
  list-style: none;
  margin: clamp(26px, 5vw, 36px) auto 0;
  padding-top: clamp(22px, 4vw, 30px);
  border-top: 1px solid var(--hair);
  display: grid;
  gap: 7px;
  max-width: 460px;
}

.langs li {
  font-size: .905rem;
  color: var(--faint);
  text-wrap: balance;
}

.contact {
  margin-top: clamp(26px, 5vw, 34px);
  font-size: .95rem;
}

.contact a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 2px;
  border-bottom: 1px solid rgba(12, 93, 237, .3);
  padding-bottom: 1px;
}

.contact a:hover { border-bottom-color: var(--teal); }

.contact a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}

.foot {
  margin-top: clamp(30px, 6vw, 44px);
  font-size: .8rem;
  color: var(--faint);
}

@media (prefers-contrast: more) {
  :root { --muted: #32434d; --faint: #45565f; --hair: #c9d3cf; }
}
