/* ============================================================
   Also Riders Club
   Industrial owners-club system: graphite, stamped panels,
   measurement lines, purple accent rails, and oval controls.
   ============================================================ */

:root {
  color-scheme: dark light;
  --arc-purple: #8f72ff;
  --arc-purple-deep: #6750d9;
  --signal: #d9d45f;
  --black: #060608;
  --steel: #17171b;
  --steel-2: #222127;
  --ink: #151519;
  --white: #fffaf1;
  --paper: #ebe4d7;
  --paper-2: #f7f0e4;
  --muted: #766f64;
  --line: rgba(6, 6, 8, 0.18);
  --line-light: rgba(255, 250, 241, 0.2);
  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;
  --container: 1320px;
  --gutter: clamp(1rem, 3vw, 2.5rem);
  --radius: 0;
  --measure: 64ch;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: var(--black); color: var(--white); }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  color: inherit;
  font-family: var(--font-display);
  font-stretch: 95%;
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: 0;
}
h1 { font-size: clamp(4rem, 12.5vw, 12rem); }
h2 { font-size: clamp(2.6rem, 6vw, 6rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.65rem); line-height: 0.98; }
h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
p { max-width: var(--measure); }

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.mono,
.eyebrow,
.site-nav a,
.btn,
dt,
.num {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow {
  display: block;
  margin: 0 0 1rem;
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  font-weight: 600;
}

.lede {
  color: inherit;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.36;
}

.wordmark-italic { font-style: normal; }
.wordmark-italic--tales { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: color-mix(in srgb, var(--steel) 94%, transparent);
  border-bottom: 1px solid rgba(255, 250, 241, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--arc-purple), var(--signal), var(--arc-purple));
}
.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  width: min(100%, var(--container));
  min-height: 74px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: 50%;
  object-fit: cover;
  background: var(--black);
}
.brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 3vw, 3.75rem);
}
.site-nav a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:hover { color: var(--arc-purple); text-decoration: none; }
.site-nav .nav-cta { margin-left: clamp(0rem, 1.5vw, 1rem); }
.site-nav .btn { color: var(--white); }
.site-nav .btn {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 250, 241, 0.5);
}
.site-nav .btn:hover {
  color: var(--black);
  background: var(--white);
}

