/* ArcSeal launch landing — styles.
   Extracted from the page-builder export (ArcSeal_Waitlist.html, Pedro Lubi,
   2026-08-03) into an external stylesheet so the served page can run under a
   CSP without 'unsafe-inline' for styles. Colour and size values are carried
   over unchanged from the export. The Marcellus faces are SELF-HOSTED from
   /assets/fonts/: the export's two font-CDN preconnects and its webfont
   stylesheet link are gone, so rendering this page issues no request off this
   origin. */

/* latin-ext */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/marcellus-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/marcellus-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink:      #16181C;
  --ink-deep: #0B0C10;
  --parch:    #F5F0CC;
  --gold:     #F0CC80;
  --clay:     #E06450;
  --mist:     #B9BFD0;
  --slate:    #6E7793;
  --indigo:   #5C74A8;
  --serif:    'Marcellus', Georgia, serif;
  --sans:     -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono:     ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--parch);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--clay); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
input::placeholder { color: var(--slate); }

.sprite { position: absolute; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.rise { animation: rise .5s cubic-bezier(.22,1,.36,1) both; }
@media (prefers-reduced-motion: reduce) { .rise { animation: none; } }

/* ── layout ─────────────────────────────────────────────────────────── */

.shell {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  flex-direction: column;
}
.ground {
  position: absolute; inset: 0;
  background-image: url("/assets/ground-dark.jpg");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 34%, rgba(22,24,28,.32), rgba(11,12,16,.9));
  pointer-events: none;
}
.stage {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 56px 32px 44px;
  text-align: center;
}

.brandline { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.wl-mark {
  width: 74px; height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(240,204,128,.45);
  display: block;
}
.wordmark { font-family: var(--serif); font-size: 19px; letter-spacing: .34em; color: var(--parch); }
.wordmark-b { color: var(--gold); }

.headblock { display: flex; flex-direction: column; align-items: center; gap: 18px; max-width: 660px; }
.wl-h1 {
  font-family: var(--serif);
  font-size: 54px; font-weight: 400; line-height: 1.1;
  margin: 0; text-wrap: pretty;
}
.wl-sub {
  font-size: 16px; line-height: 1.7; color: var(--mist);
  margin: 0; max-width: 520px; text-wrap: pretty;
}

/* ── capture ────────────────────────────────────────────────────────── */

.wl-capture { width: 100%; max-width: 480px; }

.wl-form-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; width: 100%; margin-top: 6px;
}
.wl-form { display: flex; gap: 10px; width: 100%; }
.wl-in {
  flex: 1; min-width: 0; min-height: 54px; padding: 0 18px;
  border-radius: 14px; border: 1px solid rgba(245,240,204,.22);
  background: rgba(11,12,16,.62); color: var(--parch);
  font-family: inherit; font-size: 16px;
  backdrop-filter: blur(8px);
}
.wl-in[aria-invalid="true"] { border-color: var(--clay); }
.wl-btn {
  min-height: 54px; padding: 0 26px; border: none; border-radius: 14px;
  background: var(--gold); color: var(--ink);
  font-family: inherit; font-size: 14.5px; font-weight: 700; letter-spacing: .02em;
  cursor: pointer; white-space: nowrap; flex: none;
}
.wl-btn[disabled] { opacity: .55; cursor: progress; }

.wl-consent {
  display: flex; align-items: flex-start; gap: 10px;
  width: 100%; text-align: left;
}
.wl-consent input[type="checkbox"] {
  flex: none; width: 17px; height: 17px; margin: 2px 0 0;
  accent-color: var(--gold); cursor: pointer;
}
.wl-consent label {
  font-size: 12px; line-height: 1.6; color: var(--mist); cursor: pointer;
}
.wl-privacy { text-decoration: underline; text-underline-offset: 2px; }

.wl-note { font-size: 12px; line-height: 1.6; color: var(--slate); min-height: 18px; }
.wl-note-err { color: var(--clay); }

.wl-turnstile:not(:empty) { margin-top: 2px; }

.wl-done {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  max-width: 480px; margin-top: 6px; padding: 26px 28px;
  border: 1px solid rgba(240,204,128,.4); border-radius: 18px;
  background: rgba(11,12,16,.6); backdrop-filter: blur(8px);
}
.wl-done-h { font-family: var(--serif); font-size: 23px; line-height: 1.25; }
.wl-done-p { font-size: 13.5px; line-height: 1.7; color: var(--mist); }

/* ── frieze + footer ────────────────────────────────────────────────── */

.wl-frieze {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; flex-wrap: wrap; margin-top: 14px;
  color: rgba(240,204,128,.6);
}
.wl-strap {
  font-family: var(--mono); font-size: 10px; letter-spacing: .24em; color: var(--indigo);
}
.wl-foot {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 34px calc(30px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(245,240,204,.08);
  flex-wrap: wrap;
}
.wl-copy { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; color: var(--indigo); }
.wl-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.wl-links a { font-size: 12px; color: rgba(185,191,208,.85); }

/* ── responsive (values carried over from the export) ───────────────── */

@media (max-width: 900px) {
  .wl-h1 { font-size: 44px; }
}
@media (max-width: 640px) {
  .wl-h1 { font-size: 36px; }
  .wl-sub { font-size: 15px; }
  .wl-pad { padding: 38px 22px 34px; gap: 26px; }
  .wl-mark { width: 62px; height: 62px; }
  .wl-form { flex-direction: column; }
  .wl-btn { width: 100%; }
  .wl-frieze { gap: 12px; margin-top: 8px; }
  .wl-frieze svg { width: 18px; height: 18px; }
  .wl-foot { flex-direction: column; align-items: center; gap: 13px; text-align: center; padding: 20px 22px; }
}
@media (max-width: 400px) {
  .wl-h1 { font-size: 32px; }
  .wl-frieze { gap: 10px; }
}
