:root {
  --bg: #070b14;
  --bg-2: #0b1220;
  --bg-3: #10182a;
  --ink: #eef3f8;
  --muted: #9aa8bb;
  --blue: #00c6ff;
  --blue-2: #5ad8ff;
  --orange: #ff7a18;
  --orange-2: #ffb347;
  --gold: #ffd166;
  --line: rgba(255, 122, 24, 0.42);
  --line-blue: rgba(0, 198, 255, 0.32);
  --font-display: "Oswald", sans-serif;
  --font-hud: "Rajdhani", sans-serif;
  --font-body: "Manrope", sans-serif;
  --max: 1180px;
  --header: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

::selection {
  background: rgba(255, 122, 24, 0.38);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
}

h1 {
  font-size: clamp(3.1rem, 8.2vw, 6.6rem);
  font-style: italic;
  letter-spacing: 0.04em;
  text-shadow: 0 0 24px rgba(255, 122, 24, 0.4), 0 0 54px rgba(255, 122, 24, 0.16);
}

h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
}

h3 {
  font-size: 1.32rem;
  letter-spacing: 0.04em;
}

p {
  margin: 0 0 0.9rem;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fx-embers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fx-circuit {
  position: absolute;
  inset: 0;
  background: url("../img/circuit.svg") center / 760px repeat;
  opacity: 0.12;
  mix-blend-mode: screen;
}

.fx-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 12%, rgba(255, 122, 24, 0.16), transparent 36%),
    radial-gradient(ellipse at 8% 88%, rgba(0, 198, 255, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.15), rgba(7, 11, 20, 0.72));
}

.top,
main,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: rgba(7, 11, 20, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 122, 24, 0.2);
}

.top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.top.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.top-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 10px rgba(255, 122, 24, 0.55));
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.42rem;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
}

.nav a {
  position: relative;
  font-family: var(--font-hud);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  box-shadow: 0 0 8px rgba(255, 122, 24, 0.5);
  transition: width 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-hud);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid var(--line-blue);
  color: var(--blue);
  text-decoration: none;
}

a.live:hover,
a.live:focus-visible {
  color: #ff6b6b;
  border-color: rgba(255, 77, 77, 0.7);
  box-shadow: 0 0 14px rgba(255, 77, 77, 0.22);
}

.live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 8px currentColor;
}

.live[data-state="live"] {
  color: #ff4d4d;
  border-color: rgba(255, 77, 77, 0.5);
}

.live[data-state="live"] i {
  background: #ff4d4d;
  animation: pulse 1.4s infinite;
}

.live[data-state="offline"] {
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-hud);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s, color 0.22s, border-color 0.22s;
}

.btn-sm {
  min-height: 42px;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange), #ff9a3a);
  color: #140b05;
  box-shadow: 0 0 22px rgba(255, 122, 24, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.32), 0 0 16px rgba(255, 122, 24, 0.5);
  background: linear-gradient(90deg, var(--blue), #7ae7ff);
  color: #051018;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-blue);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-3px);
  border-color: var(--orange);
  color: var(--orange-2);
  box-shadow: 0 0 16px rgba(255, 122, 24, 0.22);
}

.hud-kicker {
  font-family: var(--font-hud);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px rgba(0, 198, 255, 0.45);
}

.hero {
  position: relative;
  padding: 1.1rem 0 0.4rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 5.25rem);
  max-width: 9.4ch;
  margin-bottom: 0.38em;
}

