/* ============================================================
   Repside — Liquid Chrome Design System v2
   Research-led: monochrome silver, type-led, liquid glass,
   grain texture, chrome accents. Black is the only "colour".
   ============================================================ */

:root {
  --ink: #0a0a0b;
  --ink-soft: #33333a;
  --ink-faint: #54545e;
  --silver-0: #fafafb;
  --silver-1: #f0f0f3;
  --silver-2: #e4e5e9;
  --silver-3: #cfd0d7;
  --glass: rgba(255, 255, 255, 0.52);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-shadow: 0 8px 32px rgba(18, 18, 26, 0.10), 0 1px 3px rgba(18, 18, 26, 0.06);
  --r-card: 28px;
  --r-pill: 100px;
  --max-w: 1180px;
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 40px; --s5: 64px; --s6: 104px; --s7: 168px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-d: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

@view-transition { navigation: auto; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--silver-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

::selection { background: #0a0a0b; color: #fff; }

/* ============ Liquid metal ambient field ============ */
.bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(55% 45% at 14% 6%, rgba(255,255,255,0.9) 0%, transparent 60%),
    radial-gradient(50% 44% at 80% 88%, rgba(255,255,255,0.7) 0%, transparent 62%),
    linear-gradient(115deg,
      #e9eaee 0%, #c6c7d1 12%, #f3f3f6 24%, #b3b4c0 38%,
      #e2e3e9 50%, #aaabb8 63%, #ecedf1 76%, #bcbdc8 88%, #e7e8ec 100%);
}

/* Diagonal brushed-metal light streaks */
.bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(115deg,
    transparent 0px,
    transparent 90px,
    rgba(255,255,255,0.55) 130px,
    rgba(255,255,255,0.08) 170px,
    transparent 220px,
    rgba(255,255,255,0.35) 300px,
    transparent 380px);
  filter: blur(26px);
}

.bg-sheen {
  position: fixed;
  inset: -40%;
  z-index: -2;
  pointer-events: none;
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(255,255,255,0.5) 40deg,
    transparent 95deg,
    rgba(168,170,184,0.32) 160deg,
    transparent 220deg,
    rgba(255,255,255,0.45) 290deg,
    transparent 360deg
  );
  filter: blur(90px);
  will-change: transform;
}

/* Film grain — kills banding, adds the "expensive print" texture */
.grain {
  position: fixed;
  inset: -100px;
  z-index: 200;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grainShift 0.9s steps(3) infinite;
}

@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-34px, 22px); }
  66%  { transform: translate(26px, -38px); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
}

/* ============ Layout ============ */
.wrap { width: min(var(--max-w), calc(100% - 48px)); margin: 0 auto; }
section { padding: var(--s7) 0; position: relative; }
.tight { padding: var(--s6) 0; }

/* ============ Glass primitives ============ */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.95), inset 0 -1px 0 rgba(255,255,255,0.25);
  transform: translateZ(0);
}

.card {
  border-radius: var(--r-card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: -70%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-18deg);
  transition: left 0.8s var(--ease-out);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(18,18,26,0.15), 0 2px 6px rgba(18,18,26,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
}
.card:hover::before { left: 130%; }

/* ============ Chrome (liquid metal) accents ============ */
.chrome-line {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, #b9bac4 18%, #fff 38%, #a9aab6 52%, #fff 68%, #b9bac4 84%, transparent);
}

.chrome-text {
  background: linear-gradient(110deg, #3c3c43 18%, #c8c9d2 36%, #0a0a0b 50%, #babbc6 64%, #3c3c43 82%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.chrome-ring {
  position: relative;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, #e8e8ec, #9d9ea9, #f5f5f7, #c2c3cc, #fdfdfe, #a8a9b4, #e8e8ec);
  box-shadow: 0 8px 24px rgba(18,18,26,0.18), inset 0 1px 1px rgba(255,255,255,0.9);
}

/* ============ Buttons — glassy / bubbly ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.btn > * { position: relative; z-index: 2; }

.btn .btn-label { display: inline-block; overflow: hidden; }
.btn .btn-label span { display: block; transition: transform 0.45s var(--ease-out); }
.btn .btn-label span:last-child { position: absolute; top: 100%; left: 0; }
.btn:hover .btn-label span { transform: translateY(-100%); }

.btn-dark {
  color: #fff;
  background: linear-gradient(180deg, #2c2c33 0%, #0a0a0b 100%);
  box-shadow: 0 12px 30px rgba(10,10,11,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-dark:hover { box-shadow: 0 18px 40px rgba(10,10,11,0.45), inset 0 1px 0 rgba(255,255,255,0.25); }

.btn-glass {
  color: var(--ink);
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.95);
}
.btn-glass:hover { background: rgba(255,255,255,0.8); }

/* specular bubble highlight */
.btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 2px; left: 12%;
  width: 76%; height: 40%;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}
.btn-dark::after { background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent); }

