/*
 * Ronin's Roughnecks — unified visual system
 * Star Citizen command-interface precision with a restrained ronin aesthetic.
 */

:root {
  color-scheme: dark;
  --bg-main: #030608;
  --bg-secondary: #070b0e;
  --bg-panel: #0a1014;
  --bg-elevated: #10171c;
  --red-primary: #7d101b;
  --red-bright: #f04452;
  --red-hot: #ff6672;
  --red-soft: rgba(240, 68, 82, 0.12);
  --cyan: #6ed8e8;
  --cyan-soft: rgba(110, 216, 232, 0.1);
  --silver: #aebbc2;
  --silver-bright: #edf5f7;
  --text-main: #e8eff1;
  --text-muted: #8e9ca3;
  --border-dark: rgba(166, 202, 211, 0.13);
  --border-active: rgba(240, 68, 82, 0.42);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.48);
  --panel-gradient:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 34%),
    linear-gradient(180deg, rgba(14, 21, 26, 0.98), rgba(5, 9, 12, 0.98));
  --cut-sm: 8px;
  --cut-md: 14px;
  --site-header-height: 76px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--red-primary) #05090b;
}

*::selection {
  color: #fff;
  background: rgba(240, 68, 82, 0.55);
}

html {
  background: var(--bg-main);
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 80% 5%, rgba(110, 216, 232, 0.045), transparent 27rem),
    radial-gradient(circle at 15% 35%, rgba(240, 68, 82, 0.055), transparent 30rem),
    var(--bg-main);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.16;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 3px,
    rgba(190, 225, 232, 0.025) 4px
  );
  mix-blend-mode: screen;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

.site-header {
  min-height: 76px;
  padding: 14px clamp(18px, 3.5vw, 54px);
  background:
    linear-gradient(90deg, rgba(125, 16, 27, 0.16), transparent 24%),
    rgba(3, 7, 9, 0.9);
  border-bottom: 1px solid rgba(150, 197, 207, 0.16);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px) saturate(125%);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 1px;
}

.site-header::before {
  left: 0;
  width: min(34vw, 520px);
  background: linear-gradient(90deg, var(--red-bright), transparent);
}

.site-header::after {
  right: 0;
  width: min(18vw, 260px);
  background: linear-gradient(270deg, rgba(110, 216, 232, 0.65), transparent);
}

.logo-wrap {
  flex: 0 0 auto;
  gap: 13px;
}

.logo-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(240, 68, 82, 0.72);
  background:
    linear-gradient(135deg, transparent 42%, var(--red-bright) 43% 57%, transparent 58%),
    rgba(240, 68, 82, 0.06);
  box-shadow:
    inset 0 0 0 5px rgba(3, 7, 9, 0.9),
    0 0 22px rgba(240, 68, 82, 0.2);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(237, 245, 247, 0.75);
}

.logo {
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  letter-spacing: clamp(2px, 0.3vw, 4px);
  text-shadow: 0 0 24px rgba(237, 245, 247, 0.15);
}

.main-nav {
  justify-content: flex-end;
  gap: clamp(12px, 1.5vw, 24px);
}

.main-nav a,
.main-nav button {
  padding: 7px 0;
  color: #9babb1;
  font-family: "Orbitron", sans-serif;
  font-size: 0.67rem;
  letter-spacing: 1.35px;
  white-space: nowrap;
}

.main-nav a::before,
.main-nav button::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 3px;
  height: 3px;
  opacity: 0;
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-bright);
  transform: translateY(-50%) rotate(45deg);
  transition: opacity 0.2s ease;
}

.main-nav a:hover::before,
.main-nav button:hover::before,
.main-nav a[aria-current="page"]::before {
  opacity: 1;
}

.main-nav a::after,
.main-nav button::after {
  bottom: 1px;
  background: linear-gradient(90deg, var(--red-bright), rgba(110, 216, 232, 0.7));
}

.hero,
.subpage-hero,
.market-hero,
.media-hero,
.resources-hero,
.statistics-hero,
.hub-hero,
.login-hero,
.dashboard-hero {
  isolation: isolate;
}

.hero {
  min-height: 92vh;
  justify-content: flex-start;
  text-align: left;
  background-position: center center;
}

.hero::before,
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 5, 7, 0.94) 0%, rgba(2, 5, 7, 0.72) 34%, transparent 70%),
    linear-gradient(180deg, transparent 70%, #030608 100%);
}

.hero::after,
.subpage-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: clamp(18px, 5vw, 80px);
  top: 22%;
  width: min(380px, 48vw);
  height: 1px;
  background: linear-gradient(90deg, var(--red-bright), transparent);
  box-shadow: 0 132px 0 rgba(110, 216, 232, 0.24);
}