.hero-aura {
  position: absolute;
  inset: 8% 0 auto auto;
  width: 58%;
  height: 80%;
  background: radial-gradient(ellipse at 62% 48%, rgba(255, 122, 24, 0.16), transparent 58%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 1.4rem 1.6rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0.4rem 0.4rem 0.4rem 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 6% auto -4% -10%;
  width: 78%;
  background: radial-gradient(ellipse at 18% 55%, rgba(0, 198, 255, 0.1), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 28rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.05rem 0 0.85rem;
}

.hero-status {
  font-family: var(--font-hud);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--blue);
  margin: 0;
}

.hero-status b {
  color: var(--orange);
  font-weight: 700;
}

.hero-shot {
  position: relative;
  z-index: 1;
  margin-right: -0.6rem;
}

.hero-glow {
  position: absolute;
  inset: 10% -4% 6% 8%;
  background: radial-gradient(ellipse at 58% 46%, rgba(255, 122, 24, 0.2), transparent 64%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(7, 11, 20, 0.78) 7%, rgba(7, 11, 20, 0.32) 16%, transparent 28%),
    linear-gradient(180deg, transparent 72%, rgba(7, 11, 20, 0.38) 88%, var(--bg) 100%);
}

.hero-media::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  bottom: 10%;
  z-index: 3;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--orange) 22%, var(--blue) 78%, transparent);
  box-shadow: 0 0 10px rgba(255, 122, 24, 0.4), 0 0 16px rgba(0, 198, 255, 0.22);
}

.hero-media picture {
  display: block;
}

.hero-shot img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 42%;
  display: block;
}

.hero-media-edge {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-media-edge::before,
.hero-media-edge::after {
  content: "";
  position: absolute;
  right: 0;
  width: 16px;
  height: 16px;
  border-right: 1px solid var(--orange);
}

.hero-media-edge::before {
  top: 0;
  border-top: 1px solid var(--blue);
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.28);
}

.hero-media-edge::after {
  bottom: 0;
  border-bottom: 1px solid var(--blue);
  box-shadow: 0 0 10px rgba(255, 122, 24, 0.28);
}

.hero-link {
  position: absolute;
  left: -1.5rem;
  top: 56%;
  width: 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.45);
  pointer-events: none;
}

.hero-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--blue);
  transform: rotate(45deg);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0.55rem;
  padding: 0;
  list-style: none;
  opacity: 0.58;
}

.hero-strip li {
  font-family: var(--font-hud);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: var(--muted);
  padding: 0.5rem 1rem 0 0;
  border-top: 1px solid rgba(0, 198, 255, 0.16);
}

.hero-strip span {
  display: block;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.1rem;
  font-size: 0.7rem;
}

.tech-break {
  position: relative;
  height: 12px;
  margin: 0 auto;
  width: min(var(--max), calc(100% - 2rem));
}

.tech-break::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 24, 0.55), rgba(0, 198, 255, 0.45), transparent);
  transform: skewX(-18deg);
}

.tech-break::after {
  content: "";
  position: absolute;
  left: 18%;
  top: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--orange);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(255, 122, 24, 0.45);
}

.section {
  position: relative;
  padding: 3.5rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section--ember::before {
  background: radial-gradient(ellipse at 8% 30%, rgba(255, 122, 24, 0.1), transparent 42%);
}

.section--blue::before {
  background: radial-gradient(ellipse at 92% 20%, rgba(0, 198, 255, 0.09), transparent 44%);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.45rem;
}

.section-head::after {
  content: "";
  display: block;
  width: 118px;
  height: 2px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--orange), var(--blue), transparent);
  transform: skewX(-22deg);
}

.section-lead {
  color: var(--muted);
  margin-bottom: 0;
}

.net-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem 1.1rem;
}

.net-card {
  --accent: var(--orange);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 118px;
  padding: 1.1rem 1.15rem 1.1rem 1.05rem;
  background: linear-gradient(180deg, rgba(14, 20, 34, 0.72), rgba(8, 12, 22, 0.78));
  border: 1px solid rgba(255, 122, 24, 0.22);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  overflow: hidden;
  transition: transform 0.22s var(--ease), border-color 0.22s, box-shadow 0.22s;
}

.net-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.net-card:hover,
.net-card:focus-visible {
  transform: translate(7px, -4px);
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(255, 122, 24, 0.16);
}

