/* KinsBlood marketing homepage — scoped to body.page-home */

body.page-home {
  --home-bg: #050714;
  --home-panel: #0c1428;
  --home-line: #184173;
  --home-text: #eef3ff;
  --home-muted: #9fa9bd;
  --home-pink: #f24c6a;
  --home-pink2: #ff6b82;
  --home-cyan: #55e1bd;
  --home-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --home-display: "Cinzel", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --home-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --home-shell: 1200px;
  --home-edge-line: #193b6d;
  --home-section-pad-x: clamp(1.5rem, 5vw, 3.5rem);
  --home-cards-max: 920px;
  --home-hero-bg-zoom: 60%;
  --home-hero-bg-fade: 18%;
  --home-hero-bg-fade-right: 8%;
  --home-hero-bg-fade-bottom: 18%;
  background: radial-gradient(circle at 72% -4%, #0f1f42 0, #080d1c 22%, var(--home-bg) 52%), var(--home-bg);
  color: var(--home-text);
  font-family: var(--home-sans);
  line-height: 1.6;
}

body.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/static/images/home/grain.png");
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

body.page-home .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(5, 7, 20, 0.92);
  border-bottom: 1px solid var(--home-edge-line);
  backdrop-filter: blur(14px);
  padding: 0;
  box-sizing: border-box;
}

/* Keep default .logo blood-gradient from mud.css; only scale on home. */
body.page-home .logo {
  font-size: 1.35rem;
}

body.page-home .header-btn--primary {
  background: linear-gradient(180deg, var(--home-pink2), var(--home-pink));
  box-shadow: 0 8px 28px rgba(242, 76, 106, 0.28);
  border: none;
  font-weight: 900;
}

body.page-home .page-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.home-v2-page {
  width: 100%;
  max-width: none;
  overflow-x: clip;
}

/* Escape centered page shells — background/borders span the viewport. */
.home-v2-full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.home-v2 {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 var(--home-section-pad-x);
  box-sizing: border-box;
}

.home-v2-inner {
  width: 100%;
  max-width: var(--home-shell);
  margin: 0 auto;
  box-sizing: border-box;
}

body.page-home .header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.35rem var(--home-section-pad-x);
  box-sizing: border-box;
}

.home-v2-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.home-v2-section-title::before,
.home-v2-section-title::after {
  content: "◆";
  color: var(--home-pink);
  font-size: 0.55rem;
  line-height: 1;
  opacity: 0.9;
  flex-shrink: 0;
}

.home-v2-section-title--compact {
  margin-top: 0.35rem;
}

.home-v2-section-title--lore::before,
.home-v2-section-title--lore::after {
  content: none;
}

.home-v2-section-divider {
  display: block;
  width: min(560px, 88%);
  max-width: 100%;
  height: auto;
  margin: 0 auto 1.25rem;
  opacity: 0.92;
}

.home-v2-section-title--lore {
  margin-bottom: 0.85rem;
}

body.page-home .site-footer {
  display: none;
}

.home-v2-page a,
.home-v2 a {
  color: inherit;
  text-decoration: none;
}

.home-v2-hero-band {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
  border-top: 1px solid var(--home-edge-line);
  position: relative;
  overflow: hidden;
  background-color: var(--home-bg);
}

.home-v2-edge-rule {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  padding: 0;
  border: 0;
  height: 1px;
  background: var(--home-edge-line);
  opacity: 1;
  flex-shrink: 0;
}

.home-v2-hero-band > .home-v2-edge-rule {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.home-v2-hero-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 1px;
  background: url("/static/images/home/heromain.png") right center / var(--home-hero-bg-zoom) auto no-repeat;
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      transparent calc(100% - var(--home-hero-bg-zoom) - 2%),
      #000 calc(100% - var(--home-hero-bg-zoom) + var(--home-hero-bg-fade)),
      #000 calc(100% - var(--home-hero-bg-fade-right) - 2%),
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      #000 0%,
      #000 calc(100% - var(--home-hero-bg-fade-bottom) - 2%),
      transparent 100%
    );
  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      transparent calc(100% - var(--home-hero-bg-zoom) - 2%),
      #000 calc(100% - var(--home-hero-bg-zoom) + var(--home-hero-bg-fade)),
      #000 calc(100% - var(--home-hero-bg-fade-right) - 2%),
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      #000 0%,
      #000 calc(100% - var(--home-hero-bg-fade-bottom) - 2%),
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  pointer-events: none;
  z-index: 0;
}

