/* Horolator marketing site — V2 "Instrument".
 * Dark slate, brass accent, bento layout. Mobile-first, no JS required.
 */

/* ---------- fonts (self-hosted, OFL) ---------- */
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2"); }

/* ---------- tokens ---------- */
:root {
  --bg: #0c1119;
  --bg-raised: #121a26;
  --bg-panel: #151e2c;
  --ink: #edf1f7;
  --ink-soft: #a3aebf;
  --line: #26303f;
  --line-strong: #37445a;
  --brass: #d9a441;
  --brass-deep: #b9860f;
  --brass-ink: #0c1119;
  --display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --wrap: 1120px;
  --narrow: 720px;
  --radius: 12px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1.0625rem/1.65 var(--sans);
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass); text-underline-offset: 3px; }
a:hover { color: #e8bd6b; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }
::selection { background: rgb(217 164 65 / 0.28); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap.narrow { max-width: var(--narrow); }
.center { text-align: center; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.08; margin: 0 0 0.5em; text-wrap: balance; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 7vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.3rem); }
h3 { font-size: 1.22rem; font-weight: 500; }
p { margin: 0 0 1em; max-width: 68ch; }
.center p { margin-inline: auto; }
.lead { font-size: clamp(1.08rem, 2.6vw, 1.28rem); color: var(--ink-soft); max-width: 58ch; }
.section-lead { color: var(--ink-soft); max-width: 64ch; }
.eyebrow {
  font: 500 0.78rem/1.4 var(--mono); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 1rem;
}
.kicker { font: 500 0.75rem/1.4 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin: 0 0 0.4rem; }
.note { font-size: 0.95rem; color: var(--ink-soft); border-left: 2px solid var(--line-strong); padding-left: 1rem; }

/* ---------- skip ---------- */
.skip { position: absolute; left: -9999px; top: 0; background: var(--brass); color: var(--brass-ink); padding: 0.6rem 1rem; z-index: 99; }
.skip:focus { left: 12px; top: 12px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(12 17 25 / 0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; gap: 18px; padding-block: 12px; flex-wrap: wrap; }
.wordmark {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: 1.22rem;
  color: var(--ink); text-decoration: none;
}
.wordmark .mark { color: var(--brass); }
.beta-chip {
  font: 500 0.6rem/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 8px 3px;
  color: var(--brass); translate: 0 -8px;
}
.nav-list { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-list a {
  display: block; padding: 8px 11px; text-decoration: none; color: var(--ink-soft);
  font-size: 0.95rem; border-radius: 6px;
}
.nav-list a:hover { color: var(--ink); background: var(--bg-panel); }
.nav-list a[aria-current="page"] { color: var(--brass); }
.btn-header { margin-left: auto; }
@media (max-width: 720px) {
  .header-in { gap: 10px; }
  .btn-header { order: 2; margin-left: auto; padding: 0.5em 0.95em; font-size: 0.9rem; }
  nav[aria-label="Main"] { order: 3; width: 100%; }
  .nav-list { justify-content: space-between; gap: 0; }
  .nav-list a { padding: 7px 6px; font-size: 0.9rem; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 1rem;
  font-family: var(--display);
  padding: 0.7em 1.4em; border-radius: 8px; border: 1px solid transparent;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.btn-primary { background: var(--brass); color: var(--brass-ink); box-shadow: 0 0 0 0 rgb(217 164 65 / 0); }
.btn-primary:hover { background: #e5b658; color: var(--brass-ink); box-shadow: 0 0 24px -6px rgb(217 164 65 / 0.55); }
.btn-quiet { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-quiet:hover { border-color: var(--brass); color: var(--brass); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-block: 1.5rem 0.5rem; }
.center .cta-row { justify-content: center; }
.cta-note { font: 400 0.85rem/1.5 var(--mono); color: var(--ink-soft); }
.text-link { font-weight: 500; }
.email { font-family: var(--mono); font-size: 1.05rem; }

/* ---------- launch chooser ---------- */
.launch { display: flex; gap: 12px; flex-wrap: wrap; margin-block: 1.6rem 0.5rem; align-items: flex-start; }
.center .launch { justify-content: center; }
.btn-launch { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left; padding: 0.7em 1.35em; line-height: 1.2; }
.center .btn-launch { align-items: center; text-align: center; }
.launch-t { font-weight: 700; font-size: 1rem; }
.launch-s { font: 400 0.8rem/1.3 var(--sans); opacity: 0.72; }
.btn-sm { padding: 0.55em 1.15em; font-size: 0.92rem; }
.launch-guide { margin: 0.9rem 0 0.2rem; }
.center .launch-guide { display: flex; justify-content: center; }
.launch-install { position: relative; }
.launch-install > summary { list-style: none; cursor: pointer; }
.launch-install > summary::-webkit-details-marker { display: none; }
.launch-install > summary::marker { content: ""; }
.launch-install[open] { flex-basis: 100%; }
.launch-install[open] > summary { border-color: var(--brass); color: var(--brass); }
.launch-panel {
  margin: 14px auto 0; text-align: left; max-width: 34rem;
  background: var(--bg-raised); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.launch-hint { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 0.7rem; }
.launch-steps { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.launch-steps li { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.5; padding: 0.5rem 0 0.5rem 0.95rem; border-left: 2px solid transparent; }
.launch-steps[data-os-here="ios"] li[data-os="ios"],
.launch-steps[data-os-here="android"] li[data-os="android"],
.launch-steps[data-os-here="desktop"] li[data-os="desktop"] { color: var(--ink); border-left-color: var(--brass); }
@media (max-width: 560px) {
  .launch { flex-direction: column; align-items: stretch; }
  .btn-launch { width: 100%; align-items: center; text-align: center; }
  .launch-install[open] > summary { margin-bottom: 0; }
}

/* ---------- section mark ---------- */
.sec-mark { display: flex; align-items: center; gap: 14px; margin: 0 0 1.5rem; }
* + .sec-mark { margin-top: 3rem; }
.sec-no { font: 500 0.75rem/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); white-space: nowrap; }
.sec-line { flex: 1; height: 1px; background: linear-gradient(to right, var(--line-strong), transparent); }

/* ---------- hero ---------- */
.hero { position: relative; padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2rem, 5vw, 3rem); overflow: hidden; }
.dial {
  position: absolute; left: 50%; top: -190px; translate: -50% 0;
  color: var(--line-strong); z-index: -1; opacity: 0.8;
}
.tick { stroke: currentColor; stroke-width: 1; }
.tick-big { stroke: var(--brass); stroke-width: 2; opacity: 0.4; }
.hero-in { position: relative; }
.hero-in .lead { margin-inline: auto; }
.hero-shot { margin-top: clamp(1.8rem, 4vw, 3rem); }
.hero-shot .shot {
  box-shadow: 0 0 80px -20px rgb(217 164 65 / 0.18), 0 24px 60px -30px rgb(0 0 0 / 0.8);
}

/* stats */
.stat-row {
  list-style: none; display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr);
  margin: 2rem 0 0; padding: 0;
}
@media (min-width: 780px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.stat-n { display: block; font: 700 2rem/1.1 var(--display); color: var(--brass); font-variant-numeric: tabular-nums; }
.stat-l { display: block; font-size: 0.88rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- screenshots ---------- */
.shot { margin: 0; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; background: #0a0f16; }
/* Images and videos both scale to the column width, full frame, never cropped. */
.shot img, .shot video { width: 100%; height: auto; display: block; }
.shot-caption { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.7rem; }
.shot-caption.center { text-align: center; margin-inline: auto; }
/* Autoplaying product clip: same frame as a screenshot, brass-tinged glow. */
.shot-video { box-shadow: 0 0 60px -22px rgb(217 164 65 / 0.28); }
.shot-video video { background: #0a0f16; }
/* Tall panel crop (mainspring picks) — cap width so it doesn't tower on the page. */
.shot-small { max-width: 340px; }
.img2 { margin-top: 1.6rem; }
@media (min-width: 900px) { .img2 { display: grid; grid-template-columns: 340px 1fr; gap: 20px; align-items: center; } .img2 .shot-caption { margin-top: 0; } }

/* ---------- sections ---------- */
.section { padding-block: clamp(2.6rem, 7vw, 4.6rem); }
.page-head { padding-block: clamp(2.6rem, 6vw, 4rem) 0.5rem; }
.page-head + .section { padding-top: 1.8rem; }

/* steps row */
.steps-row { list-style: none; display: grid; gap: 14px; padding: 0; margin: 2rem 0 0; }
@media (min-width: 760px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }
.steps-row li {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.1rem;
}
.steps-row h3 { margin-bottom: 0.35em; }
.steps-row p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.step-n { font: 500 0.8rem/1 var(--mono); color: var(--brass); display: block; margin-bottom: 0.8rem; letter-spacing: 0.1em; }

/* ---------- bento ---------- */
.bento { display: grid; gap: 16px; margin-top: 2rem; }
@media (min-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; gap: 1.2rem;
  transition: border-color 160ms ease;
}
.card:hover { border-color: var(--line-strong); }
.card-wide { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .card-wide { display: grid; grid-template-columns: 4fr 7fr; align-items: center; gap: 2rem; }
}
.card-copy p { color: var(--ink-soft); font-size: 0.98rem; }
.card .shot { border-color: var(--line); }

/* feature detail (features page) */
.feature-detail { display: grid; gap: 24px; margin-top: 1.6rem; }
@media (min-width: 900px) { .feature-detail { grid-template-columns: 5fr 7fr; align-items: start; } }
.panel {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; margin-block: 1rem;
}
.spec-h { font: 500 0.75rem/1.4 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 0.8rem; }
.spec-list { list-style: none; margin: 0; padding: 0; font-size: 0.95rem; }
.spec-list li { padding: 0.5rem 0 0.5rem 1.2rem; border-bottom: 1px solid var(--line); position: relative; color: var(--ink-soft); }
.spec-list li:last-child { border-bottom: 0; }
.spec-list li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }

/* numbered guide steps */
.num-steps { counter-reset: n; list-style: none; margin: 1rem 0 0.5rem; padding: 0; }
.num-steps li {
  counter-increment: n; position: relative; padding: 0.65rem 0 0.65rem 3rem;
  border-bottom: 1px solid var(--line); max-width: 68ch;
}
.num-steps li:last-child { border-bottom: 0; }
.num-steps li::before {
  content: counter(n, decimal-leading-zero); position: absolute; left: 0; top: 0.75rem;
  font: 500 0.85rem/1 var(--mono); color: var(--brass);
}

/* beta band */
.beta-band {
  background: linear-gradient(160deg, var(--bg-panel), var(--bg-raised));
  border: 1px solid var(--line-strong); border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.6rem, 5vw, 3rem);
}
.beta-band p { color: var(--ink-soft); }

/* ---------- the manual (Guide) ---------- */
.manual-layout { display: grid; gap: 28px; margin-top: 2rem; }
@media (min-width: 940px) {
  .manual-layout { grid-template-columns: 232px 1fr; gap: 48px; align-items: start; }
  .manual-toc { position: sticky; top: 84px; }
}
.manual-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.manual-toc li { counter-increment: toc; border-bottom: 1px solid var(--line); }
.manual-toc li:last-child { border-bottom: 0; }
.manual-toc a {
  display: block; padding: 0.55rem 0 0.55rem 1.9rem; position: relative;
  color: var(--ink-soft); text-decoration: none; font-size: 0.93rem; line-height: 1.4;
}
.manual-toc a::before {
  content: counter(toc, decimal-leading-zero); position: absolute; left: 0; top: 0.62rem;
  font: 500 0.76rem/1 var(--mono); color: var(--brass);
}
.manual-toc a:hover { color: var(--ink); }

.manual-body { min-width: 0; }
.manual-chapter { padding-top: 0.5rem; }
.manual-chapter + .manual-chapter { margin-top: 3rem; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.manual-h { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: 0.4em; scroll-margin-top: 90px; }
.manual-chapter { scroll-margin-top: 90px; }
.manual-blurb { color: var(--ink-soft); max-width: 62ch; }

.proc {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.4rem; margin-top: 1.1rem;
}
.proc-h { font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 0.3em; }
.proc-when { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 0.9rem; max-width: 62ch; }
.proc-steps { counter-reset: st; list-style: none; margin: 0; padding: 0; }
.proc-steps li {
  counter-increment: st; position: relative; padding: 0.42rem 0 0.42rem 2.3rem;
  font-size: 0.96rem; line-height: 1.55; max-width: 64ch;
}
.proc-steps li::before {
  content: counter(st); position: absolute; left: 0; top: 0.42rem;
  width: 1.55rem; height: 1.55rem; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line-strong); color: var(--brass);
  font: 500 0.76rem/1.5rem var(--mono); text-align: center;
}
.proc-notes { list-style: none; margin: 1rem 0 0; padding: 0.9rem 0 0; border-top: 1px dashed var(--line-strong); }
.proc-notes li {
  position: relative; padding-left: 1.2rem; font-size: 0.9rem; line-height: 1.55;
  color: var(--ink-soft); max-width: 64ch;
}
.proc-notes li + li { margin-top: 0.5rem; }
.proc-notes li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }

/* FAQ */
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 1rem 2rem 1rem 0; font-weight: 600; font-size: 1.05rem;
  list-style: none; position: relative; font-family: var(--display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 0.85rem; font: 400 1.3rem/1 var(--mono); color: var(--brass); }
.faq[open] summary::after { content: "−"; }
.faq p { color: var(--ink-soft); padding-bottom: 1rem; margin: 0; }

/* changelog */
.changelog { list-style: none; margin: 1rem 0 0; padding: 0; }
.log-entry { display: grid; gap: 6px; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 640px) { .log-entry { grid-template-columns: 130px 1fr; gap: 20px; } }
.log-date { font: 500 0.85rem/1.9 var(--mono); color: var(--brass); }
.log-title { font-size: 1.2rem; margin-bottom: 0.3em; }
.log-entry p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* final CTA */
.final-cta { border-top: 1px solid var(--line); background: radial-gradient(60% 120% at 50% 0%, rgb(217 164 65 / 0.07), transparent 70%); }
.final-cta .eyebrow { margin-top: 1.2rem; }

/* ---------- contact form ---------- */
.contact-form { margin-top: 1.4rem; max-width: 34rem; }
.form-row { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-row label { font: 500 0.8rem/1.4 var(--mono); letter-spacing: 0.06em; color: var(--ink-soft); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: 400 1rem/1.5 var(--sans); color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 8px;
  padding: 0.65rem 0.8rem; width: 100%;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.contact-form textarea { resize: vertical; min-height: 7rem; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgb(217 164 65 / 0.18);
}
.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 1.15rem, calc(100% - 12px) 1.15rem;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 2.2rem;
}
.contact-form button[type="submit"] { margin-top: 0.3rem; }
.contact-form .cta-note { margin-top: 0.9rem; }
/* Honeypot: visually hidden, off-screen, out of the tab order. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-raised); padding-block: 2.4rem 2rem; }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.3fr 0.7fr 1.6fr; } }
.footer-tagline { font-family: var(--display); font-weight: 500; font-size: 1.05rem; }
.footer-h { font: 500 0.72rem/1.4 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 0.6rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul a { display: inline-block; padding: 3px 0; color: var(--ink-soft); text-decoration: none; }
.site-footer ul a:hover { color: var(--brass); text-decoration: underline; }
.footer-notes p { font-size: 0.82rem; color: var(--ink-soft); max-width: 52ch; }
/* Maker attribution — present but quiet: a memory-trace, not a pitch. */
.footer-maker { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.footer-maker-line { font-family: var(--display); font-size: 1.1rem; line-height: 1.4; color: var(--ink); max-width: 44ch; margin: 0 0 1rem; }
.footer-maker-btn { font-family: var(--display); }
.footer-bow { display: flex; align-items: center; gap: 9px; font: 400 0.92rem/1.5 var(--mono); color: var(--ink-soft); margin: 1.2rem 0 0; }

/* Reigi's marks. The supplied artwork is solid black, so it is used as a CSS
 * mask and painted with currentColor — that way it sits correctly on the dark
 * theme and can pick up a hover colour. Unsupported browsers simply show
 * nothing rather than a black-on-black block (the name is in the text anyway). */
.reigi-logo, .reigi-bow { display: inline-block; background: transparent; flex: none; }
@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .reigi-logo, .reigi-bow { background-color: currentColor; }
  .reigi-logo {
    -webkit-mask: url("/assets/reigi-logo.svg") left center / contain no-repeat;
    mask: url("/assets/reigi-logo.svg") left center / contain no-repeat;
  }
  .reigi-bow {
    -webkit-mask: url("/assets/reigi-bow.svg") center / contain no-repeat;
    mask: url("/assets/reigi-bow.svg") center / contain no-repeat;
  }
}
/* ratio 2.114 : 1 */
.reigi-logo { width: 152px; height: 72px; color: var(--ink); margin-bottom: 1rem; }
/* ratio 2.673 : 1 */
.reigi-bow { width: 32px; height: 12px; color: var(--brass); }
.footer-base { margin-top: 1.4rem; }
.footer-copy { font: 400 0.8rem/1.5 var(--mono); color: var(--ink-soft); margin: 0; }