.net-card--twitch { --accent: #bf94ff; }
.net-card--ig { --accent: var(--orange); }
.net-card--yt { --accent: #ff5a5a; }
.net-card--tt { --accent: var(--blue); }
.net-card--dc { --accent: #7289da; }
.net-card--x { --accent: var(--ink); }

.net-ico {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}

.net-ico svg {
  width: 32px;
  height: 32px;
}

.net-meta strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.22rem;
}

.net-meta em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.net-go {
  font-family: var(--font-hud);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.8rem;
}

.do-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.95fr);
  gap: 0.9rem;
  align-items: stretch;
}

.do-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.85rem;
}

.do-card {
  --do-accent: var(--orange);
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.2rem 1.1rem;
  background:
    linear-gradient(165deg, rgba(16, 24, 40, 0.78), rgba(8, 12, 22, 0.72));
  border: 1px solid rgba(0, 198, 255, 0.18);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transform-style: preserve-3d;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s;
}

.do-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--do-accent), var(--do-accent)) 0 0 / 16px 1px no-repeat,
    linear-gradient(var(--do-accent), var(--do-accent)) 0 0 / 1px 16px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 100% 100% / 16px 1px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 100% 100% / 1px 16px no-repeat;
  opacity: 0.85;
}

.do-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}

.do-card--lead {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem 1.5rem 1.4rem;
  --do-accent: var(--orange);
  border-color: rgba(255, 122, 24, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.1), transparent 38%),
    linear-gradient(165deg, rgba(16, 24, 40, 0.82), rgba(8, 12, 22, 0.74));
}

.do-card--streams .do-fx {
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255, 77, 77, 0.14), transparent 36%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(0, 198, 255, 0.05) 18px 19px);
}

.do-card--streams .do-fx::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 11%;
  width: 46%;
  height: 40%;
  border: 1px solid rgba(0, 198, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(0, 198, 255, 0.05), transparent 40%),
    repeating-linear-gradient(90deg, transparent 0 9px, rgba(255, 77, 77, 0.28) 9px 10px);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  -webkit-mask-image: linear-gradient(180deg, #000 35%, transparent);
  mask-image: linear-gradient(180deg, #000 35%, transparent);
}

.do-card--clips .do-fx {
  background:
    linear-gradient(90deg, transparent 8%, rgba(255, 122, 24, 0.08) 8.4%, transparent 9%),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(255, 255, 255, 0.04) 10px 11px) 0 78% / 70% 8px no-repeat;
}

.do-card--clips .do-fx::after {
  content: "";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 122, 24, 0.5);
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(255, 122, 24, 0.18);
}

.do-card--ow .do-fx {
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 122, 24, 0.16), transparent 28%),
    conic-gradient(from 210deg at 88% 22%, transparent 0 70%, rgba(0, 198, 255, 0.12) 80%, transparent 90%);
}

.do-card--ow .do-fx::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 122, 24, 0.38);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 16px rgba(255, 122, 24, 0.14), inset 0 0 0 7px rgba(7, 11, 20, 0.35);
}

.do-card--comunidad .do-fx {
  background:
    radial-gradient(circle at 84% 24%, rgba(0, 198, 255, 0.14), transparent 26%),
    radial-gradient(circle at 90% 38%, rgba(255, 122, 24, 0.1), transparent 18%);
}

.do-card--comunidad .do-fx::after {
  content: "";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  width: 34px;
  height: 20px;
  border: 1px solid rgba(0, 198, 255, 0.32);
  border-radius: 4px 4px 10px 4px;
  transform: translateY(-50%);
  box-shadow: 8px 10px 0 -6px rgba(255, 122, 24, 0.28);
}

.do-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 0.8;
  color: rgba(255, 122, 24, 0.32);
  margin: 0 0 0.4rem;
  letter-spacing: 0.04em;
}