.hero-content {
  width: min(760px, 92vw);
  max-width: none;
  margin-left: clamp(0px, 4vw, 62px);
  text-align: left;
}

.hero-content::before {
  content: "RR // STANTON NETWORK // SIGNAL VERIFIED";
  display: block;
  margin-bottom: 18px;
  color: rgba(110, 216, 232, 0.7);
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
}

.crest-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #cad5d9;
}

.crest-line::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--red-bright);
  box-shadow: 0 0 8px rgba(240, 68, 82, 0.55);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7.2vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: clamp(2px, 0.5vw, 7px);
  text-wrap: balance;
}

.hero h1::after {
  content: "浪人";
  display: inline-block;
  margin-left: 14px;
  color: rgba(240, 68, 82, 0.72);
  font-family: serif;
  font-size: 0.38em;
  letter-spacing: 0.1em;
  vertical-align: top;
  transform: translateY(0.25em);
}

.hero-subtext {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 2px solid rgba(240, 68, 82, 0.5);
  color: #b7c2c6;
  line-height: 1.8;
}

.hero-buttons {
  justify-content: flex-start;
}

.btn,
.flyout-btn,
.tournament-btn,
.ace-btn {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - var(--cut-sm)) 0, 100% var(--cut-sm), 100% 100%, var(--cut-sm) 100%, 0 calc(100% - var(--cut-sm)));
  font-family: "Orbitron", sans-serif;
}

.btn::before,
.flyout-btn::before,
.tournament-btn::before,
.ace-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.14), transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.btn:hover::before,
.flyout-btn:hover::before,
.tournament-btn:hover::before,
.ace-btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  border-color: rgba(255, 116, 128, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 45%),
    linear-gradient(135deg, #70101a, #b21e2b);
}

.btn-secondary {
  border-color: rgba(110, 216, 232, 0.35);
  background: rgba(7, 16, 20, 0.72);
}

.btn-rsi {
  position: relative;
  margin-left: 0 !important;
  border-color: rgba(110, 216, 232, 0.25) !important;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  background:
    linear-gradient(90deg, rgba(110, 216, 232, 0.06), transparent 45%),
    rgba(3, 8, 11, 0.82) !important;
}

.btn-rsi::after {
  content: "RSI // VERIFIED";
  position: absolute;
  top: 8px;
  right: 12px;
  color: rgba(110, 216, 232, 0.42);
  font-family: "Orbitron", sans-serif;
  font-size: 0.48rem;
  letter-spacing: 1.4px;
}

.stats-strip,
.tournament-command-strip,
.telemetry-grid {
  border-color: rgba(139, 188, 198, 0.13);
  background:
    linear-gradient(90deg, rgba(240, 68, 82, 0.04), transparent 28%, rgba(110, 216, 232, 0.025)),
    #05090c;
}

.stat-card,
.section-card,
.content-card,
.market-card,
.listing-card,
.resource-card,
.dashboard-card,
.media-card,
.combat-panel,
.telemetry-card,
.hero-panel,
.featured-tournament,
.ace-resources-panel {
  border-color: var(--border-dark);
  border-radius: 0;
  background: var(--panel-gradient);
  box-shadow: var(--shadow-dark);
  clip-path: polygon(0 0, calc(100% - var(--cut-md)) 0, 100% var(--cut-md), 100% 100%, var(--cut-md) 100%, 0 calc(100% - var(--cut-md)));
}

.stat-card::after,
.section-card::after,
.content-card::after,
.market-card::after,
.resource-card::after,
.dashboard-card::after,
.combat-panel::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 9px;
  width: 22px;
  height: 3px;
  opacity: 0.42;
  border-top: 1px solid var(--cyan);
  border-bottom: 1px solid var(--red-bright);
}

.stat-card:hover,
.section-card:hover,
.content-card:hover,
.market-card:hover,
.listing-card:hover,
.resource-card:hover,
.dashboard-card:hover,
.media-card:hover {
  border-color: var(--border-active);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(240, 68, 82, 0.04);
}

.stat-value,
.section-tag,
.section-label,
.tournament-kicker,
.eyebrow {
  color: var(--red-hot);
}

.section-tag,
.section-label,
.tournament-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Orbitron", sans-serif;
}

.section-tag::before,
.section-label::before,
.tournament-kicker::before,
.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.subpage-content h1,
.page-title,
.market-hero h1,
.media-hero h1,
.resources-hero h1,
.statistics-hero h1 {
  text-shadow: 0 0 34px rgba(240, 68, 82, 0.2);
}

input,
select,
textarea {
  border-radius: 0 !important;
  border-color: rgba(145, 180, 188, 0.2) !important;
  background: rgba(2, 7, 10, 0.88) !important;
  color: var(--silver-bright) !important;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(110, 216, 232, 0.32) !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(240, 68, 82, 0.68) !important;
  box-shadow: 0 0 0 3px rgba(240, 68, 82, 0.1) !important;
}

