:root {
  --landing-bg: #050a12;
  --landing-panel: #0a111c;
  --landing-panel-2: #0d1624;
  --landing-line: #213044;
  --landing-line-soft: rgba(117, 145, 178, .18);
  --landing-copy: #f4f7fb;
  --landing-muted: #8b9bb0;
  --landing-cyan: #61d4cf;
  --landing-orange: #ff641f;
}

html { scroll-behavior: smooth; }
body.landing-body {
  background: var(--landing-bg);
  color: var(--landing-copy);
  overflow-x: hidden;
}
.landing-body .auth-shell,
.landing-body .auth-shell__main,
.landing-body .auth-shell__main--landing { min-height: 0; background: transparent; }
.landing-body .auth-shell__main--landing { display: block; padding: 0; }
.landing-body .site-footer { border-top-color: var(--landing-line-soft); background: #050a12; }
.landing-page { position: relative; isolation: isolate; overflow: hidden; }
.landing-page::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -260px;
  left: 50%;
  width: 1100px;
  height: 680px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 100, 31, .12), transparent 68%);
  pointer-events: none;
}
.landing-container { width: min(1440px, calc(100% - 48px)); margin-inline: auto; }

/* Public header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(117, 145, 178, .14);
  background: rgba(5, 10, 18, .88);
  backdrop-filter: blur(18px);
}
.landing-header__inner {
  width: min(1440px, calc(100% - 48px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.landing-header__brand img { display: block; width: 136px; height: auto; }
.landing-nav { display: flex; align-items: center; gap: 28px; margin-left: 14px; }
.landing-nav a,
.landing-header__login {
  color: #9aa9bb;
  font: 600 13px/1 var(--font-sans, sans-serif);
  text-decoration: none;
  transition: color .2s ease;
}
.landing-nav a:hover,
.landing-header__login:hover { color: #fff; }
.landing-header__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.landing-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: var(--landing-panel);
}
.landing-menu-toggle img { width: 20px; filter: brightness(2); }
.landing-mobile-menu {
  display: grid;
  gap: 1px;
  padding: 8px 24px 18px;
  border-top: 1px solid var(--landing-line-soft);
  background: #070d16;
}
.landing-mobile-menu a { min-height: 48px; display: flex; align-items: center; color: #dfe7f1; text-decoration: none; }

/* Compact language control, backed by the existing locale cookie. */
.language-switcher { position: relative; color: #9aa9bb; font: 700 11px/1 var(--font-mono, monospace); letter-spacing: .08em; }
.language-switcher > summary {
  width: 54px;
  min-width: 54px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--landing-line);
  border-radius: 7px;
  cursor: pointer;
  list-style: none;
}
.language-switcher > summary::marker { content: ""; }
.language-switcher > summary::-webkit-details-marker { display: none; }
.language-switcher > summary::after { content: none; }
.language-switcher[open] > summary,
.language-switcher > summary:hover { color: #fff; border-color: #51627a; }
.language-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 54px;
  min-width: 54px;
  padding: 4px;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  background: #0a111c;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .42);
}
.language-switcher__menu a {
  min-height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #a6b4c6;
  text-decoration: none;
}
.language-switcher__menu a:hover { background: #111c2b; color: #fff; }
.language-switcher__menu a[aria-current="true"] { color: var(--landing-orange); background: rgba(255,106,18,.08); box-shadow: inset 2px 0 0 var(--landing-orange); }
.language-switcher summary:focus-visible,
.language-switcher a:focus-visible { outline: 2px solid var(--landing-orange); outline-offset: 2px; }

/* Shared typography and controls */
.landing-kicker,
.landing-eyebrow {
  margin: 0 0 16px;
  color: var(--landing-orange);
  font: 700 11px/1.3 var(--font-mono, monospace);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.landing-kicker { display: inline-flex; align-items: center; gap: 10px; color: #b7c4d3; }
.landing-live-dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--landing-cyan); box-shadow: 0 0 0 5px rgba(97, 212, 207, .1); }
.landing-page h1,
.landing-page h2,
.landing-page h3 { margin: 0; color: var(--landing-copy); font-family: var(--font-condensed, var(--font-sans, sans-serif)); }
.landing-page h1 { max-width: 1060px; font-size: clamp(50px, 6.4vw, 92px); line-height: .94; letter-spacing: -.035em; text-transform: uppercase; }
.landing-page h2 { font-size: clamp(34px, 4.1vw, 60px); line-height: .98; letter-spacing: -.025em; text-transform: uppercase; }
.landing-page h3 { font-size: 20px; line-height: 1.15; }
.landing-page p { color: var(--landing-muted); font-size: 16px; line-height: 1.65; }
.landing-button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--landing-orange);
  border-radius: 7px;
  background: var(--landing-orange);
  color: #fff;
  font: 700 13px/1 var(--font-sans, sans-serif);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255, 100, 31, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.landing-button:hover { transform: translateY(-2px); background: #ff763b; box-shadow: 0 14px 34px rgba(255, 100, 31, .26); }
.landing-button img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.landing-button--secondary { border-color: #34455d; background: #0a111c; box-shadow: none; }
.landing-button--secondary:hover { background: #111b2a; box-shadow: none; }
.landing-button--small { min-height: 40px; padding-inline: 16px; }
.landing-text-link { display: inline-flex; align-items: center; gap: 10px; color: #f4f7fb; font-weight: 700; text-decoration: none; }
.landing-text-link span { color: var(--landing-orange); transition: transform .2s ease; }
.landing-text-link:hover span { transform: translateX(4px); }

/* Hero */
.landing-hero { padding: 92px 0 72px; }
.landing-hero__copy { text-align: center; }
.landing-hero__copy .landing-kicker { justify-content: center; }
.landing-hero__copy h1 { margin-inline: auto; }
.landing-hero__lead { max-width: 820px; margin: 26px auto 0; font-size: clamp(18px, 1.8vw, 23px) !important; }
.landing-hero__actions { margin-top: 32px; display: flex; justify-content: center; gap: 12px; }
.landing-hero__stage { margin-top: 58px; perspective: 1500px; }
.landing-product-frame {
  overflow: hidden;
  border: 1px solid var(--landing-line);
  border-radius: 12px;
  background: #070d16;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}
.landing-product-frame--hero {
  transform: rotateX(1deg);
  transform-origin: center top;
  transition: transform .14s ease-out;
}
.landing-product-frame__bar {
  min-height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--landing-line-soft);
  background: #0a111c;
  color: #8293a9;
  font: 600 10px/1 var(--font-mono, monospace);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.landing-product-frame__identity { display: inline-flex; align-items: center; gap: 10px; }
.landing-product-frame__note { color: var(--landing-cyan); }
.landing-product-frame__viewport { overflow: hidden; background: #03080f; }
.landing-product-frame__viewport img { display: block; width: 100%; height: auto; }
.landing-capability-row {
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--landing-line-soft);
  border-radius: 9px;
  background: rgba(10, 17, 28, .72);
}
.landing-capability-row span {
  min-height: 54px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 1px solid var(--landing-line-soft);
  color: #b8c5d4;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.landing-capability-row span:last-child { border-right: 0; }
.landing-capability-row img { width: 17px; opacity: .8; filter: invert(76%) sepia(43%) saturate(505%) hue-rotate(127deg); }

/* Sections */
.landing-section { padding: 92px 0; border-top: 1px solid var(--landing-line-soft); }
.landing-section__header {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .7fr);
  align-items: end;
  gap: 70px;
}
.landing-section__header > p { margin: 0 0 4px; }
.landing-section__copy { align-self: center; }
.landing-section__copy > p:not(.landing-eyebrow):not(.landing-status-note):not(.landing-inventory-note) { margin: 24px 0 0; max-width: 620px; }
.landing-split { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 72px; align-items: center; }

/* Voice */
.landing-section--voice { background: #070d16; }
.landing-split--voice { grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); }
.landing-checklist { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.landing-checklist li { position: relative; padding-left: 24px; color: #b5c1d0; font-size: 14px; line-height: 1.55; }
.landing-checklist li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border: 1px solid var(--landing-cyan); border-radius: 50%; }

/* Demo upload / BO3 showcase --------------------------------------------- */
.landing-section--series { background: #050a12; }
.landing-series { display: grid; grid-template-columns: minmax(320px, .76fr) minmax(0, 1.24fr); gap: 72px; align-items: center; }
.landing-series__formats { margin: 28px 0 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--landing-line-soft); border-radius: 9px; overflow: hidden; }
.landing-series__formats span { min-height: 84px; padding: 14px; display: grid; align-content: center; gap: 7px; border-right: 1px solid var(--landing-line-soft); color: #8fa0b4; font-size: 11px; line-height: 1.35; }
.landing-series__formats span:last-child { border-right: 0; }
.landing-series__formats b { color: #f4f7fb; font: 800 18px/1 var(--font-mono, monospace); }
.landing-series__report { overflow: hidden; border: 1px solid var(--landing-line); border-radius: 12px; background: linear-gradient(145deg, #0d1622, #080e17); box-shadow: 0 28px 80px rgba(0,0,0,.32); }
.landing-series__head { min-height: 92px; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--landing-line-soft); background: radial-gradient(circle at 85% 0, rgba(255,100,31,.13), transparent 42%); }
.landing-series__head > div { display: grid; gap: 7px; }
.landing-series__head span { color: #718298; font: 700 9px/1 var(--font-mono, monospace); letter-spacing: .14em; }
.landing-series__head strong { color: #fff; font: 700 24px/1 var(--font-condensed, sans-serif); text-transform: uppercase; }
.landing-series__head strong i { margin-inline: 7px; color: #6f8196; font: 500 12px/1 var(--font-mono, monospace); text-transform: none; }
.landing-series__head > b { padding: 7px 10px; border: 1px solid rgba(255,100,31,.42); border-radius: 5px; color: #ff8b56; font: 800 11px/1 var(--font-mono, monospace); }
.landing-series__maps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.landing-series__maps > a,
.landing-series__maps > span { min-height: 132px; padding: 18px 20px; display: grid; align-content: center; gap: 8px; border-right: 1px solid var(--landing-line-soft); color: inherit; text-decoration: none; transition: background .2s ease; }
.landing-series__maps > :last-child { border-right: 0; }
.landing-series__maps > a:hover { background: rgba(255,255,255,.025); }
.landing-series__maps span,
.landing-series__maps small { color: #67798e; font: 700 9px/1 var(--font-mono, monospace); letter-spacing: .1em; }
.landing-series__maps strong { color: #eaf0f7; font: 700 18px/1 var(--font-condensed, sans-serif); text-transform: uppercase; }
.landing-series__maps b { color: var(--landing-cyan); font: 800 24px/1 var(--font-mono, monospace); }
.landing-series__summary { min-height: 78px; padding: 17px 22px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; border-top: 1px solid var(--landing-line-soft); background: #080f19; }
.landing-series__summary span { padding: 6px 8px; border-radius: 4px; background: rgba(97,212,207,.09); color: var(--landing-cyan); font: 800 9px/1 var(--font-mono, monospace); letter-spacing: .08em; text-transform: uppercase; }
.landing-series__summary strong { color: #aebdce; font-size: 12px; }
.landing-series__summary a { color: #fff; font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.landing-series__summary a:hover { color: var(--landing-orange); }
.landing-voice-detail { position: relative; }
.landing-crop { position: relative; overflow: hidden; border: 1px solid var(--landing-line); border-radius: 12px; background: #03080f; box-shadow: 0 24px 70px rgba(0, 0, 0, .32); }
.landing-crop img { position: absolute; display: block; max-width: none; }
.landing-crop--asset img { position: static; width: 100%; height: auto; max-width: 100%; }
.landing-crop--voice { height: auto; }
.landing-crop--voice img { width: 100%; height: auto; }
.landing-voice-detail__caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  max-width: calc(100% - 44px);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 100, 31, .6);
  border-radius: 8px;
  background: rgba(5, 10, 18, .94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .42);
}
.landing-voice-detail__caption b,
.landing-voice-detail__caption small { display: block; }
.landing-voice-detail__caption b { font-size: 12px; }
.landing-voice-detail__caption small { margin-top: 4px; color: #8292a7; font-size: 10px; }
.landing-voice-wave { height: 26px; display: flex; align-items: center; gap: 3px; }
.landing-voice-wave i { width: 3px; height: 8px; border-radius: 2px; background: var(--landing-orange); animation: landing-wave .8s ease-in-out infinite alternate; }
.landing-voice-wave i:nth-child(2) { height: 20px; animation-delay: -.4s; }
.landing-voice-wave i:nth-child(3) { height: 13px; animation-delay: -.2s; }
.landing-voice-wave i:nth-child(4) { height: 24px; animation-delay: -.6s; }

/* Match stats */
.landing-section--stats .landing-product-frame__viewport { max-height: none; }
.landing-live-preview {
  overflow: hidden;
  border: 1px solid var(--landing-line);
  border-radius: 12px;
  background: #050a12;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}
.landing-live-preview .landing-product-frame__bar a {
  color: #dce5ef;
  text-decoration: none;
  transition: color .2s ease;
}
.landing-live-preview .landing-product-frame__bar a:hover { color: var(--landing-orange); }
.landing-live-preview__hint {
  min-height: 38px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--landing-line-soft);
  color: #8192a7;
  font: 600 10px/1.3 var(--font-mono, monospace);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.landing-live-preview iframe {
  display: block;
  width: 100%;
  height: min(760px, 72vh);
  min-height: 620px;
  border: 0;
  background: #050a12;
}
.landing-badge { display: inline-flex; align-items: center; width: fit-content; padding: 5px 8px; border-radius: 5px; font: 800 10px/1 var(--font-mono, monospace); letter-spacing: .1em; vertical-align: middle; }
.landing-badge--mvp { border: 1px solid #66541d; color: #ffd353; background: rgba(77, 60, 6, .24); }
.landing-badge--beta { margin-left: 8px; border: 1px solid rgba(97, 212, 207, .45); color: var(--landing-cyan); background: rgba(97, 212, 207, .08); }
.landing-stats-notes { margin-top: 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.landing-stats-notes article { padding: 22px; display: flex; gap: 17px; border: 1px solid var(--landing-line-soft); border-radius: 9px; background: #080f19; }
.landing-stats-notes article > span { color: var(--landing-orange); font: 700 11px/1.4 var(--font-mono, monospace); }
.landing-stats-notes h3 { font-size: 17px; }
.landing-stats-notes p { margin: 8px 0 0; font-size: 13px; line-height: 1.55; }

/* Post-match story */
.landing-section--story {
  overflow: hidden;
  border-block: 1px solid var(--landing-line-soft);
  background:
    radial-gradient(circle at 76% 50%, rgba(255, 100, 31, .12), transparent 34%),
    #050a12;
}
.landing-story { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(42px, 6vw, 90px); }
.landing-story__copy > p:not(.landing-eyebrow) { max-width: 590px; margin: 20px 0 0; }
.landing-story__steps { margin: 30px 0; padding: 0; display: grid; gap: 0; list-style: none; }
.landing-story__steps li { min-height: 54px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--landing-line-soft); color: #c2cedb; font-size: 13px; }
.landing-story__steps li:first-child { border-top: 1px solid var(--landing-line-soft); }
.landing-story__steps span { color: var(--landing-orange); font: 700 10px/1 var(--font-mono, monospace); letter-spacing: .08em; }
.landing-story__screens { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: clamp(10px, 1.4vw, 18px); }
.landing-story__screen { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(109, 132, 158, .38); border-radius: 12px; background: #03070d; box-shadow: 0 22px 54px rgba(0, 0, 0, .42); }
.landing-story__screen figcaption { height: 42px; padding: 0 13px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid var(--landing-line-soft); color: #d9e2ec; font: 650 11px/1 var(--font-mono, monospace); letter-spacing: .04em; text-transform: uppercase; }
.landing-story__screen figcaption span { color: var(--landing-orange); font-size: 9px; }
.landing-story__screen img { width: 100%; height: auto; aspect-ratio: 431 / 844; display: block; object-fit: cover; object-position: center; }
.landing-story__screen::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025); pointer-events: none; }

/* Personal overview */
.landing-section--overview { background: #070d16; }
.landing-split--overview { grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); }
.landing-crop--overview { height: auto; }
.landing-crop--overview img { width: 100%; }
.landing-label-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.landing-label-grid span { min-height: 58px; padding: 12px 14px; display: flex; align-items: center; border: 1px solid var(--landing-line-soft); border-radius: 7px; color: #b7c4d3; font-size: 12px; line-height: 1.4; }

/* Library */
.landing-source-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.landing-source-row span { min-height: 40px; padding: 0 13px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--landing-line); border-radius: 6px; color: #d6deea; font: 600 12px/1 var(--font-mono, monospace); }
.landing-source-row img { width: 16px; filter: brightness(2); }
.landing-status-note { margin: 16px 0 0; display: flex; align-items: center; gap: 9px; color: #8c9caf !important; font: 600 11px/1.4 var(--font-mono, monospace); }
.landing-status-note i { width: 6px; height: 6px; border-radius: 50%; background: #d99a46; }

/* Tactics */
.landing-section--tactics { background: #070d16; }
.landing-product-frame--tactics { max-width: 1220px; margin-inline: auto; }
.landing-product-frame--tactics .landing-product-frame__viewport { max-height: none; }
.landing-presence { display: inline-flex; align-items: center; gap: 4px; color: #9eb0c4; }
.landing-presence i { width: 9px; height: 9px; margin-left: -2px; border: 2px solid #0a111c; border-radius: 50%; background: var(--landing-cyan); }
.landing-capability-row--tactics { max-width: 1000px; }
.landing-capability-row--tactics span { color: #a8b7c8; }

/* Player search */
.landing-player-tools {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
  gap: 12px 28px;
  align-items: start;
}
.landing-search-example { margin-top: 28px; min-height: 54px; max-width: 560px; padding: 0 12px 0 16px; display: flex; align-items: center; gap: 12px; border: 1px solid #34465d; border-radius: 8px; background: #08101b; }
.landing-search-example img { width: 18px; opacity: .65; filter: invert(1); }
.landing-search-example span { color: #e8edf5; font: 600 13px/1 var(--font-mono, monospace); }
.landing-search-example b { margin-left: auto; padding: 8px 10px; border-radius: 5px; background: rgba(255, 100, 31, .1); color: #ff8852; font-size: 10px; }
.landing-inventory-note { grid-column: 1; margin: 0 !important; color: #718197 !important; font-size: 12px !important; }
.landing-label-grid--players { grid-column: 2; grid-row: 1 / span 2; margin: 28px 0 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.landing-player-tools > .landing-text-link { align-self: end; }
.landing-player-showcase { min-width: 0; display: grid; gap: 12px; }
.landing-player-showcase--current { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.landing-player-showcase--current .landing-product-frame__viewport { overflow: hidden; }
.landing-player-showcase--current img { width: 100%; height: auto; }
.landing-player-showcase__details { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; }
.landing-player-showcase__details .landing-crop { height: 270px; }
.landing-player-showcase__details img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* CTA */
.landing-cta { padding: 90px 0; border-top: 1px solid var(--landing-line-soft); }
.landing-cta__inner { padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 48px; border: 1px solid #2a3a4f; border-radius: 12px; background: #0a111c; box-shadow: inset 0 1px rgba(255, 255, 255, .02); }
.landing-cta h2 { max-width: 760px; }
.landing-cta p:not(.landing-eyebrow) { max-width: 720px; margin: 18px 0 0; }
.landing-cta__actions { min-width: 210px; display: grid; justify-items: center; gap: 16px; }

/* Motion */
.landing-ready [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1); }
.landing-ready [data-reveal-delay="1"] { transition-delay: .1s; }
.landing-ready [data-reveal-delay="2"] { transition-delay: .2s; }
.landing-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes landing-wave { from { transform: scaleY(.55); opacity: .55; } to { transform: scaleY(1); opacity: 1; } }

@media (max-width: 1100px) {
  .landing-nav { display: none; }
  .landing-menu-toggle { display: grid; }
  .landing-split,
  .landing-split--voice,
  .landing-split--overview,
  .landing-series { grid-template-columns: 1fr; gap: 38px; }
  .landing-section__header { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .landing-section__header > p { max-width: 760px; }
  .landing-section__copy > p:not(.landing-eyebrow):not(.landing-status-note):not(.landing-inventory-note) { max-width: 760px; }
  .landing-section--overview .landing-section__copy { order: -1; }
  .landing-story { grid-template-columns: 1fr; }
  .landing-story__copy > p:not(.landing-eyebrow) { max-width: 760px; }
  .landing-story__screens { width: min(100%, 860px); margin-inline: auto; }
  .landing-player-tools { grid-template-columns: 1fr; }
  .landing-label-grid--players { grid-column: 1; grid-row: auto; }
  .landing-player-showcase--current { grid-template-columns: 1fr; }
  .landing-crop--voice,
  .landing-crop--overview { height: auto; }
}

@media (max-width: 767px) {
  .landing-container,
  .landing-header__inner { width: min(100% - 28px, 1440px); }
  .landing-header__inner { min-height: 62px; gap: 10px; }
  .landing-header__brand img { width: 112px; }
  .landing-header__login,
  .landing-header__actions > .landing-button { display: none; }
  .landing-header__actions { gap: 8px; }
  .language-switcher > summary { min-width: 50px; min-height: 44px; }
  .landing-hero { padding: 68px 0 56px; }
  .landing-page h1 { font-size: clamp(42px, 13vw, 62px); }
  .landing-page h2 { font-size: clamp(32px, 10.2vw, 46px); }
  .landing-hero__lead { margin-top: 20px; font-size: 17px !important; }
  .landing-hero__actions { margin-top: 26px; flex-direction: column; }
  .landing-hero__actions .landing-button { width: 100%; }
  .landing-series__formats { grid-template-columns: 1fr; }
  .landing-series__formats span { min-height: 62px; grid-template-columns: 62px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid var(--landing-line-soft); }
  .landing-series__formats span:last-child { border-bottom: 0; }
  .landing-series__maps { grid-template-columns: 1fr; }
  .landing-series__maps > a,
  .landing-series__maps > span { min-height: 74px; grid-template-columns: 54px 1fr auto; align-items: center; border-right: 0; border-bottom: 1px solid var(--landing-line-soft); }
  .landing-series__summary { grid-template-columns: 1fr; align-items: start; }
  .landing-hero__stage { margin-top: 38px; }
  .landing-product-frame { border-radius: 8px; }
  .landing-product-frame__bar { min-height: 40px; padding-inline: 11px; }
  .landing-product-frame__note { display: none; }
  .landing-product-frame--hero .landing-product-frame__viewport { overflow: hidden; }
  .landing-product-frame--hero .landing-product-frame__viewport img { width: 100%; max-width: 100%; transform: none; }
  .landing-capability-row { grid-template-columns: repeat(2, 1fr); }
  .landing-capability-row span { border-bottom: 1px solid var(--landing-line-soft); }
  .landing-capability-row span:nth-child(2) { border-right: 0; }
  .landing-capability-row span:nth-child(3),
  .landing-capability-row span:nth-child(4) { border-bottom: 0; }
  .landing-section { padding: 72px 0; }
  .landing-section__header { margin-bottom: 28px; }
  .landing-crop--voice { height: auto; }
  .landing-crop--voice img { width: 100%; }
  .landing-stats-notes { grid-template-columns: 1fr; }
  .landing-story { gap: 34px; }
  .landing-story__screens { width: calc(100vw - 28px); min-height: 0; margin-inline: 0; padding: 4px 0 14px; display: grid; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(76vw, 280px); gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .landing-story__screen { width: auto; border-radius: 9px; scroll-snap-align: center; }
  .landing-section--stats .landing-product-frame__viewport { max-height: none; overflow: hidden; }
  .landing-section--stats .landing-product-frame__viewport img { width: 100%; max-width: 100%; transform: none; }
  .landing-live-preview { border-radius: 8px; }
  .landing-live-preview__hint { min-height: 48px; padding: 8px 11px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
  .landing-live-preview iframe { height: 640px; min-height: 0; }
  .landing-crop--overview { height: auto; overflow: hidden; }
  .landing-crop--overview img { width: 100%; max-width: 100%; }
  .landing-label-grid { grid-template-columns: 1fr; }
  .landing-product-frame--library .landing-product-frame__viewport,
  .landing-product-frame--tactics .landing-product-frame__viewport { overflow: hidden; }
  .landing-product-frame--library .landing-product-frame__viewport img,
  .landing-product-frame--tactics img,
  .landing-player-showcase--current img { width: 100%; max-width: 100%; height: auto; transform: none; }
  .landing-player-showcase__details { grid-template-columns: 1fr; }
  .landing-search-example b { display: none; }
  .landing-player-stack__labels { right: 10px; bottom: 10px; max-width: calc(100% - 20px); flex-wrap: wrap; justify-content: flex-end; }
  .landing-cta { padding: 68px 0; }
  .landing-cta__inner { padding: 28px 22px; display: grid; gap: 30px; }
  .landing-cta__actions { width: 100%; }
  .landing-cta__actions .landing-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .landing-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
  .landing-product-frame--hero { transform: none !important; transition: none; }
  .landing-voice-wave i { animation: none; }
  .landing-button,
  .landing-text-link span { transition: none; }
}