@media (max-width: 720px) {
  .site-header-inner { min-height: 64px; }
  .brand-mark { width: 38px; height: 38px; }
  .site-nav { gap: 0.75rem; }
  .site-nav a:not(.nav-cta) { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.55rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.btn:hover {
  color: var(--black);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--black) inset;
}
.btn:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}
.btn-sm {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  box-shadow: none;
}
.btn-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 250, 241, 0.48);
}
.btn-ghost:hover {
  color: var(--black);
  background: var(--white);
}
.btn-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 2px 0 var(--white);
}
.btn-light:hover {
  color: var(--white);
  background: transparent;
  box-shadow: 0 5px 0 var(--white);
}
.arrow { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  padding: 0 0 clamp(3.5rem, 8vw, 6rem);
  color: var(--white);
  background:
    linear-gradient(rgba(255, 250, 241, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 241, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 26%, rgba(143, 114, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--steel), #0c0c10 55%, #101015);
  background-size: 80px 80px, 80px 80px, auto, auto;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(217, 212, 95, 0.08) 52% 52.6%, transparent 52.6%),
    linear-gradient(90deg, transparent 0 12%, rgba(143, 114, 255, 0.24) 12% 12.35%, transparent 12.35%);
  pointer-events: none;
  z-index: -1;
}
.hero-topline {
  display: flex;
  justify-content: center;
  min-height: 42px;
  align-items: center;
  color: var(--signal);
  background: rgba(6, 6, 8, 0.36);
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-topline span { padding: 0.25rem 1rem; }
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100svh - 156px);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  display: flex;
  max-width: 9ch;
  flex-direction: column;
  gap: 0;
  margin: 0 0 1.35rem;
}
.hero-title span {
  display: block;
  color: var(--white);
  background: transparent;
  padding: 0;
  line-height: 0.82;
}
.hero-title span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 2px var(--arc-purple);
  text-stroke: 2px var(--arc-purple);
  transform: none;
}
.hero-lede {
  width: min(100%, 44rem);
  margin-bottom: 1.8rem;
  color: rgba(255, 250, 241, 0.84);
  background: transparent;
  box-shadow: none;
  font-weight: 650;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-badge {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 470px);
  padding: clamp(0.85rem, 2vw, 1.15rem);
  border: 1px solid rgba(255, 250, 241, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.08), transparent),
    var(--black);
  box-shadow: 18px 18px 0 rgba(143, 114, 255, 0.18);
}
.hero-badge img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 241, 0.14);
}
.hero-badge-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  color: rgba(255, 250, 241, 0.68);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-linework {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.linework {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 250, 241, 0.16);
  opacity: 1;
}
.linework-rail {
  width: 36vw;
  min-width: 260px;
  height: 62vh;
  left: 4vw;
  top: 22%;
  border-left: 0;
  border-top: 0;
  transform: skewX(-12deg);
}
.linework-gauge {
  width: clamp(260px, 34vw, 520px);
  height: clamp(260px, 34vw, 520px);
  right: 7vw;
  top: 20%;
  border-radius: 50%;
  border-color: rgba(143, 114, 255, 0.28);
}
.linework-route {
  width: 58vw;
  height: 1px;
  left: 15vw;
  bottom: 22%;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  transform: rotate(-8deg);
}
.hero-ticker {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin: 0 auto;
  color: rgba(255, 250, 241, 0.76);
  background: transparent;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  padding-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-ticker span {
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 8rem;
  }
  .hero-copy { order: 2; }
  .hero-badge {
    order: 1;
    justify-self: start;
    width: min(80vw, 420px);
  }
  .hero-ticker { position: relative; left: auto; right: auto; bottom: auto; margin-top: -5rem; }
}

@media (max-width: 560px) {
  .hero { min-height: auto; }
  .hero-title { font-size: clamp(3.6rem, 21vw, 7rem); }
  .hero-actions .btn { width: 100%; }
  .linework-rail { opacity: 0.45; }
  .linework-route { display: none; }
}

/* Section rhythm */
section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
section + section { border-top: 2px solid var(--black); }
.section-head {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.section-head h2 { margin: 0; }
.section-head--split {
  grid-template-columns: 0.45fr 1fr auto;
  align-items: center;
}

@media (max-width: 760px) {
  .section-head,
  .section-head--split { grid-template-columns: 1fr; align-items: start; }
}

/* Specs */
.spec-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.04) 1px, transparent 1px),
    var(--black);
  background-size: 96px 100%;
}
.spec-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.spec-kicker h2 {
  max-width: 8ch;
  margin: 0.9rem 0 0;
}
.spec-list {
  margin: 0;
  border-top: 2px solid var(--line-light);
}
.spec-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 2px solid var(--line-light);
}
.spec-list dt {
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 600;
}
.spec-list dd {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.35;
}

@media (max-width: 760px) {
  .spec-grid,
  .spec-list div { grid-template-columns: 1fr; }
  .spec-list div { gap: 0.35rem; }
}

