/* The palette, the type and the outlined buttons are lifted from the original
   raione.cc stylesheet, including its deliberately slow 1s hover transition.
   This page is a send-off for that site, so it should look like it. */
:root {
  --bg:      #18181f;
  --surface: #22222a;
  --line:    #2e2e38;
  --text:    #e6e6e6;
  --dim:     #b3b3b3;
  --faint:   #777;
  --hover:   #52525c;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--text); }

.bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.wrap { width: 100%; max-width: 760px; margin: 0 auto; padding-inline: 20px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 34px; height: auto; }
.brand span { font-size: 22px; font-weight: 400; letter-spacing: .01em; }

main { padding-block: 64px 48px; text-align: center; }
.era {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 20px;
}
h1 { margin: 0 0 6px; font-size: clamp(30px, 7vw, 46px); font-weight: 600; letter-spacing: -.01em; }
.tagline { margin: 0 0 40px; font-size: 17px; color: var(--dim); }
.note { margin: 0 auto 36px; max-width: 58ch; text-align: left; font-size: 16px; color: var(--text); }
.note p { margin: 0 0 18px; }
.note p:last-child { margin-bottom: 0; }

.actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 44px; }
.hero-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; max-width: 350px; min-height: 60px; padding: 0 22px;
  border: 1px solid var(--text); border-radius: 10px;
  background: transparent; color: var(--text);
  font-family: inherit; font-size: 15px; font-weight: 400;
  text-decoration: none; cursor: pointer;
  transition: 1s;                     /* the original's own timing */
}
.hero-btn:hover, .hero-btn:focus-visible { border-color: var(--hover); background: var(--hover); outline: none; }
.hero-btn--quiet { border-color: var(--line); color: var(--dim); }
.hero-btn--quiet:hover, .hero-btn--quiet:focus-visible { border-color: var(--hover); background: transparent; color: var(--text); }

.moved { border-top: 1px solid var(--line); padding-top: 30px; text-align: left; }
.moved h2 { margin: 0 0 16px; font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.moved ul { list-style: none; margin: 0; padding: 0; }
.moved li {
  display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px;
}
.moved li:last-child { border-bottom: 0; }
.moved .was { color: var(--faint); min-width: 118px; }
.moved a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--hover); }
.moved a:hover { border-bottom-color: var(--text); }
.moved .here { color: var(--dim); font-size: 13px; }

footer { border-top: 1px solid var(--line); padding-block: 26px 40px; text-align: center; color: var(--faint); font-size: 13px; }
footer p { margin: 0 0 6px; }

@media (prefers-reduced-motion: reduce) { .hero-btn { transition: none; } }

/* --- pages beyond the placeholder ------------------------------------- */

.page { text-align: left; padding-block: 52px 40px; }
.page h1 { font-size: clamp(26px, 5.5vw, 36px); margin-bottom: 14px; text-wrap: balance; }
.page h2 { margin: 38px 0 12px; font-size: 19px; font-weight: 600; }
.page h3 { margin: 26px 0 6px; font-size: 16px; font-weight: 600; }
.page p { margin: 0 0 16px; }
.page code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88em; background: var(--surface); border: 1px solid var(--line);
  border-radius: 5px; padding: .1em .38em; overflow-wrap: anywhere;
}
.alert {
  border: 1px solid var(--line); border-left: 3px solid var(--text);
  background: var(--surface); border-radius: 8px;
  padding: 18px 20px; margin: 0 0 26px;
}
.alert p:last-child { margin-bottom: 0; }
.alert strong { font-weight: 600; }
.back { display: inline-block; margin-top: 34px; font-size: 14px; color: var(--dim); }
