/* Marketing / brand surfaces — Broadcast Arena */

.ls-landing {
  color: var(--ls-ink);
  background:
    radial-gradient(1000px 500px at 90% 10%, rgba(255, 77, 61, 0.12), transparent 55%),
    linear-gradient(180deg, #0B1F3A 0px, #0B1F3A 55vh, #F3F5F8 55vh, #F3F5F8 100%);
}

.ls-landing h1,
.ls-landing h2,
.ls-landing .ls-display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 0.95;
}

/* —— Hero with autoplay video layer —— */
.ls-hero {
  position: relative;
  min-height: calc(100dvh - 7.5rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.ls-hero--compact {
  min-height: calc(72dvh - 4rem);
}

.ls-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #071525 center/cover no-repeat;
}

.ls-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}

.ls-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 16, 32, 0.35) 0%, rgba(7, 16, 32, 0.15) 35%, rgba(7, 16, 32, 0.72) 68%, rgba(7, 16, 32, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 16, 32, 0.55) 0%, rgba(7, 16, 32, 0.1) 55%, rgba(255, 77, 61, 0.12) 100%);
}

.ls-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 3.25rem;
}

@media (min-width: 900px) {
  .ls-hero__inner { padding: 3rem 0 4.5rem; }
}

.ls-brand {
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 7.5rem);
  margin: 0 0 0.2rem;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 0.88;
  text-shadow: 0 10px 50px rgba(0,0,0,0.45);
  animation: lsRise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ls-hero h1 {
  font-size: clamp(1.65rem, 4.8vw, 2.65rem);
  margin: 0 0 0.85rem;
  max-width: 18ch;
  color: rgba(255,255,255,0.96);
  animation: lsRise 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.06s both;
}

.ls-hero > .ls-hero__inner > p,
.ls-hero__copy {
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  max-width: 34ch;
  color: rgba(255,255,255,0.82);
  margin: 0 0 1.6rem;
  line-height: 1.5;
  animation: lsRise 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both;
}

.ls-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: lsRise 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both;
}

@keyframes lsRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Sections —— */
.ls-section {
  padding: 4.25rem 0;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.ls-section--dark {
  width: 100%;
  max-width: none;
  padding: 4.5rem 0;
  background: #0B1F3A;
  color: #fff;
}
.ls-section--dark > .ls-section__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.ls-section--dark h2 { color: #fff; }
.ls-section--dark .ls-lead { color: rgba(255,255,255,0.65); }

.ls-section h2 {
  font-size: clamp(2.6rem, 8vw, 4.2rem);
  margin: 0 0 0.45rem;
  color: var(--ls-navy);
}

.ls-section .ls-lead {
  color: var(--ls-muted);
  max-width: 40ch;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.ls-feature {
  padding: 1.4rem 0 1.5rem;
  border-top: 3px solid var(--ls-coral);
  background: transparent;
}
.ls-feature h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 0.4rem;
  color: var(--ls-navy);
}
.ls-feature p {
  margin: 0;
  color: var(--ls-muted);
  max-width: 32ch;
}
.ls-feature--link {
  display: block;
  color: inherit;
  transition: transform 0.15s ease;
}
.ls-feature--link:hover {
  transform: translateY(-2px);
  color: inherit;
}
.ls-section--dark .ls-feature { border-top-color: var(--ls-coral); }
.ls-section--dark .ls-feature h3 { color: #fff; }
.ls-section--dark .ls-feature p { color: rgba(255,255,255,0.65); }

/* Promo lives in header.php above .ls-top — keep a no-op for old markup */
.ls-landing > .ls-promo-banner { display: none; }

.ls-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #071525;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 0;
}
.ls-marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: lsMarquee 28s linear infinite;
  white-space: nowrap;
}
.ls-marquee span { opacity: 0.85; }
.ls-marquee em {
  font-style: normal;
  color: var(--ls-coral);
}
@keyframes lsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ls-cat-rail {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .ls-cat-rail { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .ls-cat-rail { grid-template-columns: repeat(4, 1fr); }
}

.ls-cat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  padding: 1.15rem;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background-color: #0B1F3A;
  background-size: cover;
  background-position: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ls-cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(7,16,32,0.15) 0%, rgba(7,16,32,0.55) 45%, rgba(7,16,32,0.92) 100%),
    linear-gradient(90deg, rgba(11,31,58,0.35), transparent 60%);
  pointer-events: none;
}
.ls-cat-tile:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.22);
}
.ls-cat-tile:hover::before {
  background:
    linear-gradient(180deg, rgba(7,16,32,0.1) 0%, rgba(7,16,32,0.45) 40%, rgba(7,16,32,0.9) 100%),
    linear-gradient(90deg, rgba(255,77,61,0.2), transparent 55%);
}
.ls-cat-tile strong,
.ls-cat-tile span {
  position: relative;
  z-index: 1;
}
.ls-cat-tile strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.ls-cat-tile span {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* Categories page image cards */
.ls-cat-card {
  position: relative;
  display: block;
  min-height: 200px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-color: #0B1F3A;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  transition: transform 0.18s ease;
}
.ls-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,16,32,0.2) 10%, rgba(7,16,32,0.92) 100%);
}
.ls-cat-card:hover { transform: translateY(-3px); color: #fff; }
.ls-cat-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 1.15rem;
}
.ls-cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.35rem;
  color: #fff;
}
.ls-cat-card p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  max-width: 28ch;
}

.ls-proof {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .ls-proof { grid-template-columns: 1.2fr 1fr; align-items: end; }
}
.ls-proof__stat {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  color: var(--ls-navy);
  line-height: 0.9;
}
.ls-proof__stat em {
  font-style: normal;
  color: var(--ls-coral);
}