/* Club system panels */
.club-system {
  background:
    linear-gradient(90deg, rgba(6, 6, 8, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 120px 100%;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--black);
}
.system-panel {
  min-height: 360px;
  padding: clamp(1.35rem, 3vw, 2rem);
  color: var(--black);
  background: var(--paper-2);
  border-right: 2px solid var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.system-panel:last-child { border-right: 0; }
.system-panel::before {
  content: "";
  width: 42px;
  height: 4px;
  margin-bottom: 1rem;
  background: var(--arc-purple);
}
.system-panel--dark {
  color: var(--white);
  background: var(--black);
}
.system-panel--dark::before { background: var(--signal); }
.system-panel .num {
  font-size: 0.8rem;
  font-weight: 600;
}
.system-panel h3 {
  margin: auto 0 1rem;
}
.system-panel p {
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.42;
}

@media (max-width: 900px) {
  .system-grid { grid-template-columns: 1fr; }
  .system-panel {
    min-height: 240px;
    border-right: 0;
    border-bottom: 2px solid var(--black);
  }
  .system-panel:last-child { border-bottom: 0; }
}

/* Events */
.events-section {
  background:
    linear-gradient(90deg, rgba(3, 3, 5, 0.08) 1px, transparent 1px),
    var(--white);
  background-size: 120px 100%;
}
.events-section .btn-ghost {
  color: var(--black);
  border-color: var(--black);
}
.events-section .btn-ghost:hover {
  color: var(--white);
  background: var(--black);
}
.heylo-events {
  min-height: 360px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 12px 12px 0 rgba(143, 114, 255, 0.42);
  overflow: hidden;
}
#heylo-event-feed {
  min-height: 320px;
}
.events-empty {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--black);
  background: var(--white);
  border: 2px dashed var(--black);
}
.event-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--black);
}
.event-list li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 2px solid var(--black);
}
.event-date,
.event-rsvp {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.event-title {
  margin-bottom: 0.1rem;
  font-weight: 850;
  font-size: 1.4rem;
  line-height: 1.05;
}
.event-meta {
  color: var(--muted);
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .event-list li { grid-template-columns: 1fr; gap: 0.35rem; }
  .heylo-events { box-shadow: 7px 7px 0 rgba(143, 114, 255, 0.42); }
}

/* CTA */
.cta {
  color: var(--white);
  background: var(--black);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr auto;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
}
.cta h2 {
  max-width: 10ch;
  margin-bottom: 0;
}
.cta p {
  color: rgba(255, 250, 242, 0.78);
  margin-bottom: 0;
}
.eyebrow--inverse { color: var(--arc-purple); }

@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; align-items: start; }
  .cta .btn { justify-self: start; }
}

/* Footer */
.site-footer {
  color: var(--white);
  background: var(--black);
  padding: clamp(3rem, 7vw, 5rem) 0 1.5rem;
  border-top: 2px solid var(--arc-purple);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-bottom: 2rem;
}
.footer-brand p {
  color: rgba(255, 250, 242, 0.72);
  max-width: 36rem;
  margin-top: 1rem;
}
.footer-col h4 {
  color: var(--arc-purple);
  margin: 0 0 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col a {
  color: var(--white);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--arc-purple);
}
.footer-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1rem 0;
  border-top: 2px solid var(--line-light);
  border-bottom: 2px solid var(--line-light);
}
.footer-ticker span {
  padding: 0.5rem 0.85rem;
  color: var(--black);
  background: var(--arc-purple);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}
