:root {
  --bg-950: #05080d;
  --bg-900: #070b12;
  --bg-850: #0f1520;
  --bg-800: #161d28;
  --bg-780: #1f2631;
  --cream-100: #f3efe4;
  --cream-200: #e6dfcd;
  --gold-500: #b99a5e;
  --gold-450: #aa8c52;
  --gold-300: #d7c392;
  --text-100: #ffffff;
  --text-200: #d8d8d8;
  --text-300: #a3a7b0;
  --text-400: #8b8f97;
  --danger: #ff3d3d;
  --success: #9ad15b;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --border-dark: 1px solid #2e3847;
  --border-gold: 1px solid #886f41;
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg-950);
  color: var(--text-100);
  line-height: 1.4;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle at 50% -20%, rgba(185, 154, 94, 0.12), transparent 38%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  background: var(--bg-950);
}

.container {
  width: min(1180px, 100% - 24px);
  margin-inline: auto;
}

.mobile-container {
  width: min(420px, 100% - 24px);
  margin-inline: auto;
}

.section {
  padding-block: 32px;
}

.section-title {
  margin: 0 0 14px;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: clamp(1.8rem, 6vw, 2.9rem);
  line-height: 0.92;
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 2.1px;
  font-size: 0.68rem;
  font-weight: 700;
}

.subcopy {
  margin: 0;
  color: var(--text-200);
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(6px);
}

.site-header--dark {
  background: linear-gradient(180deg, rgba(7, 11, 18, 0.96), rgba(7, 11, 18, 0.9));
}

.site-header--cream {
  background: linear-gradient(180deg, #f4f0e5, #eee8d9);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  max-width: min(320px, 58vw);
}

.brand--light {
  color: var(--cream-100);
}

.brand--dark {
  color: #1b1a15;
}

.icon-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.role-menu-trigger {
  display: none;
}

.role-menu-trigger.is-enabled {
  display: inline-flex !important;
}

.role-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(280px, calc(100vw - 32px));
  background: #111824;
  border: 1px solid #364155;
  box-shadow: var(--shadow-card);
  padding: 8px;
  z-index: 40;
}

.role-menu[hidden] {
  display: none;
}

.role-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-menu__item {
  display: flex;
}

.role-menu__link,
.role-menu__button,
.role-menu__disabled {
  width: 100%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  font-size: 0.82rem;
  color: var(--text-100);
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
}

.role-menu__link:hover,
.role-menu__button:hover {
  border-color: #364155;
  background: #1b2432;
}

.role-menu__button {
  appearance: none;
  cursor: pointer;
}

.role-menu__button--danger {
  color: #ffc7c7;
}

.role-menu__disabled {
  color: var(--text-400);
  cursor: not-allowed;
}

.role-menu__meta {
  margin-left: auto;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-300);
}

.icon {
  width: 19px;
  height: 19px;
  color: currentColor;
}

.header-auth-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream-100);
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.72rem;
  line-height: 1;
}

.header-watch-live-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-right: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
  color: #0c1220;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.72rem;
  line-height: 1;
}

.header-watch-live-cta:hover {
  background: #f1f1f1;
  border-color: #ffffff;
}

.header-watch-live-cta:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 2px;
}

.header-auth-cta:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.14);
}

.header-auth-cta:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 5%, rgba(0, 0, 0, 0.62) 85%);
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-bg-shift, 0px), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 58px 0 26px;
}

.hero h1 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  font-size: clamp(3.15rem, 12.2vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
}

.hero-title-line + .hero-title-line {
  margin-top: 0.1em;
}

.hero h1 .hero-accent {
  color: var(--gold-500);
}

.hero p {
  margin: 12px 0 18px;
  color: var(--text-200);
  max-width: 480px;
  font-size: 0.86rem;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 280px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 0;
  border: 1px solid transparent;
  padding: 0 18px;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 0.82rem;
  cursor: pointer;
}

.button--primary {
  background: var(--gold-500);
  color: #18150e;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.button--primary:hover {
  background: var(--gold-450);
}

.button--sports-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(128deg, #8e1220 0%, #c51b2d 42%, #ef3c2f 100%);
  color: #fefefe;
  border-color: #f05a4d;
  box-shadow: 0 10px 22px rgba(199, 31, 45, 0.34), inset 0 -2px 0 rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  letter-spacing: 1.9px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.button--sports-cta::before {
  content: "";
  position: absolute;
  top: -24%;
  left: -36%;
  width: 52%;
  height: 148%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  transform: rotate(18deg);
  pointer-events: none;
}

.button--sports-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(199, 31, 45, 0.42), inset 0 -2px 0 rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: saturate(1.08);
}

.button--sports-cta:focus-visible {
  outline: 2px solid rgba(255, 122, 103, 0.9);
  outline-offset: 2px;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text-100);
}

.button--ghost {
  background: transparent;
  border-color: #3a4250;
  color: var(--text-100);
}

.feature-strip {
  background: #f7f5ef;
  color: #181a1f;
  border-bottom: 1px solid #dedad0;
}

.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-item {
  display: flex;
  gap: var(--space-3);
  padding: 14px 12px;
  border-right: 1px solid #d9d5ca;
  align-items: center;
  min-height: 82px;
  position: relative;
  background: transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.feature-item::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item img {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
}

.feature-item h3 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 0.9rem;
  color: #1a1a1a;
  line-height: 1;
}

.feature-item p {
  margin: 2px 0 0;
  color: #5f6064;
  font-size: 0.66rem;
}

@media (hover: hover) and (pointer: fine) {
  .feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 16px rgba(20, 24, 33, 0.1);
  }

  .feature-item:hover::after {
    transform: scaleX(1);
  }
}

.feature-item:focus-visible {
  outline: none;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(185, 154, 94, 0.6), 0 10px 16px rgba(20, 24, 33, 0.1);
}

.feature-item:focus-visible::after {
  transform: scaleX(1);
}

.feature-item:active {
  transform: translateY(-1px);
  background: rgba(185, 154, 94, 0.12);
}

.feature-item:active::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .feature-item,
  .feature-item::after {
    transition: none;
  }

  .feature-item:hover,
  .feature-item:focus-visible,
  .feature-item:active {
    transform: none;
  }
}

.content-light {
  background: linear-gradient(180deg, #f6f5f2, #f0efeb);
  color: #11141a;
}

.section-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.2vw, 3rem);
  letter-spacing: 0.6px;
  line-height: 0.95;
}

.live-indicator {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: var(--danger);
}