.do-card--lead .do-num {
  font-size: 5.6rem;
  color: rgba(255, 122, 24, 0.22);
}

.do-ico {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.5rem;
  color: var(--blue);
  border: 1px solid rgba(0, 198, 255, 0.28);
  background: rgba(0, 198, 255, 0.06);
}

.do-live {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.55rem;
  font-family: var(--font-hud);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: #ff6b6b;
}

.do-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 8px #ff4d4d;
  animation: pulse 1.6s infinite;
}

.do-card h3,
.do-card p {
  position: relative;
  z-index: 1;
}

.do-card p:last-child {
  color: var(--muted);
  margin: 0;
}

.do-side .do-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  align-items: center;
  min-height: 118px;
  padding-right: 3.2rem;
}

.do-side .do-num {
  grid-row: 1;
  grid-column: 1;
  font-size: 1.6rem;
  margin: 0;
}

.do-side .do-ico {
  grid-row: 2;
  grid-column: 1;
  margin: 0;
}

.do-side .do-card > div {
  grid-row: 1 / span 2;
  grid-column: 2;
}

@media (hover: hover) and (pointer: fine) {
  .do-card:hover,
  .do-card:focus-visible {
    border-color: var(--do-accent);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), 0 0 22px rgba(255, 122, 24, 0.12);
  }
}

.media-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #080c16;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s var(--ease);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.08) 30%, rgba(7, 11, 20, 0.72));
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(var(--orange), var(--orange)) 0 0 / 16px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 0 0 / 1px 16px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 100% 100% / 16px 1px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 100% 100% / 1px 16px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(0, 198, 255, 0.18);
}

.feat-section--bg {
  background-image:
    linear-gradient(180deg, rgba(7, 11, 20, 0.82), rgba(7, 11, 20, 0.78)),
    var(--feat-bg);
  background-size: cover;
  background-position: center;
}

.feat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 0.82fr);
  gap: 0.9rem;
  align-items: stretch;
}

.feat-main {
  position: relative;
  display: grid;
  min-height: 360px;
  color: inherit;
}

.feat-main .media-frame {
  min-height: 360px;
  height: 100%;
}

.feat-main--live {
  display: flex;
  flex-direction: column;
  min-height: 0;
  gap: 0.85rem;
}

.feat-main--live .media-frame {
  min-height: 0;
  height: auto;
}

.media-frame--player {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #080c16;
}

.media-frame--player::after {
  display: none;
}

.media-frame--player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #080c16;
}

.feat-live-meta {
  padding: 0 0.15rem 0.1rem;
}

.feat-live-now {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.35rem;
  font-family: var(--font-hud);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #ff6b6b;
}

.feat-live-now i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 8px #ff4d4d;
  animation: pulse 1.4s infinite;
}

.feat-live-meta h3 {
  max-width: none;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  margin: 0 0 0.25rem;
  text-shadow: none;
}

.feat-live-meta p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.feat-main--live:hover .media-frame,
.feat-main--live:focus-visible .media-frame {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.feat-main:hover .media-frame img,
.feat-main:focus-visible .media-frame img,
.feat-card:hover .media-frame img,
.feat-card:focus-visible .media-frame img {
  transform: scale(1.03);
}

.feat-main-ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem 1.2rem 1.2rem;
  pointer-events: none;
}

.feat-cat {
  font-family: var(--font-hud);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--orange);
}

.feat-main-ui .feat-cat {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--orange);
  background: rgba(7, 11, 20, 0.7);
}

.feat-play {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: var(--ink);
  border: 1px solid rgba(255, 122, 24, 0.7);
  background: rgba(7, 11, 20, 0.5);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  filter: drop-shadow(0 0 12px rgba(255, 122, 24, 0.35));
}