/* ============ Nav ============ */
nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 100;
  width: min(var(--max-w), calc(100% - 32px));
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  view-transition-name: site-nav;
}

.nav-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo span { color: var(--ink-faint); }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-links a:not(.btn):hover { background: rgba(255,255,255,0.65); color: var(--ink); }
.nav-links a.active { background: rgba(255,255,255,0.85); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 1px 4px rgba(18,18,26,0.08); }

.nav-cta { padding: 13px 24px; font-size: 15px; margin-left: 10px; }

/* ============ Typography — oversized, type-led ============ */
h1, h2, h3, h4 { color: var(--ink); }

h1 {
  font-family: var(--font-d);
  font-size: clamp(48px, 7.8vw, 104px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.048em;
}

h2 {
  font-family: var(--font-d);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.12;
  font-weight: 680;
  letter-spacing: -0.04em;
}

h3 { font-family: var(--font-d); font-size: 22px; font-weight: 620; letter-spacing: -0.02em; }

.lede {
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s3);
}

.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4a4a52, #0a0a0b);
  box-shadow: 0 0 0 3px rgba(10,10,11,0.08);
}

/* split-text lines get masked by JS; keep authored content visible without JS */
[data-split] .line { display: block; }
.sline { padding-bottom: 0.14em; margin-bottom: -0.14em; }

/* ============ Hero ============ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}

.hero-inner { max-width: 880px; position: relative; z-index: 2; }
.hero p.lede { margin: var(--s4) 0 var(--s5); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: var(--s3); font-size: 14px; color: var(--ink-faint); }

.hero-orb {
  position: absolute;
  right: -6vw;
  top: 18%;
  width: clamp(280px, 34vw, 520px);
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
}

.hero-orb .orb-core {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(38% 38% at 32% 28%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0) 70%),
    conic-gradient(from 140deg, #d6d7de, #8e8f9b, #f4f4f7, #b4b5c0, #fdfdfe, #9b9ca8, #e3e4e9, #d6d7de);
  box-shadow:
    0 40px 110px rgba(18,18,26,0.28),
    inset 0 2px 3px rgba(255,255,255,0.95),
    inset 0 -18px 40px rgba(18,18,26,0.22);
  filter: saturate(0.9);
}

.hero-orb .orb-glass {
  position: absolute; inset: -14%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: radial-gradient(60% 60% at 50% 38%, rgba(255,255,255,0.25), transparent 70%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* ============ Marquee ============ */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(18,18,26,0.07);
  background: rgba(255,255,255,0.25);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  backdrop-filter: blur(10px) saturate(160%);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 64px;
}

.marquee-track span::after { content: "◆"; font-size: 8px; color: var(--silver-3); }

/* ============ Grids / cards ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card .icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: var(--s3);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.4));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 5px 14px rgba(18,18,26,0.09), inset 0 1px 0 rgba(255,255,255,0.95);
}

.card h3 { margin-bottom: 12px; }
.card p { font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); }

.section-head { max-width: 720px; margin-bottom: var(--s5); }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .lede { margin-top: var(--s3); }
.section-head.centered .lede { margin-left: auto; margin-right: auto; }

/* ============ Showcase — pinned scroll-zoom dashboard ============ */
.showcase { padding: 0; }
.showcase-pin {
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.5vh, 44px);
  overflow: clip;
  position: relative;
  padding: 90px 0 36px;
}

.showcase-head {
  text-align: center;
  z-index: 3;
  width: min(760px, 90vw);
  flex: none;
}

.showcase-head h2 { font-size: clamp(28px, 3.6vw, 46px); }

.dashboard {
  width: min(820px, 90vw, 130vh);
  flex: none;
  border-radius: 32px;
  padding: 28px;
  transform-origin: center 60%;
  will-change: transform;
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 40px 110px rgba(18,18,26,0.22), inset 0 1px 0 rgba(255,255,255,0.95);
}

.dash-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.dash-bar i { width: 11px; height: 11px; border-radius: 50%; background: linear-gradient(180deg, #d9dae0, #b9bac4); box-shadow: inset 0 1px 1px rgba(255,255,255,0.9); }
.dash-bar .dash-title { margin-left: 12px; font-size: 13px; font-weight: 650; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; }

.dash-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 16px; }

.dash-panel {
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 2px 8px rgba(18,18,26,0.05);
  padding: 20px 22px;
}

.dash-panel h4 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }

