﻿/* ==========================================================================
   Myths Landing Page
   ========================================================================== */

/* ---- Hero ---- */
.l-hero {
  --hero-gutter: var(--page-gutter);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding:
    calc(var(--header-height) + clamp(2rem, 4vh, 3.5rem))
    0
    clamp(3rem, 6vh, 5rem);
  overflow: hidden;
}

.l-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.l-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 82% 45%, rgba(125, 211, 252, 0.07), transparent 65%),
    radial-gradient(ellipse 40% 35% at 15% 70%, rgba(165, 228, 252, 0.04), transparent 55%),
    linear-gradient(165deg, var(--bg-base) 0%, #0e1218 55%, #12161e 100%);
}

.l-hero__beam {
  position: absolute;
  top: -20%;
  right: 18%;
  width: 1px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(125, 211, 252, 0.15), transparent);
  transform: rotate(18deg);
  opacity: 0.6;
}

.l-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.28;
}

.l-hero__orb--1 {
  width: min(480px, 40vw);
  height: min(480px, 40vw);
  top: 8%;
  right: 12%;
  background: rgba(125, 211, 252, 0.1);
  animation: orbFloat 14s ease-in-out infinite;
}

.l-hero__orb--2 {
  width: min(280px, 30vw);
  height: min(280px, 30vw);
  bottom: 12%;
  left: 18%;
  background: rgba(165, 228, 252, 0.06);
  animation: orbFloat 18s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, -16px); }
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}

.l-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container-max), 100%);
  margin: 0 auto;
  padding-inline: var(--hero-gutter);
}

.l-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.l-hero__copy {
  padding-block: clamp(1rem, 3vh, 2rem);
  padding-right: clamp(0rem, 2vw, 2rem);
  max-width: 540px;
}

.l-hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 clamp(1rem, 2vh, 1.5rem);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.l-hero__logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.l-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.75);
  margin-bottom: clamp(0.65rem, 1.4vh, 1rem);
}

.l-overline__line { display: none; }

.page-landing .btn-outline {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.04);
}

.page-landing .btn-outline:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.07);
}

.l-section-lead {
  margin: 0.65rem 0 0;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.l-hero__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: clamp(0.85rem, 1.5vh, 1.15rem);
  word-break: keep-all;
}

.l-hero__desc {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--color-text-muted);
  max-width: 40ch;
  line-height: 1.7;
  margin-bottom: clamp(1.25rem, 2.5vh, 1.75rem);
}

.l-hero__signal {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.75rem 0.45rem 0.45rem;
  text-decoration: none;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.l-hero__signal:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
}

.l-hero__signal-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0a0e14;
  background: var(--color-primary);
  border-radius: 999px;
  white-space: nowrap;
}

.l-hero__signal-text {
  font-size: 0.84rem;
  line-height: 1.35;
  padding-right: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0;
}

/* Card stage */
.l-hero__stage {
  position: relative;
  min-height: clamp(380px, 52vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.l-hero__stage-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(125, 211, 252, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.l-hero__cards {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: clamp(340px, 46vh, 480px);
  margin: 0 auto;
  perspective: 1400px;
}

.l-card-float {
  position: absolute;
  top: 50%;
  width: clamp(130px, 32%, 210px);
  transition: transform 450ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.l-card-float img {
  width: 100%;
  border-radius: 10px;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5));
  box-shadow: none;
  transition: filter var(--transition);
}

.l-card-float__label {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted);
  opacity: 0;
  transition: opacity var(--transition);
}

.l-card-float--left {
  left: 0;
  transform: translateY(-50%) rotate(-14deg) translateZ(-30px) translate(var(--px, 0px), var(--py, 0px));
  z-index: 1;
}

.l-card-float--center {
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg) translateZ(30px) scale(1.06) translate(var(--px, 0px), var(--py, 0px));
  z-index: 3;
  width: clamp(150px, 38%, 240px);
}

.l-card-float--right {
  right: 0;
  transform: translateY(-50%) rotate(14deg) translateZ(-30px) translate(var(--px, 0px), var(--py, 0px));
  z-index: 1;
}

.l-card-float--center img {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.l-card-float--left:hover {
  transform: translateY(-50%) rotate(-10deg) translateZ(10px) scale(1.04) translate(var(--px, 0px), var(--py, 0px));
}

.l-card-float--center:hover {
  transform: translate(-50%, -50%) rotate(0deg) translateZ(50px) scale(1.1) translate(var(--px, 0px), var(--py, 0px));
}

.l-card-float--right:hover {
  transform: translateY(-50%) rotate(10deg) translateZ(10px) scale(1.04) translate(var(--px, 0px), var(--py, 0px));
}

.l-card-float:hover img {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55);
}