.feat-main h3 {
  max-width: 16ch;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  margin-bottom: 0.25em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.feat-main--live h3 {
  max-width: none;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  margin-bottom: 0.25rem;
  text-shadow: none;
}

.feat-main-ui p {
  margin: 0 0 0.85rem;
  color: rgba(238, 243, 248, 0.88);
  max-width: 28rem;
}

.feat-cta {
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.4rem 0.95rem;
  width: max-content;
  font-family: var(--font-hud);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
  color: #140b05;
  background: linear-gradient(90deg, var(--orange), #ff9a3a);
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.32);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.feat-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.85rem;
}

.feat-card {
  display: grid;
  grid-template-columns: 34% 1fr;
  min-height: 118px;
  background: rgba(10, 16, 28, 0.62);
  border: 1px solid rgba(0, 198, 255, 0.18);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 0.22s var(--ease), border-color 0.22s, box-shadow 0.22s;
}

.feat-card:hover,
.feat-card:focus-visible {
  transform: translate(6px, -4px) scale(1.012);
  border-color: var(--orange);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32), 0 0 24px rgba(255, 122, 24, 0.18);
}

.feat-main:hover .media-frame,
.feat-main:focus-visible .media-frame {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42), 0 0 28px rgba(255, 122, 24, 0.16);
}

.feat-card .media-frame {
  height: 100%;
  min-height: 118px;
}

.feat-card-body {
  padding: 0.75rem 0.85rem 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-card-body strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin: 0.15rem 0 0.25rem;
}

.feat-card-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.88rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#sobre-mi {
  padding-block: 4.4rem;
}

.about-panel .hud-kicker {
  margin-bottom: 0.85rem;
}

.about-piece {
  position: relative;
  margin: 0 0 1.15rem;
}

.about-piece::before,
.about-piece::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 1;
}

.about-piece::before {
  top: 8px;
  left: 8px;
  border-top: 1px solid rgba(255, 122, 24, 0.55);
  border-left: 1px solid rgba(255, 122, 24, 0.55);
}

.about-piece::after {
  right: 8px;
  bottom: 8px;
  border-right: 1px solid rgba(0, 198, 255, 0.45);
  border-bottom: 1px solid rgba(0, 198, 255, 0.45);
}

.about-piece img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(255, 122, 24, 0.08),
    0 0 24px rgba(0, 198, 255, 0.06);
}

.about-note {
  max-width: 46rem;
  margin: 0 auto 0.65rem;
  text-align: center;
  color: var(--muted);
}

.about-note strong {
  color: var(--ink);
}

.about-aside {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.community {
  overflow: visible;
}

.community-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0.6rem 1.4rem;
  align-items: center;
  padding: 0.6rem 1.5rem 0.8rem 0;
  background:
    linear-gradient(var(--orange), var(--orange)) 0 0 / 18px 2px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 0 0 / 2px 18px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 100% 100% / 18px 2px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 100% 100% / 2px 18px no-repeat,
    linear-gradient(100deg, rgba(16, 24, 42, 0.2), rgba(8, 12, 22, 0.82) 42%),
    image-set(
      url("../img/overlay-loading.webp") type("image/webp"),
      url("../img/overlay-loading.jpg") type("image/jpeg")
    ) right / cover;
  border: 1px solid rgba(255, 122, 24, 0.28);
  overflow: visible;
}

.community-mascot {
  position: relative;
  margin-top: -2.4rem;
  margin-bottom: -2.6rem;
  margin-left: -0.4rem;
}

.community-dep {
  width: min(280px, 100%);
  filter: drop-shadow(0 0 22px rgba(255, 122, 24, 0.35));
}

.dep-bubble {
  position: absolute;
  top: 12%;
  right: -0.4rem;
  margin: 0;
  padding: 0.35rem 0.6rem;
  font-family: var(--font-hud);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(7, 11, 20, 0.86);
  border: 1px solid var(--orange);
  box-shadow: 0 0 14px rgba(255, 122, 24, 0.2);
}

.community-copy p {
  color: var(--muted);
}