.card-grid {
  display: grid;
  gap: 10px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.broadcast-card {
  background: #0f141c;
  color: var(--text-100);
  border: 1px solid #293240;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.broadcast-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.broadcast-card__media {
  position: relative;
}

.broadcast-card__media img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  background: #2a2f38;
  color: #f5f5f5;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.58rem;
  padding: 2px 8px;
}

.tag--live {
  background: #d93a39;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-overlay img {
  width: 30px;
  height: 30px;
  opacity: 0.85;
}

.broadcast-card__body {
  padding: 9px 9px 10px;
}

.broadcast-card h3 {
  margin: 0 0 4px;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  line-height: 1;
  font-size: 0.86rem;
}

.broadcast-card p {
  margin: 0 0 5px;
  color: var(--text-300);
  font-size: 0.63rem;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: #bd9f62;
  font-size: 0.58rem;
}

.meta-row img {
  width: 10px;
  height: 10px;
}

.section-center {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}

.content-light .section-center .button--ghost {
  background: #11151d;
  border-color: #2f3743;
  color: #f4f0e5;
  box-shadow: 0 8px 18px rgba(15, 20, 28, 0.16);
}

.content-light .section-center .button--ghost:hover {
  background: #171d27;
  border-color: #b99a5e;
  color: #f7f1e2;
}

.content-light .section-center .button--ghost:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 154, 94, 0.35), 0 8px 18px rgba(15, 20, 28, 0.2);
}

.what-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(20, 24, 33, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.42));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.benefit img {
  width: 18px;
  height: 18px;
  color: #272e39;
  margin-top: 3px;
  transition: transform 180ms ease, color 180ms ease;
}

.benefit h3 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  line-height: 1.06;
  font-size: clamp(0.95rem, 1.35vw, 1.16rem);
}

.benefit p {
  margin: 7px 0 0;
  color: #4d535d;
  font-size: clamp(0.92rem, 1.05vw, 1.04rem);
  line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {
  .benefit:hover {
    transform: translateY(-2px);
    border-color: rgba(185, 154, 94, 0.45);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56));
    box-shadow: 0 10px 16px rgba(17, 22, 30, 0.07);
  }

  .benefit:hover img {
    transform: translateY(-1px);
    color: var(--gold-500);
  }
}

.benefit.reveal-ready,
.promo-panel.reveal-ready {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(2px);
}

.benefit.reveal-ready.is-visible,
.promo-panel.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .benefit,
  .benefit img,
  .benefit.reveal-ready,
  .promo-panel.reveal-ready {
    transition: none;
  }

  .benefit.reveal-ready,
  .promo-panel.reveal-ready {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.promo-panel {
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.88), rgba(12, 16, 22, 0.9)), url("../images/broadcast/files/championship-team-huddle.png") center/cover;
  color: var(--text-100);
  border: 1px solid #2e3746;
  padding: 14px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.promo-panel h3 {
  margin: 0 0 8px;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.5px;
  font-size: clamp(2rem, 7.2vw, 2.65rem);
}

.promo-panel h3 span {
  color: var(--gold-500);
}

.promo-panel p {
  margin: 0 0 10px;
  color: var(--text-200);
  font-size: 0.67rem;
}

.price-card {
  margin-top: 24px;
  background: #f1eee6;
  border: 1px solid #d9d4c8;
  color: #16181d;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
}

.pass-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.pass-badge__icon {
  width: 42px;
  height: 42px;
  background: #11151d;
  border: 1px solid #333;
  display: grid;
  place-items: center;
}

.pass-badge__icon img {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
}

.pass-badge h3 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.8px;
}

.pass-badge p {
  margin: 4px 0 0;
  color: #5b6069;
  font-size: 0.62rem;
}

.price {
  text-align: center;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

.price strong {
  display: block;
  font-size: 2.5rem;
  line-height: 0.9;
}

.price span {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  letter-spacing: 1.1px;
  line-height: 1;
}

.home-footer {
  background: #0e131a;
  color: var(--text-300);
  padding: 24px 0 20px;
  border-top: 1px solid #2b3340;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.footer-title {
  margin: 0 0 7px;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.78rem;
  color: var(--cream-200);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
  font-size: 0.65rem;
}

.social-row {
  display: flex;
  gap: 8px;
}

.social-row a {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  border: 1px solid #333d4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-row svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 30;
  background: linear-gradient(180deg, #101721, #0d141c);
  border-top: 1px solid #2c3441;
}

.sticky-cta__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.sticky-cta__copy strong {
  display: block;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.9rem;
}

.sticky-cta__copy span {
  color: var(--text-300);
  font-size: 0.64rem;
}

.dark-main {
  background: radial-gradient(circle at 50% -120px, rgba(185, 154, 94, 0.08), transparent 34%), var(--bg-900);
  padding-bottom: 26px;
}

.dark-page-hero {
  position: relative;
  padding: 34px 0 24px;
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.5), rgba(5, 8, 13, 1) 80%), url("../images/broadcast/files/pre-game-stadium-lights.png") center/cover;
}

.dark-page-hero h1 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 12vw, 5rem);
  line-height: 0.88;
  letter-spacing: 0.4px;
}

.about-page .dark-page-hero h1 {
  line-height: 0.97;
}

.dark-page-hero p {
  margin: 8px 0 0;
  color: var(--text-300);
  font-size: 0.74rem;
}

.tab-row {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #27303c;
}

.tab-row a {
  display: inline-block;
  padding-bottom: 10px;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.72rem;
  color: #9ba0a8;
}

.tab-row a.is-active {
  color: var(--gold-300);
  border-bottom: 2px solid var(--gold-500);
}

.live-schedule-page .live-schedule-menu {
  display: none;
}

.overlay-close {
  position: fixed;
  display: none;
  top: 74px;
  right: 16px;
  z-index: 24;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(5, 8, 13, 0.72);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.overlay-close .icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.overlay-close:hover {
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(5, 8, 13, 0.9);
}

.overlay-close:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 2px;
}

.account-page .overlay-close {
  display: inline-flex;
}

