/* ============================================================================
   DICE — Pillar Landing  ·  FLAT REFERENCE STYLESHEET
   Reference pillar: SPORTS (teal). Plain CSS, real selectors, literal values.
   Authored from source (not transcribed from a bundle). Full responsive layer
   at the bottom. Pair with pillar-landing-sports.html.

   THEMING: to retheme for another pillar, override the 5 --pl-* vars in the
   ".pl" block (see PILLAR PRESETS at the very end). Everything else is shared.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   TOKENS — every custom property resolved to a concrete value.
   (Mirror of tokens/colors.css + spacing.css + typography.css, 2026.06.13.)
   -------------------------------------------------------------------------- */
:root {
  /* brand palette */
  --navy: #071E32;
  --ink: #0B1B2B;
  --text: #3D4754;
  --muted: #595959;
  --accent: #0B599C;
  --accent-strong: #094B82;

  /* surfaces */
  --bg: #FFFFFF;
  --bg-subtle: #F8F8F8;
  --bg-muted: #EEF1F4;
  --border: #E2E6EA;
  --border-strong: #CBD2D9;
  --surface-page: #FFFFFF;
  --surface-subtle: #F8F8F8;
  --text-on-dark-muted: #B7C2CE;
  --focus-ring: rgba(31, 128, 190, 0.5);

  /* pillar accents (all six; Sports is the reference) */
  --pillar-entertainment-fill: #ECE3F7; --pillar-entertainment-ink: #4A148C; --pillar-entertainment-base: #7B2FBE;
  --pillar-sports-fill: #D7F0EC;        --pillar-sports-ink: #00504A;        --pillar-sports-base: #0E8C7E;
  --pillar-channels-fill: #FBEFCC;      --pillar-channels-ink: #6B4A00;      --pillar-channels-base: #C08A12;
  --pillar-solutions-fill: #DEEAFB;     --pillar-solutions-ink: #0D3C8B;     --pillar-solutions-base: #1E5FC4;
  --pillar-neutral-fill:  #EEF1F4;      --pillar-neutral-ink:  #33414F;      --pillar-neutral-base:  #5B6B7A;

  /* type */
  --font: "Open Sans", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-eyebrow: 13px;
  --tracking-eyebrow: 0.12em;
  --fw-heading: 600;
  --fw-strong: 700;
  --fw-black: 800;

  /* radius */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
  --radius-pill: 999px;

  /* elevation */
  --shadow-xs: 0 1px 2px rgba(7, 30, 50, 0.06);
  --shadow-sm: 0 1px 3px rgba(7, 30, 50, 0.08), 0 1px 2px rgba(7, 30, 50, 0.04);
  --shadow-md: 0 6px 18px rgba(7, 30, 50, 0.10);
  --shadow-card-hover: 0 12px 32px rgba(7, 30, 50, 0.16);

  /* layout */
  --container-wide: 1320px;

  /* motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.15s;
  --dur-base: 0.25s;
}

/* ----------------------------------------------------------------------------
   PILLAR THEME VARS — the only things that change per pillar.
   Defaults = SPORTS. See PILLAR PRESETS at the end to retheme.
   -------------------------------------------------------------------------- */
.pl {
  --pl-fill: var(--pillar-sports-fill);
  --pl-ink:  var(--pillar-sports-ink);
  --pl-base: var(--pillar-sports-base);
  --pl-glow: rgba(14, 140, 126, 0.38); /* hero radial glow */
  --pl-light: #5FD0BF;                 /* eyebrow-on-navy text */
}

/* ----------------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
.pl {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}
.pl a { text-decoration: none; color: inherit; }
.pl img { display: block; }
.pl ::selection { background: var(--pl-fill); color: var(--pl-ink); }
.pl-container { max-width: var(--container-wide); margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* ----------------------------------------------------------------------------
   HEADER / NAV
   -------------------------------------------------------------------------- */
.pl-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 30, 50, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pl-header__inner {
  max-width: var(--container-wide); margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
}
.pl-logo { flex: none; display: inline-flex; align-items: center; }
.pl-logo img { height: 22px; }
.pl-nav { display: flex; align-items: center; gap: 26px; flex: 1; }
.pl-nav__link {
  font-size: 14.5px; font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--dur-fast) var(--ease-standard);
}
.pl-nav__link:hover { color: #fff; }
.pl-nav__link--active {           /* active-pillar state */
  font-weight: 700; color: #fff;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--pl-base);
}
.pl-header__cta { display: flex; align-items: center; gap: 12px; flex: none; }

/* shared button atoms used in header + hero + browse-all + form */
.pl-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; white-space: nowrap;
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard);
}
.pl-btn--sm   { height: 38px; padding: 0 16px; font-size: 14px; }
.pl-btn--lg   { height: 54px; padding: 0 30px; font-size: 16px; }
.pl-btn--white      { background: #fff; color: var(--navy); border: 1px solid #fff; }
.pl-btn--white:hover{ background: #EAF1F8; }
.pl-btn--outline-light      { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.pl-btn--outline-light:hover{ background: rgba(255,255,255,0.08); }
.pl-btn--ghost-light        { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.pl-btn--ghost-light:hover  { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.pl-btn--accent-outline       { background: #fff; color: var(--accent); border: 1px solid var(--accent); padding: 0 30px; gap: 9px; }
.pl-btn--accent-outline:hover { background: var(--accent); color: #fff; }
.pl-btn--primary       { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.pl-btn--primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }

/* ----------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.pl-hero { position: relative; overflow: hidden; background: var(--navy); }
.pl-hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 78% at 74% 22%, var(--pl-glow), transparent 62%);
}
.pl-hero__globe {
  position: absolute; right: -110px; bottom: -150px;
  width: 560px; opacity: 0.06; pointer-events: none;
}
.pl-hero__inner {
  position: relative; max-width: var(--container-wide); margin: 0 auto;
  padding: 104px 32px 112px;
}
.pl-hero__body { max-width: 760px; }
.pl-eyebrow {
  font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
}
.pl-hero__eyebrow { color: var(--pl-light); margin-bottom: 20px; }
.pl-hero__title {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 76px); line-height: 1.03;
  letter-spacing: -0.02em; font-weight: 800; color: #fff;
}
.pl-hero__sub {
  margin: 22px 0 0; max-width: 620px;
  font-size: clamp(18px, 1.6vw, 21px); line-height: 1.55;
  color: var(--text-on-dark-muted);
}
.pl-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 36px; }
.pl-hero__actions .pl-btn--lg { height: 54px; }
.pl-hero__actions .pl-btn--white { padding: 0 32px; }
.pl-hero__note { margin: 18px 0 0; font-size: 13.5px; color: rgba(255, 255, 255, 0.5); }

/* ----------------------------------------------------------------------------
   FACET CHIPS
   -------------------------------------------------------------------------- */
.pl-facets { background: var(--surface-page); border-bottom: 1px solid var(--border); }
.pl-facets__inner { max-width: var(--container-wide); margin: 0 auto; padding: 26px 32px; }
.pl-facets__row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.pl-facets__label {
  margin-right: 6px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
}
.pl-chip {
  display: inline-flex; align-items: center;
  padding: 8px 15px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: #fff;
  color: var(--ink); font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--dur-fast) var(--ease-standard),
              background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
}
.pl-chip:hover { border-color: var(--pl-base); background: var(--pl-fill); color: var(--pl-ink); }

/* ----------------------------------------------------------------------------
   CONTENT ROWS + SECTION HEADINGS
   -------------------------------------------------------------------------- */
.pl-row { max-width: var(--container-wide); margin: 0 auto; padding: 80px 32px 8px; }
.pl-row + .pl-row { padding-top: 64px; }
.pl-row__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 28px;
}
.pl-row__heads { max-width: 680px; }
.pl-row__eyebrow { color: var(--pl-base); margin-bottom: 12px; }
.pl-row__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 38px); line-height: 1.15;
  letter-spacing: -0.01em; font-weight: 700; color: var(--ink);
}
.pl-row__sub { margin: 14px 0 0; font-size: 18px; line-height: 1.55; color: var(--text); }
.pl-row__viewall {
  flex: none; display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600; color: var(--accent); padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-standard);
}
.pl-row__viewall:hover { color: var(--accent-strong); }
.pl-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
}

/* ----------------------------------------------------------------------------
   POSTER CARD
   -------------------------------------------------------------------------- */
.pl-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.pl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pl-card__media {
  position: relative; aspect-ratio: 16 / 9; background: var(--bg-subtle);
}
.pl-card__media img { width: 100%; height: 100%; object-fit: cover; }
.pl-card__fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-subtle);
}
.pl-card__fallback img { width: 88px; opacity: 0.85; }
.pl-card__badge {                 /* listing-type pill, pillar-tinted */
  position: absolute; top: 10px; left: 10px;
  padding: 4px 9px; border-radius: var(--radius-pill);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--pl-fill); color: var(--pl-ink);
}
.pl-card__overlay {               /* hover gradient */
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: linear-gradient(to top, rgba(7,30,50,0.92) 0%, rgba(7,30,50,0.55) 45%, rgba(7,30,50,0.10) 100%);
  transition: opacity var(--dur-base) var(--ease-standard);
}
.pl-card:hover .pl-card__overlay { opacity: 1; }
.pl-card__strip { background: rgba(7, 30, 50, 0.92); padding: 10px 12px; }
.pl-card__title {
  font-size: 14px; font-weight: 600; color: #fff; line-height: 1.25;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pl-card__meta { margin-top: 2px; font-size: 12px; color: #B7C2CE; }

/* ----------------------------------------------------------------------------
   BROWSE ALL
   -------------------------------------------------------------------------- */
.pl-browse { max-width: var(--container-wide); margin: 0 auto; padding: 56px 32px 88px; text-align: center; }
.pl-browse__inner { display: inline-flex; flex-direction: column; align-items: center; gap: 14px; }
.pl-browse__note { font-size: 13.5px; color: var(--muted); }

/* ----------------------------------------------------------------------------
   REQUEST-ACCESS FORM
   -------------------------------------------------------------------------- */
.pl-enquiry { background: var(--surface-subtle); border-top: 1px solid var(--border); }
.pl-enquiry__inner {
  max-width: 1100px; margin: 0 auto; padding: 88px 32px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start;
}
.pl-enquiry__eyebrow { color: var(--pl-base); margin-bottom: 14px; }
.pl-enquiry__title {
  margin: 0; font-size: clamp(28px, 3vw, 38px); line-height: 1.12;
  letter-spacing: -0.01em; font-weight: 700; color: var(--ink);
}
.pl-enquiry__lede { margin: 16px 0 0; max-width: 460px; font-size: 18px; line-height: 1.55; color: var(--text); }
.pl-enquiry__bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.pl-enquiry__bullet { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.pl-enquiry__dot { width: 7px; height: 7px; border-radius: var(--radius-pill); background: var(--pl-base); flex: none; }

.pl-formcard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 30px;
}
.pl-form { display: flex; flex-direction: column; gap: 18px; }
.pl-field { display: flex; flex-direction: column; gap: 6px; }
.pl-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.pl-input, .pl-textarea {
  font-family: var(--font); font-size: 15px; color: var(--text);
  background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: var(--radius); padding: 11px 12px; outline: none;
  transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}
.pl-input::placeholder, .pl-textarea::placeholder { color: var(--muted); }
.pl-input:focus, .pl-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
.pl-textarea { resize: vertical; min-height: 84px; }
.pl-form__foot { margin: 0; text-align: center; font-size: 12.5px; color: var(--muted); }
.pl-form__foot a { color: var(--accent); font-weight: 600; }

/* ----------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.pl-footer { background: var(--navy); }
.pl-footer__inner {
  max-width: var(--container-wide); margin: 0 auto; padding: 40px 32px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.pl-footer__inner img { height: 20px; }
.pl-footer__nav { display: flex; flex-wrap: wrap; gap: 24px; }
.pl-footer__nav a { font-size: 14px; color: rgba(255, 255, 255, 0.62); transition: color var(--dur-fast) var(--ease-standard); }
.pl-footer__nav a:hover { color: #fff; }
.pl-footer__copy { font-size: 13px; color: rgba(255, 255, 255, 0.4); }

/* ============================================================================
   RESPONSIVE LAYER
   Desktop-first. Breakpoints: 1080 (small desktop), 860 (tablet), 600 (mobile).
   ========================================================================== */

/* ---- ≤1080px : tighten gutters + hero padding -------------------------- */
@media (max-width: 1080px) {
  .pl-header__inner,
  .pl-hero__inner,
  .pl-facets__inner,
  .pl-row,
  .pl-browse,
  .pl-footer__inner { padding-left: 24px; padding-right: 24px; }
  .pl-hero__inner { padding-top: 80px; padding-bottom: 84px; }
  .pl-enquiry__inner { gap: 40px; }
  .pl-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
}

/* ---- ≤860px : tablet. Nav collapses, enquiry + row heads stack ---------- */
@media (max-width: 860px) {
  /* header → menu button; primary nav hidden, CTAs slim */
  .pl-nav { display: none; }
  .pl-header__inner { gap: 16px; }
  .pl-header__cta .pl-btn--sm { padding: 0 12px; }

  /* hero type steps down */
  .pl-hero__inner { padding: 64px 24px 72px; }
  .pl-hero__body { max-width: none; }
  .pl-hero__sub { font-size: 18px; }

  /* row heads stack; "View all" drops below the heading group */
  .pl-row { padding-top: 56px; }
  .pl-row + .pl-row { padding-top: 48px; }
  .pl-row__head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pl-row__heads { max-width: none; }

  /* enquiry becomes a single column, form below copy */
  .pl-enquiry__inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 24px; }
  .pl-enquiry__lede { max-width: none; }

  /* cards: fixed 2-up so posters stay legible */
  .pl-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---- ≤600px : mobile. Single column, full-width CTAs, footer stacks ----- */
@media (max-width: 600px) {
  .pl-header__inner { padding: 12px 16px; }
  .pl-logo img { height: 20px; }

  /* hero */
  .pl-hero__inner { padding: 48px 16px 56px; }
  .pl-hero__title { font-size: clamp(32px, 9vw, 42px); }
  .pl-hero__sub { font-size: 16px; }
  .pl-hero__actions { gap: 10px; }
  .pl-hero__actions .pl-btn { width: 100%; }     /* stack CTAs full-width */

  /* facets + rows + browse + footer gutters */
  .pl-facets__inner { padding: 18px 16px; }
  .pl-row { padding: 40px 16px 8px; }
  .pl-row + .pl-row { padding-top: 36px; }
  .pl-browse { padding: 40px 16px 64px; }
  .pl-browse .pl-btn--accent-outline { width: 100%; }

  /* cards collapse to 1-up */
  .pl-grid { grid-template-columns: 1fr; gap: 16px; }
  .pl-card__media { aspect-ratio: 16 / 9; }

  /* enquiry */
  .pl-enquiry__inner { padding: 48px 16px; }
  .pl-formcard { padding: 22px; }

  /* footer stacks, left-aligned */
  .pl-footer__inner { flex-direction: column; align-items: flex-start; gap: 18px; padding: 32px 16px; }
  .pl-footer__nav { gap: 14px 20px; }
}

/* ---- reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .pl *, .pl *::before, .pl *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* ============================================================================
   PILLAR PRESETS — swap these 5 vars on .pl to retheme. (Sports is default.)
   Apply e.g. <div class="pl pl--entertainment"> and uncomment a block, OR
   just edit the .pl defaults above.
   ========================================================================== */
.pl--entertainment {
  --pl-fill: var(--pillar-entertainment-fill);
  --pl-ink:  var(--pillar-entertainment-ink);
  --pl-base: var(--pillar-entertainment-base);
  --pl-glow: rgba(123, 47, 190, 0.42);
  --pl-light: #C9A4EC;
}
.pl--sports {
  --pl-fill: var(--pillar-sports-fill);
  --pl-ink:  var(--pillar-sports-ink);
  --pl-base: var(--pillar-sports-base);
  --pl-glow: rgba(14, 140, 126, 0.38);
  --pl-light: #5FD0BF;
}
.pl--channels {
  --pl-fill: var(--pillar-channels-fill);
  --pl-ink:  var(--pillar-channels-ink);
  --pl-base: var(--pillar-channels-base);
  --pl-glow: rgba(192, 138, 18, 0.42);
  --pl-light: #EFC868;
}
.pl--solutions {
  --pl-fill: var(--pillar-solutions-fill);
  --pl-ink:  var(--pillar-solutions-ink);
  --pl-base: var(--pillar-solutions-base);
  --pl-glow: rgba(30, 95, 196, 0.42);
  --pl-light: #7FB3F2;
}