.cta {
  padding-top: 2.4rem;
  padding-bottom: 3.6rem;
}

.cta::before {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 122, 24, 0.16), transparent 48%),
    radial-gradient(ellipse at 80% 40%, rgba(0, 198, 255, 0.08), transparent 40%);
}

.cta-stage {
  position: relative;
  text-align: center;
  padding: 2.1rem 1.2rem 1.4rem;
  background:
    linear-gradient(var(--orange), var(--orange)) 12% 0 / 70px 2px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 88% 100% / 70px 2px no-repeat,
    linear-gradient(180deg, rgba(12, 18, 32, 0.35), rgba(7, 11, 20, 0.2));
}

.cta-stage h2 {
  margin-bottom: 0.35em;
}

.cta-line {
  font-family: var(--font-hud);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-2);
  text-shadow: 0 0 16px rgba(255, 122, 24, 0.3);
}

.cta-stage .hero-cta {
  justify-content: center;
}

.cta-bar {
  margin: 1.1rem 0 0;
  font-family: var(--font-hud);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.84rem;
  color: var(--blue);
}

.cta-bar b {
  color: var(--orange);
}

.foot {
  border-top: 1px solid rgba(255, 122, 24, 0.2);
  padding: 1.3rem 0 1.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.foot strong,
.foot span {
  color: var(--ink);
}

@keyframes pulse {
  0%,
  100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

@keyframes load {
  from { width: 8%; }
  to { width: 62%; }
}

@media (max-width: 980px) {
  .hero-grid,
  .feat-grid,
  .community-card,
  .do-grid {
    grid-template-columns: 1fr;
  }

  .feat-main,
  .feat-main .media-frame {
    min-height: 280px;
  }

  .feat-main--live,
  .feat-main--live .media-frame {
    min-height: 0;
  }

  .feat-side {
    grid-template-rows: auto;
  }

  .feat-card {
    min-height: 128px;
  }

  .hero-shot {
    margin-right: 0;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, var(--bg) 0%, rgba(7, 11, 20, 0.42) 8%, transparent 18%),
      linear-gradient(180deg, transparent 74%, rgba(7, 11, 20, 0.36) 90%, var(--bg) 100%);
  }

  .hero-media::after {
    top: 6%;
    bottom: 6%;
    opacity: 0.55;
  }

  .hero-media-edge::before,
  .hero-media-edge::after {
    width: 12px;
    height: 12px;
  }

  .do-side {
    grid-template-rows: auto;
  }

  .do-card--lead {
    min-height: 280px;
  }

  .do-card--lead .do-num {
    font-size: 4.2rem;
  }

  .do-side .do-card {
    min-height: 128px;
  }

  .hero-link {
    display: none;
  }

  .hero-shot img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-position: 50% 40%;
  }

  .hero-copy {
    padding: 0.4rem 0 0.8rem;
  }

  .community-mascot {
    margin: 0 auto;
    max-width: 240px;
  }

  .dep-bubble {
    right: 8%;
  }

  .nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 11, 20, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1rem 1rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip li {
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 76px;
  }

  #sobre-mi {
    padding-block: 3rem;
  }

  .net-grid {
    grid-template-columns: 1fr;
  }

  .brand-name {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
  }

  .live {
    padding: 0.32rem 0.55rem;
    font-size: 0.74rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 12vw, 4rem);
    max-width: none;
  }

  .feat-card {
    grid-template-columns: 38% 1fr;
    min-height: 132px;
  }

  .feat-main h3 {
    max-width: none;
  }

  .foot-inner {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loadbar-fill,
  .live[data-state="live"] i,
  .feat-live-now i,
  .do-live i,
  .btn,
  .net-card,
  .feat-card,
  .feat-main,
  .do-card,
  .hero-visual,
  .media-frame img {
    animation: none;
    transition: none;
    transform: none !important;
  }
}