.l-card-float:hover .l-card-float__label { opacity: 1; }

/* ---- Game preview ---- */
.l-preview {
  padding: 5rem 0 6rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(125, 211, 252, 0.06), transparent 70%),
    var(--bg-base);
}

.l-preview .l-section-head {
  margin-bottom: 2rem;
}

.l-preview__layout {
  display: grid;
  grid-template-columns: 1fr min(280px, 34%);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .l-preview__layout {
    grid-template-columns: 1fr;
  }
}

.l-preview__trigger {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  transition: background var(--transition);
}

.l-preview__trigger:hover,
.l-preview__trigger:focus-visible {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  outline: none;
}

.l-preview__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  vertical-align: middle;
}

.l-preview__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.2));
  transition: background var(--transition), opacity var(--transition);
}

.l-preview__trigger:hover .l-preview__overlay,
.l-preview__trigger:focus-visible .l-preview__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.28));
}

.l-preview__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: #0a0e14;
  background: var(--color-primary);
  border: none;
  box-shadow: none;
  transition: background var(--transition);
}

.l-preview__trigger:hover .l-preview__play,
.l-preview__trigger:focus-visible .l-preview__play {
  transform: none;
  background: var(--color-secondary);
}

.l-preview__hint {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(232, 238, 245, 0.85);
}

.l-preview__demo-desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.l-preview__demo-desc strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.l-preview__demo-trigger {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  transition: background var(--transition);
}

.l-preview__demo-trigger:hover,
.l-preview__demo-trigger:focus-visible {
  transform: none;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
  outline: none;
}

.l-preview__demo-poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(125, 211, 252, 0.12), transparent 70%),
    linear-gradient(145deg, rgba(12, 18, 28, 0.95), rgba(4, 6, 10, 0.98));
}

.l-preview__play--sm {
  width: 3rem;
  height: 3rem;
}

.l-preview__demo-trigger .l-preview__hint {
  font-size: 0.62rem;
}

.l-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.l-video-lightbox[hidden] {
  display: none !important;
}

.l-video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.88);
  backdrop-filter: blur(6px);
}

.l-video-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}

.l-video-lightbox__video {
  display: block;
  width: 100%;
  max-height: min(80vh, 720px);
  border-radius: var(--radius-md);
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.l-video-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  transform: translateY(-100%);
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.l-video-lightbox__close:hover,
.l-video-lightbox__close:focus-visible {
  opacity: 1;
  outline: none;
}

body.page-landing.preview-lightbox-open {
  overflow: hidden;
}

/* ---- Lobby highlight ---- */
.l-lobby {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(125, 211, 252, 0.05), transparent 65%),
    var(--bg-base);
}

.l-lobby__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.l-lobby__item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.35rem 1.25rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 14px;
  transition: background var(--transition), color var(--transition);
}

.l-lobby__item:hover {
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
}

.l-lobby__label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.l-lobby__text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #c8d0db;
}

/* ---- Destinations ---- */
.l-destinations {
  padding: 5rem 0;
  background: var(--bg-base);
}

.l-destinations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.l-dest {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.25rem 1.15rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.025);
  border: none;
  border-radius: 14px;
  transition: background var(--transition);
}

.l-dest:hover {
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
}

.l-dest__label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.l-dest__text {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #c8d0db;
}

.l-dest__go {
  font-size: 1rem;
  color: rgba(125, 211, 252, 0.7);
  justify-self: end;
  transition: color var(--transition);
}

.l-dest:hover .l-dest__go {
  color: var(--color-primary);
}

/* ---- Section head ---- */
.l-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2.5rem;
}

.l-section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.l-link-arrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.l-link-arrow:hover { color: var(--color-primary); }

.l-link-arrow::after {
  content: ' →';
}

/* ---- Featured decks ---- */
.l-decks {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-base), #0c1018);
}

.l-decks__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.l-deck {
  margin: 0;
}

.l-deck__link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.05rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.025);
  border: none;
  border-radius: 14px;
  transition: background var(--transition), transform 0.18s ease;
}

.l-deck__link:hover {
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
  transform: translateY(-1px);
}

.l-deck__fan {
  position: relative;
  width: 58px;
  height: 52px;
  flex-shrink: 0;
}

.l-deck__card {
  position: absolute;
  width: 36px;
  height: 51px;
  object-fit: cover;
  border-radius: 4px;
  border: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  background: #1a2030;
}