.dark-card {
  background: var(--bg-800);
  border: var(--border-dark);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.schedule-stack {
  display: grid;
  gap: var(--space-4);
}

.schedule-card {
  background: #111824;
  border: var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.schedule-card__inner {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.schedule-date {
  background: #1b2432;
  border: 1px solid #364155;
  text-align: center;
  padding: var(--space-2);
  text-transform: uppercase;
  font-family: Anton, "Bebas Neue", sans-serif;
  line-height: 1;
}

.schedule-date span {
  display: block;
  font-size: 0.72rem;
  color: #acb0b7;
  letter-spacing: 1px;
}

.schedule-date strong {
  display: block;
  font-size: 1.6rem;
  margin-top: 2px;
}

.schedule-card h3 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 1rem;
  line-height: 1;
}

.schedule-card p {
  margin: 6px 0 0;
  color: var(--text-300);
  font-size: 0.71rem;
}

.kicker-row {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
  color: var(--text-400);
  font-size: 0.64rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kicker img {
  width: 12px;
  height: 12px;
}

.content-shell {
  width: min(420px, 100% - 22px);
  margin-inline: auto;
}

.panel {
  background: linear-gradient(180deg, rgba(21, 27, 36, 0.98), rgba(10, 13, 20, 0.98));
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.panel + .panel {
  margin-top: var(--space-4);
}

.price-main {
  margin: var(--space-5) 0;
  text-align: center;
}

.price-main .price-label {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream-200);
}

.price-main .price-value {
  margin: var(--space-2) 0 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  font-size: 4.4rem;
  line-height: 0.8;
}

.price-main .price-value small {
  font-size: 1.3rem;
}

.price-main .price-value span {
  font-size: 1rem;
  color: var(--text-300);
  margin-left: 6px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-200);
  font-size: 0.76rem;
}

.check-list li::before {
  content: "✓";
  color: var(--gold-300);
  font-weight: 800;
}

.trust-grid {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid #374151;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.trust-item {
  text-align: center;
}

.trust-item img {
  width: 20px;
  height: 20px;
  margin: 0 auto var(--space-2);
}

.trust-item h4 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 1px;
}

.trust-item p {
  margin: 4px 0 0;
  color: var(--text-400);
  font-size: 0.62rem;
}

.about-story {
  color: var(--text-200);
  font-size: 0.8rem;
}

.mission-box {
  margin-top: var(--space-5);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  background: rgba(184, 154, 95, 0.08);
}

.mission-box__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.mission-box__head img {
  width: 30px;
  height: 30px;
}

.mission-box h3,
.faq-item h3,
.form-card h2 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
}

.stats-row {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.stat {
  border-top: 1px solid #333d4d;
  padding-top: var(--space-3);
}

.stat strong {
  display: block;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: 1.65rem;
  line-height: 0.9;
}

.stat span {
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.65rem;
}

.faq-list {
  display: grid;
  gap: var(--space-2);
}

.faq-item {
  border: var(--border-dark);
  border-radius: var(--radius-sm);
  background: #141a24;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--text-100);
  text-align: left;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  cursor: pointer;
}

.faq-question img {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  color: var(--text-300);
  padding: 0 12px 12px;
  font-size: 0.73rem;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-item.is-open .faq-question img {
  transform: rotate(180deg);
}

.form-card {
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.95), rgba(8, 12, 18, 0.98));
  border: var(--border-dark);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-card);
}

.form-card h2 {
  font-size: clamp(2.25rem, 9vw, 3.6rem);
}

.form-card p {
  color: var(--text-300);
  margin: var(--space-2) 0 var(--space-5);
  font-size: 0.73rem;
}

.form-stack {
  display: grid;
  gap: var(--space-3);
}

.signup-shell {
  display: grid;
  gap: 14px;
}

.signup-value {
  display: grid;
  gap: 14px;
  border-color: rgba(184, 154, 95, 0.52);
}

.signup-value .eyebrow {
  margin: 0;
}

.signup-value h2 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 0.98;
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.signup-value-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.signup-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border: 1px solid #303949;
  border-radius: var(--radius-sm);
  background: #101723;
  color: var(--text-200);
  font-size: 0.79rem;
  line-height: 1.42;
}

.signup-value-list img {
  width: 16px;
  height: 16px;
  color: #e2c88e;
  flex-shrink: 0;
  margin-top: 2px;
}

.signup-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.signup-trust-grid article {
  border: 1px solid #333d4e;
  border-radius: var(--radius-sm);
  background: #0e141f;
  padding: 9px 8px;
  display: grid;
  gap: 2px;
}

.signup-trust-grid strong {
  font-family: Anton, "Bebas Neue", sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.4px;
  line-height: 0.96;
  color: #f6e4bd;
}

.signup-trust-grid span {
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.58rem;
}

.signup-form-card {
  padding: 16px;
}

.input-wrap {
  border: 1px solid #2a3240;
  background: #111722;
  min-height: 44px;
  padding: 0 var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-radius: var(--radius-sm);
}

.input-wrap img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.sign-up-page .input-wrap img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.input-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-100);
  font: inherit;
}

.password-toggle {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dfe6f2;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.password-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle.is-visible .password-toggle__slash {
  opacity: 0;
}

.password-toggle:hover {
  color: #ffffff;
}

.password-toggle:focus-visible {
  outline: 2px solid rgba(185, 154, 94, 0.85);
  outline-offset: 2px;
}

.input-wrap input::placeholder {
  color: #6f7480;
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-300);
  font-size: 0.74rem;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkbox--stacked {
  align-items: flex-start;
  line-height: 1.4;
}

.checkbox--stacked input {
  margin-top: 2px;
}

.checkbox input {
  accent-color: var(--gold-500);
}

.text-link {
  color: var(--gold-300);
  text-decoration: none;
}

.divider {
  margin: var(--space-4) 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-400);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: #2f3743;
  flex: 1;
}

.social-stack {
  display: grid;
  gap: var(--space-2);
}

.social-btn {
  min-height: 42px;
  border: 1px solid #2e3643;
  border-radius: var(--radius-sm);
  background: #101620;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--text-200);
  font-size: 0.83rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  border-color: #465066;
  background: #131b27;
}

.social-btn:focus-visible {
  outline: 2px solid rgba(185, 154, 94, 0.8);
  outline-offset: 2px;
}

.social-btn[aria-disabled='true'] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
}

.social-btn[aria-disabled='true']::after {
  content: "Unavailable";
  margin-left: 6px;
  color: var(--text-400);
  font-size: 0.66rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.social-btn img {
  width: 15px;
  height: 15px;
}

.form-note,
.password-rules {
  color: var(--text-400);
  font-size: 0.73rem;
}

.form-note--compact {
  margin: 2px 0 0;
}

.form-note--center {
  text-align: center;
}

.auth-switch {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(47, 55, 67, 0.72);
  display: grid;
  gap: 10px;
}

.auth-switch-copy {
  margin: 0;
  text-align: center;
  color: #b7bcc7;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 0.64rem;
}

.auth-signup-cta {
  width: 100%;
  min-height: 50px;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 2.05px;
}

.password-meter {
  display: grid;
  gap: 6px;
  margin-top: -2px;
}

.password-meter__track {
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: #1d2633;
  border: 1px solid #313b4c;
}

.password-meter__fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  transition: width 0.2s ease, background-color 0.2s ease;
  background: #d16060;
}

.password-meter__label {
  margin: 0;
  font-size: 0.69rem;
  color: var(--text-400);
}