.dash-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(18,18,26,0.05); }
.dash-row:last-child { border-bottom: none; }
.dash-row .who { font-size: 14.5px; font-weight: 600; width: 86px; }
.dash-row .bar { flex: 1; height: 8px; border-radius: 8px; background: rgba(18,18,26,0.07); overflow: hidden; }
.dash-row .bar i { display: block; height: 100%; border-radius: 8px; background: linear-gradient(90deg, #5c5c66, #0a0a0b); transform-origin: left; }
.dash-row .score { font-size: 14px; font-weight: 700; width: 36px; text-align: right; font-variant-numeric: tabular-nums; }

.dash-stat { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; border-bottom: 1px solid rgba(18,18,26,0.05); }
.dash-stat:last-child { border-bottom: none; }
.dash-stat b { font-family: var(--font-d); font-size: 26px; font-weight: 700; letter-spacing: -0.025em; }
.dash-stat small { font-size: 12.5px; color: var(--ink-faint); }

.showcase-captions {
  position: relative;
  z-index: 3;
  width: min(560px, 88vw);
  text-align: center;
  height: 64px;
  flex: none;
}

.showcase-captions p {
  position: absolute;
  inset: 0;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0;
}
.showcase-captions p:first-child { opacity: 1; }

/* ============ Stats strip ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-radius: var(--r-card);
  padding: 56px 32px;
  text-align: center;
}

.stat-num { font-family: var(--font-d); font-size: clamp(38px, 4.6vw, 64px); font-weight: 700; letter-spacing: -0.04em; }
.stat-label { font-size: 14.5px; color: var(--ink-faint); margin-top: 8px; max-width: 240px; margin-inline: auto; }

/* ============ Steps ============ */
.steps { display: flex; flex-direction: column; gap: var(--s4); max-width: 660px; }
.step { display: flex; gap: 26px; align-items: flex-start; }
.step-num {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px;
  color: #fff;
  background: linear-gradient(180deg, #2c2c33, #0a0a0b);
  box-shadow: 0 8px 18px rgba(10,10,11,0.3), inset 0 1px 0 rgba(255,255,255,0.22);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 16px; line-height: 1.62; }

/* ============ Pricing ============ */
.price-card { display: flex; flex-direction: column; }
.price-card .tier { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.price-card .amount { font-family: var(--font-d); font-size: 58px; font-weight: 700; letter-spacing: -0.045em; margin: 16px 0 2px; }
.price-card .amount small { font-size: 17px; font-weight: 500; color: var(--ink-faint); letter-spacing: 0; }
.price-card .for { font-size: 15px; color: var(--ink-faint); margin-bottom: var(--s4); }
.price-card ul { list-style: none; margin-bottom: var(--s4); flex: 1; }
.price-card li {
  font-size: 15px; line-height: 1.5; color: var(--ink-soft);
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid rgba(18,18,26,0.05);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content: "✓"; position: absolute; left: 4px; font-weight: 700; color: var(--ink); }
.price-card .btn { width: 100%; }

.price-featured {
  background: rgba(255,255,255,0.68);
  box-shadow: 0 28px 70px rgba(18,18,26,0.18), inset 0 1px 0 rgba(255,255,255,0.95);
}

.badge {
  position: absolute; top: 26px; right: 26px;
  font-size: 12px; font-weight: 650; letter-spacing: 0.06em;
  padding: 8px 15px; border-radius: var(--r-pill);
  color: #fff;
  background: linear-gradient(180deg, #2c2c33, #0a0a0b);
  box-shadow: 0 6px 14px rgba(10,10,11,0.3);
}

/* ============ Banner CTA ============ */
.banner {
  border-radius: 36px;
  padding: clamp(56px, 8vw, 100px) 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner h2 { max-width: 760px; margin: 0 auto var(--s3); }
.banner .lede { margin: 0 auto var(--s5); }

/* ============ FAQ ============ */
details { border-radius: 22px; padding: 24px 28px; margin-bottom: 14px; cursor: pointer; }
details summary { font-size: 17px; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-size: 24px; font-weight: 300; color: var(--ink-faint); transition: transform 0.3s var(--ease-out); flex: none; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 16px; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }

/* ============ Footer ============ */
footer { padding: 0 0 28px; }

.footer-card {
  border-radius: var(--r-card);
  padding: 40px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-card .nav-logo { font-size: 15px; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { font-size: 14.5px; color: var(--ink-soft); text-decoration: none; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--ink); }
.footer-meta { font-size: 13px; color: var(--ink-faint); width: 100%; margin-top: 8px; }

/* ============ Reveal targets (JS enhances; visible without JS) ============ */
.reveal { will-change: transform, opacity; }

/* ============ Zoom media ============ */
.zoom-frame { border-radius: var(--r-card); overflow: hidden; }
.zoom-frame > * { will-change: transform; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  section { padding: var(--s6) 0; }
  .hero { padding-top: 120px; }
  .hero-orb { display: none; }
  .banner { padding: 56px 28px; }
  .stats { grid-template-columns: 1fr; gap: 32px; }
  .dash-grid { grid-template-columns: 1fr; }
}

/* === Repside font override — font-family only (Orbitron display + Space Grotesk body) === */
body,
.btn,
h1, h2, h3,
.dash-stat b,
.stat-num,
.price-card .amount { font-family: 'Space Grotesk', sans-serif; }
.nav-logo,
.hero h1,
.hero h2 { font-family: 'Orbitron', sans-serif; }