.footer-bottom small {
  max-width: 68rem;
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

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

/* Content pages */
.page {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper);
}
.page-head {
  max-width: 960px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.page-head h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 9rem);
}
.page-head .lede {
  margin-top: 1rem;
  font-weight: 650;
}
.page-body {
  max-width: var(--measure);
}
.page--wide .page-body {
  max-width: none;
}
.page--wide .page-body > h2,
.page--wide .page-body > p {
  max-width: var(--measure);
}
.page-body h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.98;
}
.page-body h2:first-child { margin-top: 0; }
.page-body p,
.page-body li {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.62;
}
.page-body ul,
.page-body ol {
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
}
.page-body li { margin-bottom: 0.5rem; }
.page-body a {
  color: var(--black);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.page-body .btn {
  margin: 0.5rem 0 1.5rem;
}

/* Motion */
@keyframes reveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: reveal 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.reveal-1 { animation-delay: 60ms; }
.reveal-2 { animation-delay: 160ms; }
.reveal-3 { animation-delay: 280ms; }
.reveal-4 { animation-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --arc-purple: #6f55dd;
    --arc-purple-deep: #4c3ab6;
    --signal: #6c680d;
    --black: #101013;
    --steel: #f3ecdf;
    --steel-2: #e5dccd;
    --ink: #151519;
    --white: #fffaf1;
    --paper: #ebe4d7;
    --paper-2: #fbf4e8;
    --muted: #665e54;
    --line: rgba(16, 16, 19, 0.18);
    --line-light: rgba(16, 16, 19, 0.16);
  }

  ::selection {
    background: var(--arc-purple);
    color: var(--white);
  }

  .site-header {
    color: var(--ink);
    background: color-mix(in srgb, var(--paper-2) 92%, transparent);
    border-bottom-color: rgba(16, 16, 19, 0.18);
  }

  .brand,
  .site-nav a {
    color: var(--ink);
  }

  .brand-mark {
    border-color: rgba(16, 16, 19, 0.28);
  }

  .site-nav .btn {
    color: var(--ink);
    border-color: rgba(16, 16, 19, 0.42);
  }

  .site-nav .btn:hover {
    color: var(--white);
    background: var(--black);
  }

  .hero {
    color: var(--ink);
    background:
      linear-gradient(rgba(16, 16, 19, 0.075) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16, 16, 19, 0.075) 1px, transparent 1px),
      radial-gradient(circle at 78% 26%, rgba(111, 85, 221, 0.16), transparent 30%),
      linear-gradient(135deg, var(--paper-2), var(--paper) 62%, #ddd3c1);
    background-size: 80px 80px, 80px 80px, auto, auto;
  }

  .hero::before {
    background:
      linear-gradient(115deg, transparent 0 52%, rgba(108, 104, 13, 0.16) 52% 52.6%, transparent 52.6%),
      linear-gradient(90deg, transparent 0 12%, rgba(111, 85, 221, 0.26) 12% 12.35%, transparent 12.35%);
  }

  .hero-topline {
    color: var(--signal);
    background: rgba(16, 16, 19, 0.045);
    border-bottom-color: rgba(16, 16, 19, 0.14);
  }

  .hero-title span {
    color: var(--ink);
  }

  .hero-title span:nth-child(2) {
    color: transparent;
    -webkit-text-stroke-color: var(--arc-purple);
    text-stroke-color: var(--arc-purple);
  }

  .hero-lede {
    color: rgba(16, 16, 19, 0.78);
  }

  .hero .btn-ghost {
    color: var(--ink);
    border-color: rgba(16, 16, 19, 0.38);
  }

  .hero .btn-ghost:hover {
    color: var(--white);
    background: var(--black);
  }

  .linework {
    border-color: rgba(16, 16, 19, 0.15);
  }

  .linework-gauge {
    border-color: rgba(111, 85, 221, 0.26);
  }

  .hero-ticker {
    color: rgba(16, 16, 19, 0.7);
    border-top-color: rgba(16, 16, 19, 0.18);
  }

  .hero-ticker span {
    border-color: rgba(16, 16, 19, 0.2);
    background: rgba(255, 250, 241, 0.42);
  }

  .spec-band,
  .cta,
  .site-footer {
    color: var(--white);
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.04) 1px, transparent 1px),
      var(--black);
    background-size: 96px 100%;
  }

  .club-system,
  .page {
    background:
      linear-gradient(90deg, rgba(16, 16, 19, 0.07) 1px, transparent 1px),
      var(--paper);
    background-size: 120px 100%;
  }

  .events-section {
    background:
      linear-gradient(90deg, rgba(16, 16, 19, 0.07) 1px, transparent 1px),
      var(--paper-2);
    background-size: 120px 100%;
  }

  .heylo-events,
  .events-empty {
    background: var(--white);
  }
}