.password-rules {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.password-rules li {
  display: flex;
  gap: 6px;
  align-items: center;
}

.password-rules li::before {
  content: "○";
  color: var(--gold-300);
  font-size: 0.8rem;
}

.password-rules li.is-met {
  color: #c5e5a1;
}

.password-rules li.is-met::before {
  content: "✓";
  color: #9fd870;
}

.page-top-space {
  padding-top: var(--space-6);
}

.pricing-layout {
  display: grid;
  gap: 14px;
}

.pricing-page .dark-page-hero h1 {
  font-size: clamp(2.9rem, 10.4vw, 4.6rem);
  letter-spacing: 0.2px;
}

.pricing-page .dark-page-hero p {
  max-width: 46ch;
  color: #e2e4e8;
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-page .price-main {
  margin: 18px 0 14px;
}

.plans-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0 10px;
}

.plan-card {
  border: 1px solid #3a3120;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(23, 30, 40, 0.96), rgba(11, 15, 23, 0.96));
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.plan-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.plan-card h3 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 1.3rem;
}

.plan-card--featured {
  border-color: #b99a5e;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(185, 154, 94, 0.3);
  position: relative;
}

.plan-card--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #b99a5e;
  color: #10151f;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.67rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.plan-recurring {
  color: #e3c98e;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.68rem;
  font-weight: 700;
}

.plan-price {
  margin: 8px 0 6px;
  font-family: Anton, "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4.8vw, 2.4rem);
  line-height: 0.9;
}

.plan-price small {
  font-size: 1rem;
}

.plan-price span {
  margin-left: 6px;
  font-family: Inter, system-ui, sans-serif;
  color: #c7ccd4;
  font-size: 0.92rem;
}

.plan-copy {
  margin: 0 0 14px;
  color: #e2e4e8;
  font-size: 0.96rem;
  line-height: 1.48;
}

.plan-card .button {
  width: 100%;
  min-height: 50px;
}

.pricing-page .subcopy {
  color: #d8dde5;
  font-size: 0.95rem;
  line-height: 1.48;
}

.pricing-stripe-note {
  margin-top: 10px;
}

.pricing-includes-title {
  font-size: 1.9rem;
  margin-top: 24px;
}

.pricing-page .check-list {
  gap: 12px;
}

.pricing-page .check-list li {
  font-size: 0.94rem;
  line-height: 1.45;
}

.pricing-page .trust-grid {
  margin-top: 24px;
}

.pricing-page .trust-item h4 {
  font-size: 0.82rem;
}

.pricing-page .trust-item p {
  font-size: 0.78rem;
  color: #c1c8d2;
  line-height: 1.38;
}

.pricing-support-title {
  font-size: 1.7rem;
}

.pricing-support-actions {
  justify-content: flex-start;
}

.watch-layout {
  display: grid;
  gap: 14px;
}

.watch-page .dark-page-hero .content-shell {
  text-align: center;
}

.watch-page .dark-page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.watch-player-card {
  background: linear-gradient(180deg, rgba(21, 27, 36, 0.98), rgba(10, 13, 20, 0.98));
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-card);
}

.watch-player-frame {
  position: relative;
  border: 1px solid #2c3543;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.watch-player-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.watch-player-meta {
  margin-top: 14px;
}

.watch-preview-banner {
  margin-bottom: 12px;
  border: 1px solid rgba(185, 154, 94, 0.48);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(185, 154, 94, 0.13), rgba(11, 15, 22, 0.7));
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.watch-preview-banner[hidden] {
  display: none !important;
}

.watch-preview-banner__label {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f1ddaf;
}

.watch-preview-banner__timer {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  letter-spacing: 0.7px;
  font-size: 2rem;
  line-height: 0.9;
  color: var(--gold-200);
}

.watch-preview-banner__message {
  margin: 0;
  color: var(--text-200);
  font-size: 0.78rem;
  line-height: 1.42;
}

.watch-preview-banner--warn {
  border-color: rgba(224, 152, 52, 0.64);
  background: linear-gradient(180deg, rgba(224, 152, 52, 0.16), rgba(16, 19, 26, 0.72));
}

.watch-preview-banner--warn .watch-preview-banner__timer {
  color: #ffd182;
}

.watch-preview-banner--danger {
  border-color: rgba(232, 85, 85, 0.64);
  background: linear-gradient(180deg, rgba(232, 85, 85, 0.18), rgba(16, 19, 26, 0.75));
}

.watch-preview-banner--danger .watch-preview-banner__timer {
  color: #ff9f9f;
}

.watch-player-meta h2 {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 1.8rem;
  line-height: 0.95;
}

.watch-player-meta p {
  margin: 7px 0 10px;
  color: var(--text-200);
  font-size: 0.92rem;
}

.watch-account-cta {
  justify-content: flex-start;
  margin-top: 14px;
}

.button--danger {
  background: rgba(255, 61, 61, 0.1);
  border-color: rgba(255, 61, 61, 0.48);
  color: #ffd5d5;
}

.button--danger:hover {
  background: rgba(255, 61, 61, 0.22);
}

.account-layout {
  display: grid;
  gap: 14px;
}

.account-panel {
  display: grid;
  gap: 14px;
}

.account-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.account-title {
  margin: 0;
  font-size: 1.7rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.64rem;
  font-weight: 800;
}

.status-badge--active {
  background: rgba(154, 209, 91, 0.16);
  border: 1px solid rgba(154, 209, 91, 0.54);
  color: #c7f89a;
}

.status-badge--canceled {
  background: rgba(255, 61, 61, 0.14);
  border: 1px solid rgba(255, 61, 61, 0.52);
  color: #ffd3d3;
}

