/* FOXYVERSE – Homepage (Universe Theme) */

.fv-main {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

/* ── Hero ───────────────────────────────────────────────── */
.fv-hero {
  padding: clamp(2rem, 5vh, 3.5rem) 0 clamp(2rem, 4vh, 3rem);
  position: relative;
}

.fv-hero::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 55%;
  transform: translateX(-50%);
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}

.fv-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.fv-hero-copy {
  max-width: 540px;
  min-width: 0;
}

/* Hero sofort sichtbar – Scroll-Reveal darf hier nicht von JS abhängen */
.lv-home .fv-hero .lv-reveal,
.lv-home .fv-hero .lv-reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.fv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem 0.35rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-cosmic);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  background: rgba(8, 12, 32, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.08);
}

.fv-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lv-cosmic);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8), 0 0 20px rgba(56, 189, 248, 0.4);
  animation: fv-pulse 2.4s ease infinite;
}

@keyframes fv-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.75; }
}

.fv-title {
  margin: 0;
  font-family: var(--lv-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.fv-title-row {
  display: block;
}

.fv-title-brand {
  margin-top: 0.08em;
}

.fv-title-foxy {
  display: block;
  background: linear-gradient(135deg, #ffb347, var(--lv-accent), #ff5c00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv-title-verse {
  display: block;
  background: linear-gradient(135deg, var(--lv-cosmic), var(--lv-blue), var(--lv-purple));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fv-gradient-flow 8s ease-in-out infinite;
}

.fv-title-gradient {
  background: linear-gradient(
    120deg,
    #fff 0%,
    var(--lv-cosmic) 35%,
    var(--lv-purple) 55%,
    var(--lv-accent) 85%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fv-gradient-flow 7s ease-in-out infinite;
}

@keyframes fv-gradient-flow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.fv-lead {
  margin: 1.35rem 0 0;
  max-width: 48ch;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.7;
  color: var(--lv-muted);
}

.fv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.fv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms,
    background 280ms,
    border-color 280ms;
}

.fv-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fv-btn-primary {
  color: #050508;
  background: linear-gradient(135deg, #ffb347, var(--lv-accent));
  box-shadow:
    0 8px 32px rgba(255, 122, 61, 0.35),
    0 0 40px rgba(255, 122, 61, 0.15);
}

.fv-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 40px rgba(255, 122, 61, 0.45),
    0 0 60px rgba(255, 122, 61, 0.2);
}

.fv-btn-ghost {
  color: var(--lv-text);
  background: rgba(8, 12, 32, 0.5);
  border-color: rgba(110, 184, 255, 0.2);
  backdrop-filter: blur(8px);
}

.fv-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 184, 255, 0.4);
  background: rgba(110, 184, 255, 0.08);
  box-shadow: 0 0 24px rgba(110, 184, 255, 0.12);
}

.fv-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 2.5rem 0 0;
  padding: 0;
}

.fv-stat {
  margin: 0;
}

.fv-stat dt {
  margin: 0;
  font-family: var(--lv-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--lv-text);
  text-shadow: 0 0 20px rgba(110, 184, 255, 0.25);
}

.fv-stat dd {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lv-muted);
}

/* ── Orbit visual ───────────────────────────────────────── */
.fv-orbit-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  min-width: 0;
}

.fv-orbit {
  position: relative;
  width: min(340px, 100%);
  height: min(340px, 100%);
  aspect-ratio: 1;
  --orbit-r: clamp(108px, 36%, 148px);
}

.fv-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(110, 184, 255, 0.15);
}

.fv-orbit-ring--1 {
  animation: fv-orbit-spin 28s linear infinite;
  box-shadow: inset 0 0 40px rgba(124, 58, 237, 0.06);
}

.fv-orbit-ring--2 {
  inset: 14%;
  border-color: rgba(56, 189, 248, 0.18);
  border-style: solid;
  animation: fv-orbit-spin 20s linear infinite reverse;
}

.fv-orbit-ring--3 {
  inset: 28%;
  border-color: rgba(255, 122, 61, 0.12);
  border-style: dotted;
  animation: fv-orbit-spin 32s linear infinite;
}

@keyframes fv-orbit-spin {
  to { transform: rotate(360deg); }
}

.fv-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
}

.fv-orbit-core-glow {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.35), rgba(124, 58, 237, 0.15) 50%, transparent 70%);
  animation: fv-core-pulse 4s ease-in-out infinite;
}