table {
  border-collapse: collapse;
  background: rgba(4, 9, 12, 0.72);
}

th {
  color: #cbd8dc;
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1.2px;
  background: rgba(110, 216, 232, 0.045);
}

tr {
  border-color: rgba(145, 180, 188, 0.12);
}

tbody tr:hover {
  background: rgba(240, 68, 82, 0.045);
}

.music-toggle {
  top: 88px;
  right: 24px;
  border-color: rgba(110, 216, 232, 0.24);
  color: #bdc9cd;
  background: rgba(2, 7, 10, 0.82);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.tournament-flyout,
.modal-content,
.flyout-content {
  border-color: var(--border-dark);
  background: var(--panel-gradient);
}

footer {
  position: relative;
  background: #020507;
  border-top-color: rgba(145, 180, 188, 0.12);
  font-family: "Orbitron", sans-serif;
  font-size: 0.67rem;
  letter-spacing: 1.4px;
}

footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(440px, 60vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  transform: translateX(-50%);
}

@media (prefers-reduced-motion: no-preference) {
  .logo-mark {
    animation: ronin-signal 4s ease-in-out infinite;
  }

  @keyframes ronin-signal {
    0%, 84%, 100% { box-shadow: inset 0 0 0 5px rgba(3, 7, 9, 0.9), 0 0 16px rgba(240, 68, 82, 0.13); }
    90% { box-shadow: inset 0 0 0 5px rgba(3, 7, 9, 0.9), 0 0 28px rgba(240, 68, 82, 0.42); }
  }
}

@media (max-width: 1180px) {
  .site-header {
    align-items: flex-start;
  }

  .main-nav {
    max-width: 72vw;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 3px 4px 10px;
    mask-image: linear-gradient(90deg, #000 92%, transparent);
  }
}

@media (max-width: 768px) {
  .site-header {
    position: sticky;
    gap: 11px;
    min-height: auto;
    padding: 13px 16px 8px;
  }

  .logo-mark {
    width: 24px;
    height: 24px;
  }

  .main-nav {
    width: 100%;
    max-width: none;
    flex-wrap: nowrap;
    gap: 20px;
  }

  .main-nav a,
  .main-nav button {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 88vh;
    align-items: flex-end;
    padding: 150px 20px 74px;
    background-position: 61% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(2, 5, 7, 0.96) 0%, rgba(2, 5, 7, 0.72) 58%, rgba(2, 5, 7, 0.18) 100%),
      linear-gradient(90deg, rgba(2, 5, 7, 0.62), transparent);
  }

  .hero::after,
  .subpage-hero::after {
    left: 20px;
    top: auto;
    bottom: 52px;
    width: 42vw;
    box-shadow: none;
  }

  .hero-content {
    width: 100%;
    margin: 0;
  }

  .hero-content::before {
    font-size: 0.5rem;
    letter-spacing: 1.6px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
    overflow-wrap: anywhere;
  }

  .hero h1::after {
    margin-left: 8px;
  }

  .hero-subtext {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .hero-buttons .btn {
    max-width: none;
  }

  a.btn-rsi {
    width: 100% !important;
    min-height: 72px !important;
    padding: 14px 18px !important;
  }

  .btn-rsi::after {
    display: none;
  }

  .music-toggle {
    position: absolute !important;
    top: 8px !important;
    right: 12px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 1100;
    padding: 9px 12px;
    font-size: 0.6rem;
    transform: none !important;
  }

  .tournament-flyout {
    display: none;
  }
}

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

.site-broadcast-reel {
  position: fixed;
  top: var(--site-header-height);
  left: 0;
  z-index: 999;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(190, 20, 42, 0.42);
  border-right: 0;
  border-bottom: 1px solid rgba(190, 20, 42, 0.52);
  border-left: 0;
  background:
    linear-gradient(90deg, rgba(190, 20, 42, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.96), rgba(4, 5, 8, 0.98));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.site-broadcast-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
}

.news-reel-header {
  position: relative;
  z-index: 1;
  display: inline-flex;
  float: left;
  min-height: 42px;
  padding: 0 18px 0 50px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-right: 1px solid rgba(190, 20, 42, 0.42);
  background:
    linear-gradient(90deg, rgba(120, 0, 18, 0.72), rgba(15, 17, 22, 0.96));
}

.news-reel-header h2 {
  margin: 0;
  color: var(--silver-bright);
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-reel-header .section-tag {
  margin: 0;
  font-size: 0.62rem;
  white-space: nowrap;
}

.news-reel-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 42px;
  border: 0;
  background: rgba(0, 0, 0, 0.42);
}

.news-reel-window::before,
.news-reel-window::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 90px;
  height: 100%;
  pointer-events: none;
}

.news-reel-window::before {
  left: 0;
  background: linear-gradient(90deg, #050609, transparent);
}

.news-reel-window::after {
  right: 0;
  background: linear-gradient(270deg, #050609, transparent);
}

.news-reel-track {
  display: flex;
  width: max-content;
  min-height: 42px;
  align-items: center;
  animation: roninNewsReel 42s linear infinite;
}

.news-reel-window:hover .news-reel-track {
  animation-play-state: paused;
}

.news-reel-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0 28px;
  color: rgba(244, 247, 252, 0.78);
  white-space: nowrap;
}

.news-reel-item::before {
  content: "◆";
  color: #ff4058;
  text-shadow: 0 0 12px rgba(255, 64, 88, 0.35);
}

.news-reel-item strong {
  color: #ff4058;
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.news-reel-item span {
  color: rgba(245, 248, 252, 0.86);
}

.news-reel-item.broadcast-priority::before,
.news-reel-item.broadcast-priority strong {
  color: #ffd36f;
}

.news-reel-item.broadcast-warning::before,
.news-reel-item.broadcast-warning strong {
  color: #ff9a45;
}

.news-reel-item.broadcast-emergency::before,
.news-reel-item.broadcast-emergency strong {
  color: #ff3854;
  text-shadow: 0 0 14px rgba(255, 56, 84, 0.52);
}

.news-reel-item.broadcast-success::before,
.news-reel-item.broadcast-success strong {
  color: #7cffc8;
}

.news-reel-item.broadcast-emergency span {
  color: rgba(255, 225, 229, 0.94);
}

body:has(.site-broadcast-reel) .hero,
body:has(.site-broadcast-reel) .subpage-hero,
body:has(.site-broadcast-reel) .market-hero,
body:has(.site-broadcast-reel) .media-hero,
body:has(.site-broadcast-reel) .resources-hero,
body:has(.site-broadcast-reel) .statistics-hero {
  padding-top: clamp(185px, 18vh, 235px);
}

body:has(.site-broadcast-reel) .tournament-shell,
body:has(.site-broadcast-reel) .ace-page {
  padding-top: 118px;
}

@keyframes roninNewsReel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-broadcast-reel {
    top: var(--site-header-height);
  }

  .news-reel-header {
    padding-left: 24px;
  }

  body:has(.site-broadcast-reel) .hero,
  body:has(.site-broadcast-reel) .subpage-hero,
  body:has(.site-broadcast-reel) .market-hero,
  body:has(.site-broadcast-reel) .media-hero,
  body:has(.site-broadcast-reel) .resources-hero,
  body:has(.site-broadcast-reel) .statistics-hero {
    padding-top: 205px;
  }

  body:has(.site-broadcast-reel) .tournament-shell,
  body:has(.site-broadcast-reel) .ace-page {
    padding-top: 112px;
  }
}

@media (max-width: 720px) {
  .site-broadcast-reel {
    position: sticky;
    top: var(--site-header-height);
  }

  .news-reel-header {
    float: none;
    display: flex;
    min-height: 36px;
    padding: 0 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(190, 20, 42, 0.36);
  }

  .news-reel-window,
  .news-reel-track {
    min-height: 38px;
  }

  .news-reel-item {
    padding: 0 18px;
  }

  body:has(.site-broadcast-reel) .hero,
  body:has(.site-broadcast-reel) .subpage-hero,
  body:has(.site-broadcast-reel) .market-hero,
  body:has(.site-broadcast-reel) .media-hero,
  body:has(.site-broadcast-reel) .resources-hero,
  body:has(.site-broadcast-reel) .statistics-hero {
    padding-top: 285px;
  }

  body:has(.site-broadcast-reel) .tournament-shell,
  body:has(.site-broadcast-reel) .ace-page {
    padding-top: 200px;
  }
}

/* Final home hero alignment override */
.home-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(920px, 92vw);
  max-width: 920px;
  margin-inline: auto !important;
  text-align: center;
}

.home-hero .home-title {
  display: grid;
  justify-items: center;
  width: min(920px, 100%);
  max-width: none;
  margin-inline: auto !important;
  text-align: center;
  text-wrap: normal;
}

.home-hero .home-title span {
  display: block;
  width: 100%;
  text-align: center;
}

.home-hero .hero-content::before,
.home-hero .crest-line,
.home-hero .hero-subtext,
.home-hero .hero-buttons,
.home-hero .btn-rsi {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.home-hero .hero-subtext {
  padding-left: 0;
  border-left: 0;
}

.home-hero .hero-buttons {
  justify-content: center;
}