.account-kv {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fixture-meta {
  margin: 0;
  color: #d6deea;
}

.fixture-links {
  margin: -6px 0 2px;
  color: var(--text-300);
  font-size: 0.74rem;
}

.account-kv p {
  margin: 0;
  border: 1px solid #2a3140;
  border-radius: var(--radius-sm);
  background: #101621;
  padding: 10px 11px;
  display: grid;
  gap: 4px;
}

.account-kv span {
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.62rem;
}

.account-kv strong {
  color: var(--text-100);
  font-size: 0.82rem;
  line-height: 1.36;
}

.account-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.confirm-panel {
  border: 1px solid rgba(255, 61, 61, 0.48);
  background: rgba(255, 61, 61, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.confirm-panel p {
  margin: 0;
  color: #ffe2e2;
  font-size: 0.8rem;
  line-height: 1.42;
}

.confirm-panel__actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.inline-message {
  margin: 0;
  font-size: 0.74rem;
  color: var(--text-300);
}

.inline-message--success {
  color: #bde88f;
}

.inline-message--error {
  color: #ffb8b8;
}

.alert {
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.78rem;
  line-height: 1.42;
}

.alert--warning {
  border: 1px solid rgba(185, 154, 94, 0.5);
  background: rgba(185, 154, 94, 0.13);
  color: #f4e2bb;
}

.device-count {
  color: #f2ddb0;
  border: 1px solid rgba(185, 154, 94, 0.48);
  border-radius: 999px;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6rem;
  font-weight: 700;
  white-space: nowrap;
}

.device-list {
  border: 1px solid #303849;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.device-list__head,
.device-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr auto;
  gap: 10px;
  align-items: center;
}

.device-list__head {
  background: #121a27;
  border-bottom: 1px solid #2e3849;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.58rem;
  padding: 8px 10px;
}

.device-row {
  padding: 11px 10px;
  background: #0f151f;
  border-bottom: 1px solid #242d3c;
}

.device-row:last-child {
  border-bottom: 0;
}

.device-main {
  display: grid;
  gap: 3px;
}

.device-main strong {
  font-size: 0.8rem;
}

.device-main span,
.device-meta {
  color: var(--text-300);
  font-size: 0.7rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(154, 209, 91, 0.45);
  background: rgba(154, 209, 91, 0.12);
  color: #bfe88f;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.58rem;
  font-weight: 700;
  width: fit-content;
}

.device-row .button {
  min-height: 34px;
  font-size: 0.7rem;
  padding: 0 10px;
}

.account-subhead {
  margin: 2px 0 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 1.08rem;
}

.invoice-list {
  display: grid;
  gap: 8px;
}

.invoice-item {
  border: 1px solid #2d3646;
  border-radius: var(--radius-sm);
  padding: 10px;
  background: #101723;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 10px;
  align-items: center;
}

.invoice-item strong {
  font-size: 0.8rem;
}

.invoice-item p {
  margin: 0;
  color: var(--text-300);
  font-size: 0.7rem;
}

.invoice-item .text-link {
  font-size: 0.72rem;
}

.security-card {
  border: 1px solid #2f3848;
  border-radius: var(--radius-sm);
  padding: 12px;
  background: #111926;
  display: grid;
  gap: 10px;
}

.security-card p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.security-card span {
  color: var(--text-400);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.security-card strong {
  font-size: 0.84rem;
}

@media (min-width: 640px) {
  .container {
    width: min(1180px, 100% - 36px);
  }

  .section {
    padding-block: 38px;
  }

  .hero__content {
    max-width: 500px;
  }

  .button-row {
    max-width: 300px;
  }

  .content-shell {
    width: min(620px, 100% - 40px);
  }

  .sign-up-page .content-shell.signup-shell {
    width: min(860px, 100% - 48px);
  }

  .signup-form-card {
    padding: 20px;
  }

  .account-layout {
    gap: 16px;
  }
}

@media (min-width: 900px) {
  .container {
    width: min(1180px, 100% - 56px);
  }

  .section {
    padding-block: 50px;
  }

  .section-title {
    font-size: clamp(2.5rem, 3.8vw, 3.35rem);
  }

  .pricing-page .pricing-menu {
    display: none;
  }

  .sign-up-page .sign-up-menu {
    display: none;
  }

  .sign-up-page .content-shell.signup-shell {
    width: min(1240px, 100% - 72px);
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 18px;
  }

  .signup-value {
    min-height: 100%;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .signup-value h2 {
    width: 100%;
    margin: 0;
    font-size: clamp(2.35rem, 4.4vw, 3.6rem);
  }

  .signup-value-list li {
    padding: 12px;
    font-size: 0.84rem;
  }

  .signup-trust-grid article {
    padding: 11px 9px;
  }

  .signup-form-card {
    padding: 24px;
  }

  .watch-page .watch-menu {
    display: none;
  }

  .watch-layout {
    width: min(1240px, 100% - 70px);
    margin-inline: auto;
    gap: 18px;
  }

  .watch-layout .content-shell {
    width: 100%;
  }

  .watch-player-card {
    padding: 18px;
  }

  .watch-player-meta h2 {
    font-size: 2.35rem;
  }

  .watch-player-meta p {
    font-size: 1rem;
  }

  .overlay-close {
    display: inline-flex;
    top: 82px;
    right: 28px;
    width: 50px;
    height: 50px;
  }

  .overlay-close .icon {
    width: 22px;
    height: 22px;
  }

  .hero {
    min-height: 680px;
    align-items: flex-start;
  }

  .hero::before {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 16%, rgba(0, 0, 0, 0.3) 74%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.28) 8%, rgba(0, 0, 0, 0.66) 92%);
  }

  .hero__content {
    max-width: 560px;
    padding: 96px 0 40px;
  }

  .hero h1 {
    font-size: clamp(4.9rem, 7.8vw, 6.9rem);
    line-height: 0.94;
    letter-spacing: 0.3px;
  }

  .hero p {
    margin: 16px 0 22px;
    max-width: 42ch;
    font-size: 0.93rem;
    line-height: 1.45;
  }

  .button {
    min-height: 50px;
    padding-inline: 26px;
    font-size: 0.9rem;
    letter-spacing: 1.9px;
  }

  .feature-item {
    min-height: 94px;
    padding: 18px 18px;
    gap: 12px;
  }

  .feature-item img {
    width: 24px;
    height: 24px;
  }

  .feature-item h3 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.72rem;
    margin-top: 3px;
  }

  .section-head h2 {
    font-size: clamp(2.6rem, 4.2vw, 3.6rem);
    letter-spacing: 0.7px;
  }

  .live-indicator {
    font-size: 0.76rem;
    letter-spacing: 1.9px;
  }

  .card-grid {
    gap: 16px;
  }

  .card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .broadcast-card__media img {
    height: 176px;
  }

  .broadcast-card__body {
    padding: 14px;
  }

  .broadcast-card h3 {
    font-size: 1.08rem;
    margin-bottom: 6px;
  }

  .broadcast-card p {
    font-size: 0.72rem;
    margin-bottom: 7px;
  }

  .meta-row {
    gap: 11px;
    font-size: 0.66rem;
  }

  .what-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefits-grid {
    gap: 18px 22px;
  }

  .benefit {
    gap: 12px;
    padding: 14px 14px 13px;
  }

  .benefit img {
    width: 20px;
    height: 20px;
  }

  .benefit h3 {
    font-size: clamp(1.04rem, 1.7vw, 1.26rem);
  }

  .benefit p {
    font-size: clamp(0.98rem, 1.35vw, 1.1rem);
    line-height: 1.48;
  }

  .promo-panel {
    min-height: 300px;
    padding: 22px;
  }

  .promo-panel h3 {
    font-size: clamp(2.25rem, 4.4vw, 3rem);
    max-width: 12ch;
  }

  .promo-panel p {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .price-card {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 14px;
  }

  .price-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .home-footer {
    padding: 28px 0 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 30px;
  }

  .footer-title {
    font-size: 0.86rem;
  }

  .footer-list {
    font-size: 0.72rem;
  }

  .about-page main .content-shell {
    width: min(1120px, 100% - 56px);
  }

  .about-page .dark-page-hero {
    padding: 48px 0 34px;
  }

  .about-page .dark-page-hero h1 {
    font-size: clamp(4.2rem, 6.3vw, 6.4rem);
    line-height: 0.95;
    max-width: 11ch;
  }

  .about-page .dark-page-hero p {
    margin-top: 12px;
    font-size: 1rem;
    max-width: 46ch;
  }

  .about-page .panel {
    padding: 24px;
  }

  .about-page .about-story {
    font-size: 1rem;
    line-height: 1.56;
  }

  .about-page .mission-box {
    padding: 20px;
  }

  .about-page .stats-row {
    gap: 22px;
  }

  .about-page .stat strong {
    font-size: 2.1rem;
  }

  .about-page .stat span {
    font-size: 0.78rem;
  }

  .pricing-layout {
    width: min(1320px, 100% - 72px);
    margin-inline: auto;
    gap: 18px;
  }

  .pricing-layout .content-shell {
    width: 100%;
  }

  .pricing-page .panel {
    padding: 20px;
  }

  .plans-grid {
    gap: 14px;
  }

  .plan-card {
    padding: 18px;
  }

  .account-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .account-layout > [data-account-section='overview'],
  .account-layout > [data-account-section='devices'],
  .account-layout > [data-account-section='billing'] {
    grid-column: 1 / -1;
  }
}

@media (min-width: 700px) and (max-width: 1199px) {
  .card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--three .broadcast-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .container {
    width: min(1120px, 100% - 68px);
  }

  .what-grid {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 20px;
  }

  .promo-panel {
    min-height: 320px;
    padding: 24px;
  }

  .promo-panel h3 {
    max-width: none;
    font-size: clamp(2.3rem, 3.8vw, 3rem);
  }

  .price-card {
    grid-template-columns: minmax(0, 1.5fr) auto auto;
    row-gap: 0;
  }

  .price-card .button {
    grid-column: auto;
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: min(1280px, 100% - 96px);
  }

  .section {
    padding-block: 74px;
  }

  .content-light .section:first-child {
    padding-top: 82px;
  }

  .hero {
    min-height: 860px;
  }

  .hero__content {
    max-width: 720px;
    padding-top: 172px;
  }

  .hero h1 {
    font-size: clamp(6.4rem, 7.3vw, 8.6rem);
    line-height: 0.92;
  }

  .hero p {
    max-width: 41ch;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 26px;
  }

  .button-row {
    max-width: 372px;
    gap: 12px;
  }

  .feature-strip__grid {
    align-items: stretch;
  }

  .feature-item {
    min-height: 106px;
    padding: 20px 26px;
    gap: 14px;
  }

  .feature-item h3 {
    font-size: 1.12rem;
  }

  .feature-item p {
    font-size: 0.82rem;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: clamp(3.35rem, 4.1vw, 4.2rem);
  }

  .live-indicator {
    font-size: 0.82rem;
    letter-spacing: 2.1px;
  }

  .card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .broadcast-card__media img {
    height: 222px;
  }

  .broadcast-card__body {
    padding: 16px 16px 15px;
  }

  .broadcast-card h3 {
    font-size: 1.32rem;
    margin-bottom: 8px;
  }

  .broadcast-card p {
    font-size: 0.84rem;
    margin-bottom: 9px;
  }

  .meta-row {
    font-size: 0.72rem;
    gap: 14px;
  }

  .what-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: 30px;
  }

  .benefits-grid {
    gap: 24px 28px;
  }

  .benefit h3 {
    font-size: clamp(1.08rem, 1.18vw, 1.26rem);
  }

  .benefit p {
    font-size: clamp(0.96rem, 0.95vw, 1.12rem);
    line-height: 1.5;
  }

  .benefit img {
    width: 20px;
    height: 20px;
  }

  .promo-panel {
    min-height: 100%;
    padding: 32px;
  }

  .promo-panel h3 {
    max-width: none;
    font-size: clamp(3.1rem, 3.65vw, 4rem);
    line-height: 0.94;
  }

  .promo-panel p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .price-card {
    grid-template-columns: minmax(0, 1.6fr) auto auto;
    align-items: center;
    padding: 24px 26px;
    gap: 26px;
  }

  .price-card .button {
    grid-column: auto;
    width: auto;
    min-height: 50px;
    padding-inline: 26px;
  }

  .pass-badge__icon {
    width: 50px;
    height: 50px;
  }

  .pass-badge__icon img {
    width: 26px;
    height: 26px;
  }

  .price strong {
    font-size: 3.45rem;
  }

  .pass-badge p {
    font-size: 0.76rem;
  }

  .home-footer {
    padding: 36px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    align-items: start;
  }

  .footer-title {
    font-size: 0.98rem;
  }

  .footer-list {
    font-size: 0.8rem;
    gap: 7px;
  }

  .sticky-cta {
    border-top-color: #313a47;
  }

  .sticky-cta__inner {
    min-height: 64px;
  }

  .sticky-cta__copy strong {
    font-size: 1rem;
  }

  .sticky-cta__copy span {
    font-size: 0.72rem;
  }

  .about-page main .content-shell {
    width: min(1280px, 100% - 96px);
  }

  .about-page .dark-page-hero h1 {
    font-size: clamp(5.2rem, 6.2vw, 7.2rem);
    max-width: 10.5ch;
  }

  .about-page .about-story {
    font-size: 1.05rem;
  }

  .watch-layout {
    width: min(1420px, 100% - 116px);
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .pricing-layout {
    width: min(1520px, 100% - 116px);
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
  }

  .pricing-page .dark-page-hero h1 {
    font-size: clamp(3.4rem, 6vw, 5.2rem);
  }

  .account-kv {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .account-title {
    font-size: 2rem;
  }

  .invoice-item {
    grid-template-columns: 1fr auto auto;
  }
}

@media (max-width: 840px) {
  .schedule-card__inner {
    grid-template-columns: 72px 1fr;
    align-items: start;
  }

  .schedule-card__inner .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 639px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding-block: 30px;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .icon-button {
    min-width: 44px;
    min-height: 44px;
  }

  .sign-up-page .content-shell.signup-shell {
    width: min(620px, 100% - 18px);
  }

  .signup-value {
    padding: 14px;
  }

  .signup-value h2 {
    font-size: clamp(2rem, 12vw, 2.8rem);
  }

  .signup-trust-grid {
    grid-template-columns: 1fr;
  }

  .signup-form-card {
    padding: 14px;
  }

  .social-btn {
    min-height: 46px;
    font-size: 0.87rem;
  }

  .auth-signup-cta {
    min-height: 54px;
    font-size: 0.93rem;
    letter-spacing: 2.2px;
  }

  .hero {
    min-height: 610px;
    align-items: flex-start;
  }

  .hero__content {
    max-width: 100%;
    padding: 52px 0 34px;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 1.8px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.75rem);
    line-height: 0.94;
    letter-spacing: 0.18px;
  }

  .hero p {
    margin: 14px 0 20px;
    max-width: 34ch;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #ececec;
  }

  .button-row {
    max-width: none;
    width: 100%;
    gap: 12px;
  }

  .button-row .button {
    width: 100%;
    min-height: 48px;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }

  .feature-strip__grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid #d9d5ca;
    min-height: 92px;
    padding: 16px 14px;
    gap: 12px;
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .feature-item h3 {
    font-size: 1rem;
    line-height: 1.03;
  }

  .feature-item p {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .section-head {
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .section-head h2 {
    font-size: clamp(2.1rem, 11.2vw, 2.85rem);
    line-height: 0.92;
  }

  .live-indicator {
    font-size: 0.74rem;
    letter-spacing: 1.4px;
  }

  .card-grid {
    gap: 14px;
  }

  .card-grid--three {
    grid-template-columns: 1fr;
  }

  .broadcast-card__media img {
    height: 182px;
  }

  .broadcast-card__body {
    padding: 14px 13px 15px;
  }

  .broadcast-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .broadcast-card p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #c0c5cf;
  }

  .meta-row {
    gap: 10px;
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .kicker img {
    width: 13px;
    height: 13px;
  }

  .tag {
    font-size: 0.66rem;
    padding: 3px 9px;
  }

  .section-center .button {
    width: 100%;
    min-height: 46px;
  }

  .section-title {
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 11.2vw, 3rem);
    line-height: 0.95;
  }

  .what-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit {
    gap: 12px;
    padding: 14px;
  }

  .benefit img {
    width: 20px;
    height: 20px;
  }

  .benefit h3 {
    font-size: 1.06rem;
    line-height: 1.06;
  }

  .benefit p {
    margin-top: 8px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .promo-panel {
    min-height: auto;
    padding: 20px 18px;
    gap: 14px;
  }

  .promo-panel h3 {
    font-size: clamp(2.3rem, 14vw, 3.1rem);
    line-height: 0.96;
  }

  .promo-panel p {
    font-size: 0.97rem;
    line-height: 1.55;
  }

  .promo-panel .button-row {
    gap: 10px;
  }

  .promo-panel .button-row .button {
    width: 100%;
  }

  .price-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 14px;
  }

  .pass-badge {
    align-items: flex-start;
  }

  .pass-badge h3 {
    font-size: 1rem;
  }

  .pass-badge p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .price {
    text-align: left;
  }

  .price strong {
    font-size: 3rem;
    line-height: 0.92;
  }

  .price span {
    margin-top: 6px;
    font-size: 0.88rem;
  }

  .price-card .button {
    width: 100%;
    min-height: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-title {
    margin-bottom: 8px;
    font-size: 0.9rem;
  }

  .footer-list {
    gap: 7px;
    font-size: 0.86rem;
  }

  .home-footer .brand__logo {
    height: 30px;
  }

  .social-row {
    gap: 10px;
  }

  .social-row a {
    width: 29px;
    height: 29px;
  }

  .sticky-cta {
    position: static;
  }

  .sticky-cta__inner {
    min-height: 0;
    padding: 14px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .sticky-cta__copy strong {
    font-size: 1rem;
  }

  .sticky-cta__copy span {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .sticky-cta__inner .button {
    width: 100%;
    min-height: 46px;
  }

  .pricing-page .dark-page-hero h1 {
    font-size: clamp(2.9rem, 13.5vw, 4.05rem);
    line-height: 0.95;
  }

  .pricing-page .dark-page-hero p {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.55;
  }

  .pricing-page .panel {
    padding: 16px;
  }

  .pricing-page .price-main .price-label {
    font-size: 1rem;
  }

  .pricing-page .price-main .price-value {
    font-size: 3.7rem;
  }

  .plan-card {
    padding: 16px;
  }

  .plan-card h3 {
    font-size: 1.42rem;
  }

  .plan-recurring {
    font-size: 0.74rem;
  }

  .plan-price {
    font-size: 2.35rem;
  }

  .plan-price span {
    font-size: 0.95rem;
  }

  .plan-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .plan-card .button {
    min-height: 52px;
    font-size: 0.93rem;
  }

  .pricing-page .check-list li {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .pricing-page .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-page .trust-item {
    text-align: left;
    padding: 10px 0;
    border-top: 1px solid #2f3846;
  }

  .pricing-page .trust-item:first-child {
    border-top: 0;
  }

  .pricing-page .trust-item img {
    margin: 0 0 8px;
  }

  .pricing-page .trust-item h4 {
    font-size: 0.9rem;
  }

  .pricing-page .trust-item p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .pricing-support-title {
    font-size: 1.9rem;
  }

  .watch-player-card {
    padding: 12px;
  }

  .watch-player-meta h2 {
    font-size: 1.62rem;
  }

  .watch-player-meta p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .watch-account-cta {
    justify-content: stretch;
  }

  .watch-account-cta .button {
    width: 100%;
  }

  .device-list__head {
    display: none;
  }

  .device-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .device-row .button {
    width: 100%;
  }

  .account-kv {
    grid-template-columns: 1fr;
  }

  .account-panel__head {
    flex-direction: column;
    gap: 8px;
  }

  .account-page .row-between {
    flex-direction: column;
    align-items: flex-start;
  }

  .invoice-item {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {
  .hero {
    min-height: 560px;
  }

  .hero__content {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14.2vw, 4.2rem);
  }

  .tab-row {
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1px;
  }

  .content-shell {
    width: min(382px, 100% - 18px);
  }

  .stats-row,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.ops-page .content-shell {
  width: min(1240px, 100% - 40px);
}

.ops-layout {
  display: grid;
  gap: 14px;
}

.ops-role-panel,
.ops-tabs-panel {
  padding: 16px;
}

.ops-title {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.ops-role-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.ops-role-links {
  margin-top: 6px;
  font-size: 0.78rem;
}

.ops-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.ops-tab {
  min-height: 40px;
  border: 1px solid #394252;
  border-radius: var(--radius-sm);
  background: #101723;
  color: var(--text-200);
  font-family: Anton, "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
}

.ops-tab.is-active {
  background: rgba(185, 154, 94, 0.2);
  border-color: rgba(185, 154, 94, 0.65);
  color: #f3e0b6;
}

.ops-section {
  display: none;
  gap: 14px;
}

.ops-section.is-active {
  display: grid;
}

.ops-kpi-grid,
.ops-mini-grid {
  display: grid;
  gap: 10px;
}

.ops-kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ops-mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ops-kpi-card {
  border: 1px solid #2e3747;
  border-radius: var(--radius-sm);
  background: #101722;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.ops-kpi-card span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-400);
}

.ops-kpi-card strong {
  font-family: Anton, "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  line-height: 0.95;
}

.ops-kpi-card p {
  margin: 0;
  color: var(--text-300);
  font-size: 0.7rem;
}

.ops-subhead {
  margin: 0;
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 1.1rem;
}

.ops-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ops-search {
  display: grid;
  gap: 5px;
  color: var(--text-300);
  font-size: 0.72rem;
}

.ops-search input,
.ops-report-form input,
.ops-report-form select {
  min-height: 40px;
  border: 1px solid #2d3746;
  border-radius: var(--radius-sm);
  background: #101723;
  color: var(--text-100);
  padding: 0 10px;
  font: inherit;
}

.ops-table-wrap {
  overflow-x: auto;
}

.ops-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 840px;
}

.ops-table th,
.ops-table td {
  border-bottom: 1px solid #253041;
  padding: 10px 8px;
  text-align: left;
  font-size: 0.76rem;
}

.ops-table th {
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.62rem;
}

.ops-table td {
  color: var(--text-200);
}

.ops-row-action {
  min-height: 30px;
  padding: 0 8px;
  font-size: 0.68rem;
}

.ops-profile {
  display: grid;
  gap: 10px;
}

.ops-inline-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ops-inline-actions .button {
  min-height: 38px;
  font-size: 0.7rem;
  padding-inline: 11px;
}

.ops-device-list {
  display: grid;
  gap: 8px;
}

.ops-device-item {
  border: 1px solid #2d3544;
  background: #101723;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: grid;
  gap: 4px;
}

.ops-device-item p {
  margin: 0;
  font-size: 0.7rem;
  color: var(--text-300);
}

.ops-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ops-list,
.ops-alerts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.ops-list li,
.ops-alerts li {
  border: 1px solid #2e3747;
  border-radius: var(--radius-sm);
  background: #101723;
  padding: 9px 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.75rem;
}

.ops-alert {
  align-items: center;
}

.ops-alert__main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ops-alert__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 0.6rem;
  font-weight: 800;
}

.ops-alert--info {
  border-color: rgba(87, 153, 255, 0.36);
  background: rgba(87, 153, 255, 0.09);
}

.ops-alert--info .ops-alert__badge {
  border: 1px solid rgba(87, 153, 255, 0.44);
  color: #d3e7ff;
  background: rgba(87, 153, 255, 0.18);
}

.ops-alert--warning {
  border-color: rgba(201, 154, 61, 0.4);
  background: rgba(201, 154, 61, 0.11);
}

.ops-alert--warning .ops-alert__badge {
  border: 1px solid rgba(201, 154, 61, 0.5);
  color: #f5dfb6;
  background: rgba(201, 154, 61, 0.24);
}

.ops-alert--critical {
  border-color: rgba(255, 61, 61, 0.44);
  background: rgba(255, 61, 61, 0.11);
}

.ops-alert--critical .ops-alert__badge {
  border: 1px solid rgba(255, 61, 61, 0.55);
  color: #ffd7d7;
  background: rgba(255, 61, 61, 0.23);
}

.ops-alert--empty {
  border-color: rgba(154, 209, 91, 0.34);
  background: rgba(154, 209, 91, 0.12);
}

.ops-alert--empty span {
  color: #cbeea2;
}

.ops-report-form {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 8px;
  margin-bottom: 12px;
}

.ops-export-btn {
  min-height: 34px;
  padding: 0 9px;
  font-size: 0.66rem;
}

.ops-email-layout {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: 320px 1fr;
}

.ops-email-template-list {
  display: grid;
  gap: 8px;
  align-content: start;
}

.ops-email-template-card {
  width: 100%;
  border: 1px solid #2e3747;
  border-radius: var(--radius-sm);
  background: #101723;
  color: var(--text-200);
  padding: 10px;
  display: grid;
  gap: 4px;
  text-align: left;
  cursor: pointer;
}

.ops-email-template-card.is-active {
  border-color: rgba(185, 154, 94, 0.65);
  background: rgba(185, 154, 94, 0.12);
  color: #f3e0b6;
}

.ops-email-template-card span {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--gold-300);
}

.ops-email-template-card strong {
  font-family: Anton, "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.94rem;
  line-height: 1;
}

.ops-email-template-card p {
  margin: 0;
  color: var(--text-300);
  font-size: 0.7rem;
}

.ops-email-preview-wrap {
  border: 1px solid #2e3747;
  border-radius: var(--radius-sm);
  background: #0b111a;
  overflow: hidden;
}

.ops-email-preview-head {
  padding: 10px;
  border-bottom: 1px solid #2e3747;
}

.ops-email-preview-frame {
  width: 100%;
  min-height: 560px;
  border: 0;
  background: #070b12;
}

.ops-email-form {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-email-form label {
  display: grid;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--text-300);
}

.ops-email-form input {
  min-height: 40px;
  border: 1px solid #2d3746;
  border-radius: var(--radius-sm);
  background: #101723;
  color: var(--text-100);
  padding: 0 10px;
  font: inherit;
}

.ops-email-form .ops-inline-actions,
.ops-email-form .inline-message {
  grid-column: 1 / -1;
}

.ops-muted {
  color: var(--text-400);
  font-size: 0.68rem;
}

.ops-home-link {
  color: #1b1a15;
  border-color: rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.03);
}

.ops-home-link:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 1023px) {
  .ops-kpi-grid,
  .ops-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-report-form {
    grid-template-columns: 1fr;
  }

  .ops-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-live-grid {
    grid-template-columns: 1fr;
  }

  .ops-email-layout {
    grid-template-columns: 1fr;
  }

  .ops-email-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .ops-page .content-shell {
    width: calc(100% - 22px);
  }

  .ops-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .ops-inline-actions {
    display: grid;
  }

  .ops-inline-actions .button {
    width: 100%;
  }

  .ops-tabs {
    grid-template-columns: 1fr;
  }
}