.fv-orbit-core-body {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 200, 140, 0.9), transparent 35%),
    radial-gradient(circle at 70% 75%, rgba(124, 58, 237, 0.5), transparent 40%),
    radial-gradient(circle at 50% 50%, #ff7a3d, #7c3aed 70%, #1a0a2e);
  border: 1px solid rgba(255, 200, 140, 0.25);
  box-shadow:
    0 0 50px rgba(255, 122, 61, 0.4),
    0 0 80px rgba(124, 58, 237, 0.2),
    inset -8px -8px 20px rgba(0, 0, 0, 0.4);
}

@keyframes fv-core-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

.fv-orbit-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem;
  max-width: 140px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: rgba(6, 8, 24, 0.85);
  border: 1px solid rgba(110, 184, 255, 0.15);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 16px rgba(110, 184, 255, 0.06);
  transform-origin: center;
  animation: fv-orbit-chip 24s linear infinite;
}

.fv-orbit-chip--0 { animation-duration: 22s; animation-delay: 0s; }
.fv-orbit-chip--1 { animation-duration: 26s; animation-delay: -5s; }
.fv-orbit-chip--2 { animation-duration: 30s; animation-delay: -11s; }
.fv-orbit-chip--3 { animation-duration: 24s; animation-delay: -16s; }
.fv-orbit-chip--4 { animation-duration: 28s; animation-delay: -20s; }

.fv-orbit-chip--blue { border-color: rgba(96, 165, 250, 0.3); }
.fv-orbit-chip--orange { border-color: rgba(255, 107, 43, 0.3); }
.fv-orbit-chip--purple { border-color: rgba(192, 132, 252, 0.3); }
.fv-orbit-chip--muted { border-color: rgba(148, 155, 171, 0.25); }

@keyframes fv-orbit-chip {
  from { transform: rotate(0deg) translateX(var(--orbit-r)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg); }
}

.fv-orbit-chip-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  flex-shrink: 0;
  opacity: 0.85;
}

.fv-orbit-chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

/* ── Marquee (orbital stream) ───────────────────────────── */
.fv-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.85rem 0;
  border-block: 1px solid rgba(110, 184, 255, 0.1);
  background: rgba(6, 8, 24, 0.45);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.fv-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.fv-marquee-fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--lv-bg), transparent);
}

.fv-marquee-fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--lv-bg), transparent);
}

.fv-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: fv-marquee var(--marquee-duration, 40s) linear infinite;
}

.fv-marquee-group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
  padding-right: 2.5rem;
}

.fv-marquee:hover .fv-marquee-track {
  animation-play-state: paused;
}

@keyframes fv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-shift, 50%))); }
}

.fv-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lv-muted);
  white-space: nowrap;
}

.fv-marquee-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.fv-marquee-item--orange { color: rgba(255, 138, 61, 0.85); }
.fv-marquee-item--blue { color: rgba(96, 165, 250, 0.85); }
.fv-marquee-item--purple { color: rgba(192, 132, 252, 0.85); }

/* ── Sections ───────────────────────────────────────────── */
.fv-section {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vh, 5rem) 0;
}

.fv-section-mods {
  background:
    linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04) 30%, transparent),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(56, 189, 248, 0.03), transparent);
}

.fv-section-head {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.fv-section-head > div { flex: 1; min-width: 200px; }

.fv-section-num {
  font-family: var(--lv-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lv-cosmic);
  opacity: 0.9;
  flex-shrink: 0;
  padding-top: 0.35rem;
}

.fv-section-head h2 {
  margin: 0.15rem 0 0;
  font-family: var(--lv-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

.fv-section-head p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--lv-muted);
}

.fv-nexus-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lv-muted);
  text-decoration: none;
  transition: color 200ms, transform 200ms;
}

.fv-nexus-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.fv-nexus-link:hover {
  color: var(--lv-text);
  transform: translateX(3px);
}

/* ── Bento cards ────────────────────────────────────────── */
.fv-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.fv-card {
  position: relative;
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.55rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(110, 184, 255, 0.1);
  background: rgba(6, 8, 24, 0.55);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    border-color 350ms,
    box-shadow 350ms;
}

.fv-card-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 40% 85%, rgba(255, 255, 255, 0.35), transparent);
}

.fv-card--featured {
  grid-column: span 7;
  min-height: 280px;
}

.fv-card:nth-child(2) { grid-column: span 5; }
.fv-card:nth-child(3) { grid-column: span 5; }
.fv-card:nth-child(4) { grid-column: span 7; }
.fv-card:nth-child(n+5) { grid-column: span 6; }

.fv-card-glow {
  position: absolute;
  inset: -40%;
  opacity: 0;
  transition: opacity 400ms;
  pointer-events: none;
}

