/* ============================================================
   CHGO MORTGAGE GUY — Core Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

:root {
  /* Color */
  --ink: #0A0A0A;
  --ink-soft: #161513;
  --gold: #C8960C;
  --gold-bright: #E0B22E;
  --gold-deep: #8A6508;
  --paper: #F7F4EC;
  --paper-dim: #EFEAD9;
  --white: #FFFFFF;
  --graphite: #2B2B2B;
  --mist: #9A9A95;
  --mist-dark: #6B6A64;
  --line: rgba(200, 150, 12, 0.18);
  --line-dark: rgba(247, 244, 236, 0.12);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  /* Scale */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.75rem;
  --gap-lg: 3rem;
  --gap-xl: 5.5rem;

  --radius: 2px;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

@media (max-width: 640px) {
  .wrap { padding: 0 1.25rem; }
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }

p { color: var(--graphite); }

.ink-callout {
  background: var(--ink);
  padding: 2rem;
  margin-top: 2rem;
}
.ink-callout p {
  color: rgba(247,244,236,0.7);
}
.ink-callout .callout-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.ink-callout .callout-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--paper);
  margin: 0;
}
.ink-callout .callout-body {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(247,244,236,0.7);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lede {
  font-size: 1.15rem;
  color: var(--mist-dark);
  max-width: 46ch;
  line-height: 1.65;
}

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--paper); }
.on-dark p { color: rgba(247,244,236,0.72); }
.on-dark .lede { color: rgba(247,244,236,0.6); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-outline-dark {
  border-color: rgba(10,10,10,0.25);
  color: var(--ink);
  background: transparent;
}
.btn-outline-dark:hover { border-color: var(--ink); background: rgba(10,10,10,0.04); }

.btn-outline-light {
  border-color: rgba(247,244,236,0.35);
  color: var(--paper);
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-ghost {
  color: var(--ink);
  padding: 0.95rem 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-ghost svg { transition: transform 0.18s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ---------- Top utility bar ---------- */

.utility-bar {
  background: var(--ink);
  color: rgba(247,244,236,0.75);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}
.utility-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-bar a { color: var(--gold-bright); }
.utility-bar .hours { color: var(--mist); }

/* ---------- Nav ---------- */

.site-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--mist-dark);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-links > li { position: relative; list-style: none; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0;
}
.nav-links > li > a:hover { color: var(--gold-deep); }

.has-dropdown > a svg { width: 11px; height: 11px; transition: transform 0.15s ease; }
.has-dropdown:hover > a svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: -1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(10,10,10,0.1);
  min-width: 280px;
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.16s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--graphite);
}
.dropdown a:hover { background: var(--paper); color: var(--gold-deep); }
.dropdown-divider {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mist);
  padding: 0.6rem 0.75rem 0.3rem;
}

.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone svg { width: 15px; height: 15px; color: var(--gold-deep); }

.nav-toggle { display: none; }

@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle {
    display: flex;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    border: 1px solid var(--line);
    background: none;
    cursor: pointer;
  }
}

/* ---------- Section helpers ---------- */

section { padding: var(--gap-xl) 0; }
.section-dark { background: var(--ink); }
.section-paper-dim { background: var(--paper-dim); }
.section-tight { padding: var(--gap-lg) 0; }

.section-head {
  max-width: 640px;
  margin-bottom: var(--gap-lg);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Watermark monogram ---------- */

.monogram-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(247,244,236,0.65);
  padding: var(--gap-xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid h4 {
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-grid a { font-size: 0.88rem; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-about p { font-size: 0.88rem; color: rgba(247,244,236,0.55); max-width: 36ch; margin-top: 1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  font-size: 0.78rem;
  color: rgba(247,244,236,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a:hover { color: var(--gold-bright); }
.footer-legal {
  font-size: 0.74rem;
  color: rgba(247,244,236,0.35);
  max-width: 920px;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line-dark);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Cards ---------- */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card-icon {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  color: var(--gold-deep);
}
.card-icon svg { width: 22px; height: 22px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Stat strip ---------- */

.stat-strip {
  display: flex;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-bright);
  font-weight: 600;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.5);
  margin-top: 0.4rem;
}
@media (max-width: 700px) {
  .stat-strip { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; border-bottom: 1px solid var(--line-dark); }
}

/* ---------- Signature block ---------- */

.signature-block {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.signature-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--ink);
}
.signature-meta {
  font-size: 0.78rem;
  color: var(--mist-dark);
  line-height: 1.4;
}
.signature-meta strong { color: var(--ink); display: block; font-size: 0.85rem; }

/* ---------- Breadcrumb / page header ---------- */

.page-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: var(--gap-xl) 0 var(--gap-lg);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(247,244,236,0.4);
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}
.breadcrumb a:hover { color: var(--gold-bright); }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: var(--gap-xl) 0;
  text-align: center;
}
.cta-banner .actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  font-family: var(--font-display);
}
.faq-q svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s ease; color: var(--gold-deep); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-size: 0.95rem;
  color: var(--mist-dark);
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 0.9rem; }

/* ---------- Table ---------- */

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist-dark);
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}
.spec-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.spec-table tr:last-child td { border-bottom: none; }