.home-v2-hero-band::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 1px;
  background: linear-gradient(
    90deg,
    rgba(5, 7, 20, 0.96) 0%,
    rgba(5, 7, 20, 0.9) 28%,
    rgba(5, 7, 20, 0.55) 48%,
    rgba(5, 7, 20, 0.15) 68%,
    transparent 82%
  );
  pointer-events: none;
  z-index: 0;
}

.home-v2-hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2rem var(--home-section-pad-x) 2.25rem calc(var(--home-section-pad-x) * 2 + 1.25rem);
  min-height: clamp(380px, 46vw, 520px);
  box-sizing: border-box;
}

.home-v2-hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(540px, 46%);
}

.home-v2-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(46, 160, 67, 0.16);
  color: #6ee7a8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-v2-hero h1 {
  font-family: var(--home-display);
  font-size: clamp(2.1rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  margin: 1.25rem 0 1.25rem;
  letter-spacing: 0.03em;
  max-width: 540px;
  font-weight: 700;
  text-transform: none;
}

.home-v2-hero h1 span {
  display: inline;
  font-family: inherit;
  font-weight: 900;
  color: var(--home-pink);
  text-shadow: 0 0 25px rgba(242, 76, 106, 0.28);
}

.home-v2-lead {
  max-width: 520px;
  color: var(--home-muted);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.home-v2-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 1.75rem;
}

.home-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  text-decoration: none;
}