.l-deck__card:nth-child(1) { left: 0; top: 6px; z-index: 1; transform: rotate(-9deg); }
.l-deck__card:nth-child(2) { left: 11px; top: 1px; z-index: 2; transform: rotate(-1deg); }
.l-deck__card:nth-child(3) { left: 22px; top: 6px; z-index: 3; transform: rotate(8deg); }

.l-deck__fan-empty {
  display: block;
  width: 36px;
  height: 51px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
}

.l-deck__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.l-deck__name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-deck__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.35rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.l-deck__dot { opacity: 0.55; }

/* ---- News (compact rows) ---- */
.l-section-head--compact {
  margin-bottom: 1.25rem;
}

.l-section-head--compact h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.l-news {
  padding: 3rem 0 3.5rem;
}

.l-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.7fr);
  gap: 0.85rem;
  align-items: start;
}

.l-news__layout--solo {
  grid-template-columns: 1fr;
}

.l-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.l-news-row__link {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.8rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.025);
  border: none;
  border-radius: 12px;
  transition: background var(--transition);
}

.l-news-row__link:has(.l-news-row__thumb) {
  grid-template-columns: auto 1fr;
}

.l-news-row__link:hover {
  background: rgba(255, 255, 255, 0.045);
  color: inherit;
}

.l-news-row__thumb {
  display: block;
  width: 72px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  background: #0a0e14;
  flex-shrink: 0;
}

.l-news-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.l-news-row__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.l-news-row__title {
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-news-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.l-news-row__tag {
  color: var(--color-primary);
  font-weight: 600;
}

.l-changelog {
  padding: 0.95rem 1.05rem;
  background: rgba(255, 255, 255, 0.025);
  border: none;
  border-radius: 12px;
}

.l-changelog__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.l-changelog__kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-primary);
}

.l-changelog__title {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.l-changelog__date {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.l-changelog__list {
  margin: 0 0 0.65rem;
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.l-changelog__list li + li { margin-top: 0.2rem; }

.l-empty {
  margin: 0;
  color: var(--color-text-muted);
}

/* ---- Community ---- */
.l-community {
  position: relative;
  overflow: hidden;
}

.l-community__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.l-community__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem clamp(2rem, 6vw, 8rem);
  background: var(--bg-panel);
}

.l-community__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.l-community__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.l-community__pending {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  margin: 0 0.15rem;
  border-radius: 999px;
  background: #f87171;
  color: #0a0e14;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.l-community__copy p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}

.l-community__visual {
  position: relative;
  overflow: hidden;
  background: #12161e;
}

.l-community__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.l-stats {
  background: #0a0e14;
  border-top: none;
  padding: 2.5rem 0;
}

.l-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.l-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.l-stat svg { color: var(--color-primary); margin-bottom: 0.5rem; }

.l-stat strong {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.l-stat span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted);
}

/* ---- Landing responsive ---- */
@media (max-width: 1200px) {
  .l-hero__layout {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vh, 3rem);
  }

  .l-hero__copy {
    max-width: 620px;
    padding-right: 0;
    text-align: left;
  }

  .l-hero__stage {
    min-height: clamp(320px, 44vh, 420px);
  }

  .l-lobby__grid { grid-template-columns: repeat(2, 1fr); }
  .l-news__layout { grid-template-columns: 1fr; }
  .l-decks__grid { grid-template-columns: 1fr; }
  }

@media (max-width: 900px) {
  .l-hero {
    --hero-gutter: clamp(24px, 6vw, 40px);
    padding-bottom: clamp(2.5rem, 5vh, 4rem);
  }

  .l-hero__cards {
    max-width: 420px;
    height: clamp(300px, 40vh, 380px);
  }

  .l-lobby__grid { grid-template-columns: 1fr 1fr; }
  .l-community__split { grid-template-columns: 1fr; }
  .l-community__visual { min-height: 360px; }
  .l-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .l-hero__title { font-size: clamp(2.35rem, 11vw, 3.25rem); }
  .l-hero__actions .btn { width: 100%; }
  .l-hero__cards { max-width: 340px; }
  .l-card-float--center { width: clamp(120px, 40%, 160px); }
  .l-card-float--left,
  .l-card-float--right { width: clamp(100px, 28%, 130px); }
  .l-lobby__grid { grid-template-columns: 1fr; }
  .l-destinations__grid { grid-template-columns: 1fr; }
  .l-stats__grid { grid-template-columns: 1fr 1fr; }
}