/* ---------- Mobile nav drawer ---------- */

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 300;
  padding: 1.75rem;
  overflow-y: auto;
}
.mobile-drawer.open { display: block; }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.mobile-drawer a.close-btn { color: var(--paper); }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-drawer nav a { color: var(--paper); font-family: var(--font-display); font-size: 1.4rem; }
.mobile-drawer .sub-links { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 0.9rem; padding-left: 1rem; }
.mobile-drawer .sub-links a { font-family: var(--font-body); font-size: 0.95rem; color: rgba(247,244,236,0.6); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
}

/* ---------- Giveaway popup ---------- */

.giveaway-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.72);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.giveaway-overlay.open {
  opacity: 1;
  visibility: visible;
}
.giveaway-modal {
  background: var(--paper);
  max-width: 880px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
  max-height: 88vh;
  overflow: hidden;
}
.giveaway-overlay.open .giveaway-modal {
  transform: translateY(0) scale(1);
}
.giveaway-visual {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.giveaway-visual .monogram-watermark {
  font-size: 12rem;
  top: -2rem;
  left: -2rem;
}
.giveaway-doc-mock {
  background: var(--paper);
  width: 78%;
  aspect-ratio: 8.5/11;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  padding: 1.4rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.giveaway-doc-mock .bar { height: 6px; background: var(--line); }
.giveaway-doc-mock .bar.gold { background: var(--gold); width: 60%; }
.giveaway-doc-mock .bar.short { width: 40%; }
.giveaway-body {
  padding: 2.6rem;
  overflow-y: auto;
}
.giveaway-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  z-index: 2;
  color: var(--ink);
}
.giveaway-close:hover { border-color: var(--gold); }
.giveaway-form { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
.giveaway-form input[type="email"] {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
.giveaway-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}
.giveaway-error {
  font-size: 0.78rem;
  color: #a33;
  display: none;
}
.giveaway-error.show { display: block; }
.giveaway-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.giveaway-success.show { display: block; }
.giveaway-success svg { color: var(--gold-deep); margin-bottom: 1rem; }

@media (max-width: 720px) {
  .giveaway-modal { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .giveaway-visual { padding: 2rem; min-height: 180px; }
  .giveaway-doc-mock { width: 55%; }
}

/* ---------- Holographic intro ---------- */

.holo-intro {
  position: fixed;
  inset: 0;
  background: #04070a;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease;
}
.holo-intro.fade-out { opacity: 0; pointer-events: none; }

.holo-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.holo-skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  background: transparent;
  border: 1px solid rgba(224,178,46,0.4);
  color: rgba(247,244,236,0.7);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.holo-skip:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.holo-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(224,178,46,0.025) 0px,
    rgba(224,178,46,0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 5;
}

.holo-globe-wrap {
  position: relative;
  width: min(60vw, 480px);
  height: min(60vw, 480px);
  animation: holoFloat 4s ease-in-out infinite;
}
@keyframes holoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.holo-globe-wrap.zooming {
  animation: none;
  transition: transform 2.2s cubic-bezier(0.65,0,0.35,1), opacity 1.8s ease 1.4s;
}
.holo-globe-wrap.zoomed {
  transform: scale(18) translateY(2%);
  opacity: 0;
}

.holo-ring {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px solid rgba(224,178,46,0.25);
}
.holo-ring.r2 { inset: -12%; border-color: rgba(224,178,46,0.12); animation: holoSpin 18s linear infinite; }
.holo-ring.r3 { inset: -18%; border-color: rgba(224,178,46,0.06); animation: holoSpin 28s linear infinite reverse; }
@keyframes holoSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.holo-globe {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(224,178,46,0.35), rgba(224,178,46,0.04) 55%, transparent 70%),
    radial-gradient(circle at 65% 70%, rgba(200,150,12,0.18), transparent 60%);
  border: 1px solid rgba(224,178,46,0.5);
  box-shadow:
    0 0 60px rgba(224,178,46,0.25),
    inset 0 0 60px rgba(224,178,46,0.15);
  overflow: hidden;
  animation: holoRotate 14s linear infinite;
}
@keyframes holoRotate {
  from { background-position: 0 0; }
  to { background-position: 200% 0; }
}

.holo-globe svg { width: 100%; height: 100%; opacity: 0.85; }

.holo-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 14px 4px rgba(224,178,46,0.9);
  top: 64%;
  left: 46%;
  transform: translate(-50%, -50%);
}
.holo-pin::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--gold-bright);
  animation: holoPulse 1.6s ease-out infinite;
}
@keyframes holoPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.holo-label {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(224,178,46,0.85);
  white-space: nowrap;
}
.holo-label .holo-sub {
  display: block;
  font-size: 0.62rem;
  color: rgba(247,244,236,0.4);
  margin-top: 0.3rem;
  letter-spacing: 0.1em;
}

.holo-wordmark {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: holoTextIn 1s ease forwards 0.6s;
}
@keyframes holoTextIn {
  to { opacity: 1; }
}
.holo-wordmark .brand-name {
  font-size: 1.3rem;
  color: var(--paper);
}
.holo-wordmark .brand-sub {
  color: rgba(224,178,46,0.7);
}
