<style>
  /* While the cover is active, lock the underlying page and kill the white flash. */
  html, body { overflow: hidden !important; background: #0c0b09 !important; }

  .rebrand-cover,
  .rebrand-cover *,
  .rebrand-cover *::before,
  .rebrand-cover *::after { margin: 0; padding: 0; box-sizing: border-box; }

  .rebrand-cover {
    --rb-bg:     #0c0b09;
    --rb-fg:     #ffffff;
    --rb-body:   #c5bfb4;
    --rb-muted:  #877f72;
    --rb-amber:  #e09931;
    --rb-teal:   #00ADA8;
    --rb-pink:   #D72F5A;
    --rb-border: rgba(255,255,255,0.08);

    position: fixed;
    inset: 0;
    z-index: 2147483647;
    overflow-y: auto;
    background: var(--rb-bg);
    color: var(--rb-fg);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  /* Ambient glow */
  .rebrand-cover::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse 600px 400px at 30% 60%, rgba(224,153,49,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 500px 350px at 70% 40%, rgba(0,173,168,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .rebrand-cover .page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
  }

  .rebrand-cover .card {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* Logo */
  .rebrand-cover .logo { margin-bottom: 40px; }
  .rebrand-cover .logo svg { width: 140px; height: auto; }

  /* Badge */
  .rebrand-cover .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(224,153,49,0.1);
    border: 1px solid rgba(224,153,49,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 28px;
  }
  .rebrand-cover .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rb-amber);
    animation: rb-pulse 2s ease-in-out infinite;
  }
  @keyframes rb-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
  }
  .rebrand-cover .badge-text {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--rb-amber);
    text-transform: uppercase;
  }

  /* Headline */
  .rebrand-cover .headline {
    font-family: 'Inter', sans-serif;   /* override the theme's heading font */
    color: var(--rb-fg);                /* keep "is now" white (theme styles h1 amber otherwise) */
    font-style: normal;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 8px;
  }
  .rebrand-cover .headline .old-name {
    color: var(--rb-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(135,127,114,0.5);
  }
  .rebrand-cover .headline .new-name { color: var(--rb-amber); }

  /* Subhead */
  .rebrand-cover .subhead {
    font-size: 18px;
    font-weight: 400;
    color: var(--rb-body);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 480px;
  }

  /* CTA */
  .rebrand-cover .cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }
  .rebrand-cover .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rb-amber);
    color: #0c0b09;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
  }
  .rebrand-cover .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
  .rebrand-cover .btn-primary:active { transform: translateY(0); }
  .rebrand-cover .btn-arrow { font-size: 16px; }

  /* Legacy note */
  .rebrand-cover .legacy-note {
    font-size: 12px;
    color: var(--rb-muted);
    text-align: center;
    line-height: 1.5;
    max-width: 340px;
  }

  /* Countdown */
  .rebrand-cover .countdown {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: var(--rb-muted);
    letter-spacing: 0.04em;
  }
  .rebrand-cover .countdown span { color: var(--rb-body); font-weight: 500; }

  /* Footer */
  .rebrand-cover .footer {
    margin-top: 48px;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: var(--rb-muted);
    letter-spacing: 0.04em;
    text-align: center;
  }
  .rebrand-cover .footer a { color: var(--rb-muted); text-decoration: none; }
  .rebrand-cover .footer a:hover { color: var(--rb-body); }

  /* Mobile */
  @media (max-width: 480px) {
    .rebrand-cover .page { padding: 40px 20px; }
  }

html, body { min-height: 100%; }
body { margin: 0; }
.rebrand-cover .btn-primary:focus-visible,
.rebrand-cover .footer a:focus-visible,
.noscript a:focus-visible {
  outline: 3px solid var(--rb-teal, #00ada8);
  outline-offset: 4px;
}
.noscript {
  position: fixed;
  z-index: 2147483647;
  right: 16px;
  bottom: 16px;
  margin: 0;
  color: #c5bfb4;
  font: 12px/1.5 Inter, sans-serif;
}
.noscript a { color: #e09931; }
.not-found {
  position: static;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: auto !important;
  padding: 24px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.not-found main { max-width: 560px; text-align: center; }
.not-found h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.not-found p { margin: 0 0 28px; color: #c5bfb4; line-height: 1.6; }
.not-found a {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  background: #e09931;
  color: #0c0b09;
  font-weight: 700;
  text-decoration: none;
}
.not-found a:focus-visible { outline: 3px solid #00ada8; outline-offset: 4px; }

@supports (min-height: 100svh) {
  .rebrand-cover .page { min-height: 100svh; }
}

@media (prefers-reduced-motion: reduce) {
  .rebrand-cover .badge-dot { animation: none; }
  .rebrand-cover .btn-primary { transition: none; }
}