.home-v2-btn-primary {
  background: linear-gradient(180deg, #ff5e7a, #e93e61);
  color: #fff;
  padding: 15px 26px;
  box-shadow: 0 13px 32px rgba(242, 76, 106, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.home-v2-btn-primary:hover {
  filter: brightness(1.06);
}

.home-v2-btn-primary--large {
  padding: 18px 34px;
  font-size: 1.05rem;
}

.home-v2-btn-ghost {
  padding: 12px 22px;
  border: 1px solid #46638f;
  background: rgba(5, 11, 25, 0.38);
  color: #cbd7f2;
}

.home-v2-btn-ghost:hover {
  border-color: var(--home-pink);
  color: #fff;
}

.home-v2-text-link {
  color: #9baccc;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0;
}

.home-v2-text-link:hover {
  color: #fff;
}

.home-v2-lore {
  width: 100vw;
  max-width: 100vw;
  margin: 0 0 2rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2rem var(--home-section-pad-x) 2.75rem;
  text-align: center;
  border: 1px solid #173d70;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: radial-gradient(circle at top, #0d1e3f 0, #050a16 72%);
  box-shadow: inset 0 0 45px rgba(55, 109, 196, 0.1);
  scroll-margin-top: 5rem;
  box-sizing: border-box;
}

.home-v2-lore-inner {
  width: 100%;
  max-width: var(--home-shell);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.home-v2-eyebrow {
  color: var(--home-pink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin: 0;
}

.home-v2-lore h2,
.home-v2-features h2,
.home-v2-update h2 {
  font-size: 1.9375rem;
  line-height: 1.2;
  margin: 0.5rem 0 1.25rem;
}

.home-v2-section-intro {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  color: var(--home-muted);
}

.home-v2-lore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 2rem;
}

.home-v2-lore-grid article {
  padding: 20px 16px;
  border-right: 1px solid #2a3d63;
}

.home-v2-lore-grid article:last-child {
  border-right: 0;
}

.home-v2-lore-grid img {
  width: 52px;
  height: 52px;
  display: block;
  margin: 0 auto 0.85rem;
  object-fit: contain;
}

.home-v2-lore-grid h3 {
  color: var(--home-pink);
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.home-v2-lore-grid p {
  color: var(--home-muted);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

.home-v2-chronicle-toggle-wrap {
  margin-top: 0.5rem;
}

.home-v2-chronicle-full {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #2a4a72;
  text-align: left;
  animation: home-v2-fade-in 0.45s ease;
}

.home-v2-chronicle-full[hidden] {
  display: none !important;
}

@keyframes home-v2-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-v2-chronicle-full .home-v2-chronicle-inner {
  max-width: 720px;
  margin: 0 auto;
  color: var(--home-text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.home-v2-chronicle-full p {
  margin: 0 0 1.1rem;
}

.home-v2-chronicle-full .home-v2-chronicle-lead {
  font-size: 1.08rem;
}

.home-v2-chronicle-full h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.65rem;
  color: var(--home-pink);
  font-weight: 800;
}

.home-v2-quote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--home-pink);
  background: rgba(15, 27, 53, 0.65);
  border-radius: 0 8px 8px 0;
}

.home-v2-quote p {
  margin: 0 0 0.75rem;
  font-style: italic;
  font-size: 1.05rem;
}

.home-v2-quote footer {
  font-size: 0.85rem;
  color: var(--home-muted);
  font-style: normal;
}

.home-v2-features {
  width: 100%;
  max-width: var(--home-cards-max);
  margin: 0 auto;
  padding: 0.75rem 0 0.5rem;
  text-align: center;
  box-sizing: border-box;
}

.home-v2-features h2 {
  font-size: 1.625rem;
  margin: 0 0 1rem;
}

.home-v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.home-v2-feature-grid article {
  text-align: center;
  min-height: 0;
  border: 1px solid #1b4d86;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(14, 26, 52, 0.98), rgba(8, 14, 30, 0.98));
  padding: 1.1rem 0.9rem 1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.home-v2-feature-grid img {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  display: block;
  margin: 0 auto 0.55rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(126, 184, 255, 0.2));
}

.home-v2-feature-grid h3 {
  color: var(--home-pink);
  font-size: 0.875rem;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.home-v2-feature-grid p {
  color: var(--home-muted);
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.42;
}

.home-v2-update {
  width: 100%;
  max-width: var(--home-cards-max);
  margin: 0.85rem auto 2rem;
  padding: 1.65rem 1.35rem 1.75rem;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #0e1a36, #0a1224);
  border: 1px solid #153d70;
  box-sizing: border-box;
}

.home-v2-update-icon {
  width: 72px;
  height: auto;
  max-height: 52px;
  margin-bottom: 0.15rem;
}

.home-v2-update .home-v2-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--home-cyan);
  font-weight: 800;
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
}

.home-v2-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50fa7b;
  box-shadow: 0 0 8px rgba(80, 250, 123, 0.55);
  flex-shrink: 0;
}

.home-v2-update h2 {
  font-size: 1.625rem;
  margin: 0.35rem 0 0.75rem;
}

.home-v2-update p:last-child {
  color: var(--home-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.84rem;
  line-height: 1.5;
}

.home-v2-final-cta {
  --cta-bg-left: #0e1830;
  --cta-bg-right: #070b18;
  position: relative;
  width: 100%;
  max-width: var(--home-cards-max);
  margin: 0 auto;
  border: 1px solid var(--home-pink);
  border-radius: 8px;
  background: linear-gradient(90deg, var(--cta-bg-left) 0%, var(--cta-bg-right) 100%);
  padding: 2.25rem 2.5rem;
  overflow: hidden;
  min-height: 380px;
  box-sizing: border-box;
}

.home-v2-crown-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-v2-crown-art::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1536 / 1024;
  width: auto;
  background: url("/static/images/home/crown.png") right center / 75% 100% no-repeat;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to right, transparent 25%, #000 43.75%);
  mask-image: linear-gradient(to right, transparent 25%, #000 43.75%);
}

.home-v2-final-cta-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 58%;
  min-height: 320px;
}

.home-v2-final-cta h2 {
  color: var(--home-pink);
  margin-top: 0;
  font-size: 1.75rem;
}

.home-v2-final-cta p {
  color: var(--home-muted);
  margin: 0 0 1rem;
  line-height: 1.65;
}

.home-v2-warning {
  color: var(--home-pink) !important;
  font-weight: 900;
}

.home-v2-play-now {
  width: 100%;
  box-sizing: border-box;
  padding: 1.25rem 1.25rem 2.75rem;
  text-align: center;
  background-color: #050714;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-v2-play-now::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/images/home/play-now-skyline.png?v=2") center bottom / 100% auto no-repeat;
  pointer-events: none;
  z-index: 0;
}

.home-v2-play-now::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(32px, 8%, 72px);
  background: linear-gradient(to bottom, #050714 0%, rgba(5, 7, 20, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.home-v2-play-now > * {
  position: relative;
  z-index: 1;
}

.home-v2-play-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 0 10px rgba(242, 76, 106, 0.25));
}

.home-v2-play-now .home-v2-btn-primary {
  min-width: 220px;
}

.home-v2-play-now p {
  color: #b6c0d4;
  margin: 0 auto 1.25rem;
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-v2-footer {
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--home-edge-line);
  margin: 0;
  padding: 0;
  background: #040812;
}

.home-v2-footer-copyright {
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--home-muted);
}

.home-v2-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 3fr) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: start;
  width: 100%;
  max-width: var(--home-shell);
  margin: 0 auto;
  padding: 2rem var(--home-section-pad-x) 2.5rem;
  box-sizing: border-box;
}