.fv-card--blue .fv-card-glow {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.18), transparent 55%);
}

.fv-card--orange .fv-card-glow {
  background: radial-gradient(circle, rgba(255, 107, 43, 0.18), transparent 55%);
}

.fv-card--purple .fv-card-glow {
  background: radial-gradient(circle, rgba(192, 132, 252, 0.18), transparent 55%);
}

.fv-card--muted .fv-card-glow {
  background: radial-gradient(circle, rgba(148, 155, 171, 0.12), transparent 55%);
}

.fv-card:hover .fv-card-glow { opacity: 1; }

.fv-card:hover {
  border-color: rgba(110, 184, 255, 0.22);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(124, 58, 237, 0.08);
}

.fv-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fv-card-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.fv-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fv-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.fv-card--blue .fv-card-icon { color: var(--lv-blue); }
.fv-card--orange .fv-card-icon { color: var(--lv-accent); }
.fv-card--purple .fv-card-icon { color: var(--lv-purple); }

.fv-card-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fv-card-desc {
  margin: 0.55rem 0 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lv-muted);
}

.fv-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fv-card-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lv-muted);
}

.fv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lv-text);
  text-decoration: none;
  transition: color 200ms, gap 200ms;
}

.fv-card-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.fv-card-link:hover {
  color: var(--lv-accent);
  gap: 0.55rem;
}

.fv-card-link--muted {
  color: var(--lv-muted);
  cursor: default;
}

.fv-card-link--muted:hover {
  color: var(--lv-muted);
  gap: 0.35rem;
}

a.fv-card-link--muted:hover { color: var(--lv-accent); cursor: pointer; }

/* ── Mod cards ──────────────────────────────────────────── */
.fv-mod-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.fv-mod-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.15rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  background: rgba(6, 8, 24, 0.5);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: border-color 300ms, box-shadow 300ms, transform 300ms;
}

.fv-mod-card:hover {
  border-color: rgba(183, 148, 246, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 30px rgba(124, 58, 237, 0.1);
}

.fv-mod-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--lv-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fv-mod-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.fv-mod-top {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.fv-mod-top h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.fv-mod-body p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--lv-muted);
}

.fv-mod-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--lv-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background 200ms, transform 200ms, border-color 200ms;
}

.fv-mod-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.fv-mod-btn:hover {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.35);
  transform: scale(1.06);
}

/* ── Home header / footer overrides ─────────────────────── */
.lv-home .lv-header--home {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0.75rem auto 0;
  padding: 0.65rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(110, 184, 255, 0.12);
  background: rgba(4, 6, 18, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.08);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.lv-home .lv-header--home .lv-logo {
  justify-self: start;
}

.lv-home .lv-header--home .lv-nav {
  justify-self: center;
  justify-content: center;
}

.lv-home .lv-header--home .lv-header-actions {
  justify-self: end;
  flex-wrap: nowrap;
}

.lv-home .lv-header--home.lv-header-scrolled {
  width: 100%;
  max-width: none;
  margin-top: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  display: flex;
  justify-content: space-between;
}

.lv-home .lv-header--home.lv-header-scrolled .lv-nav {
  justify-self: auto;
}

.lv-footer--minimal {
  padding-top: 2rem;
}

.lv-footer--minimal .lv-footer-inner {
  justify-content: center;
  text-align: center;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .fv-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fv-hero-copy {
    max-width: none;
    margin-inline: auto;
  }

  .fv-lead { margin-inline: auto; }
  .fv-hero-actions { justify-content: center; }
  .fv-stats { justify-content: center; }
  .fv-orbit-wrap { margin-top: 1rem; }
  .fv-orbit { width: min(300px, 85vw); height: min(300px, 85vw); }

  .fv-bento { grid-template-columns: 1fr; }
  .fv-card,
  .fv-card--featured,
  .fv-card:nth-child(n) { grid-column: span 1; min-height: auto; }
}

@media (max-width: 820px) {
  .lv-home .lv-header--home {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(100% - 1rem);
  }

  .lv-home .lv-header--home .lv-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 600px) {
  .fv-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .fv-mod-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .fv-mod-btn {
    grid-column: 2;
    justify-self: end;
  }

  .lv-home .lv-header-actions .lv-btn-ghost:first-of-type { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fv-title-gradient,
  .fv-title-verse,
  .fv-eyebrow-dot,
  .fv-orbit-ring,
  .fv-orbit-chip,
  .fv-orbit-core-glow,
  .fv-marquee-track,
  .lv-nebula { animation: none; }

  .fv-card,
  .fv-mod-card,
  .fv-btn:hover { transform: none; }
}