.home-v2-footer-center {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-v2-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.5rem;
}

.home-v2-footer-brand {
  min-width: 0;
}

.home-v2-footer-brand strong {
  color: var(--home-pink);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.5rem;
}

.home-v2-footer-brand p {
  margin: 0;
  line-height: 1.55;
}

.home-v2-footer p:not(.home-v2-footer-copyright),
.home-v2-footer a {
  color: var(--home-muted);
  font-size: 0.875rem;
}

.home-v2-footer a {
  display: block;
  margin: 4px 0;
  text-decoration: none;
}

.home-v2-footer a:hover {
  color: #fff;
}

.home-v2-footer-pending {
  display: block;
  margin: 4px 0;
  color: var(--home-muted);
  font-size: 0.875rem;
  opacity: 0.65;
  cursor: default;
}

.home-v2-footer-col h4 {
  margin: 0 0 8px;
  color: #cbd6eb;
  font-size: 0.95rem;
}

.home-v2-footer-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: #50fa7b;
  font-size: 0.9rem;
  font-weight: 600;
}

.home-v2-footer-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #50fa7b;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(80, 250, 123, 0.55);
}

.home-v2-footer-live-desc {
  margin: 0.65rem 0 0;
  line-height: 1.5;
}

.home-v2-footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.home-v2-footer-social .home-v2-social-link {
  display: flex;
  margin: 0;
}

.home-v2-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5cedf;
  opacity: 0.9;
}

.home-v2-social-link:hover {
  color: #fff;
  opacity: 1;
}

.home-v2-social-link--muted {
  opacity: 0.42;
  cursor: default;
}

@media (max-width: 768px) {
  body.page-home .page-main {
    padding: 0;
  }

  body.page-home .header-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 900px) {
  .home-v2 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .home-v2-hero {
    align-items: flex-start;
    padding: 1.75rem var(--home-section-pad-x) 2rem;
    min-height: clamp(420px, 72vw, 520px);
  }

  .home-v2-hero-band::before {
    background-size: cover;
    background-position: right center;
    -webkit-mask-image:
      linear-gradient(
        to right,
        transparent 0%,
        #000 32%,
        #000 calc(100% - var(--home-hero-bg-fade-right) - 2%),
        transparent 100%
      ),
      linear-gradient(
        to bottom,
        #000 0%,
        #000 calc(100% - var(--home-hero-bg-fade-bottom) - 2%),
        transparent 100%
      );
    mask-image:
      linear-gradient(
        to right,
        transparent 0%,
        #000 32%,
        #000 calc(100% - var(--home-hero-bg-fade-right) - 2%),
        transparent 100%
      ),
      linear-gradient(
        to bottom,
        #000 0%,
        #000 calc(100% - var(--home-hero-bg-fade-bottom) - 2%),
        transparent 100%
      );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .home-v2-hero-band::after {
    background: linear-gradient(
      180deg,
      rgba(5, 7, 20, 0.94) 0%,
      rgba(5, 7, 20, 0.82) 42%,
      rgba(5, 7, 20, 0.35) 72%,
      transparent 100%
    );
  }

  .home-v2-hero-copy {
    max-width: 100%;
  }

  .home-v2-final-cta {
    padding: 1.75rem 1.25rem;
    min-height: auto;
  }

  .home-v2-final-cta-copy {
    max-width: 100%;
    min-height: 0;
  }

  .home-v2-crown-art::before {
    -webkit-mask-image:
      linear-gradient(to right, transparent 25%, #000 43.75%),
      linear-gradient(
        to bottom,
        transparent 0%,
        #000 20%,
        #000 80%,
        transparent 100%
      );
    mask-image:
      linear-gradient(to right, transparent 25%, #000 43.75%),
      linear-gradient(
        to bottom,
        transparent 0%,
        #000 20%,
        #000 80%,
        transparent 100%
      );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    opacity: 0.5;
  }

  .home-v2-lore-grid,
  .home-v2-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-v2-footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem var(--home-section-pad-x) 2rem;
  }

  .home-v2-footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-v2-footer-copyright {
    margin-top: 0.75rem;
  }

  .home-v2-lore-grid article {
    border-right: 0;
    border-bottom: 1px solid #2a3d63;
  }

  .home-v2-lore {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .home-v2-update {
    margin-left: 0;
    margin-right: 0;
  }

  .home-v2-section-title::before,
  .home-v2-section-title::after {
    display: none;
  }
}
