:root {
  --bg: #070809;
  --bg-2: #0d0f11;
  --panel: #111315;
  --panel-2: #15181b;
  --text: #f4f2ed;
  --muted: #aaa69e;
  --line: rgba(255,255,255,.105);
  --orange: #f47b20;
  --orange-soft: rgba(244,123,32,.16);
  --orange-glow: rgba(244,123,32,.23);
  --max: 1160px;
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  color-scheme: dark;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 83% 2%, rgba(244,123,32,.09), transparent 30rem),
    radial-gradient(circle at 13% 31%, rgba(255,255,255,.025), transparent 24rem),
    linear-gradient(180deg, #090a0c 0%, #070809 70%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.65) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(244,123,32,.55) 0 1px, transparent 1.4px);
  background-size: 180px 180px, 330px 330px;
  background-position: 20px 40px, 90px 120px;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: -999px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #000;
}
.skip-link:focus { left: 10px; }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(7,8,9,.82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .1em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: .91rem;
  font-weight: 760;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(255,255,255,.055);
  color: #fff;
  outline: none;
}

.hero {
  padding: clamp(72px, 10vw, 130px) 0 88px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f2b180;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--orange);
  transform: skewX(-25deg);
}

.logo-word {
  position: relative;
  display: inline-block;
  margin: 0 0 18px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.5rem, 12vw, 9.4rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.045em;
  text-transform: uppercase;
  transform: skewX(-4deg);
  text-shadow: 0 1px 0 rgba(255,255,255,.16);
}
.logo-word::after {
  content: "";
  position: absolute;
  left: 4%;
  right: -4%;
  bottom: -10px;
  height: 13px;
  background: var(--orange);
  transform: rotate(-2deg) skewX(-24deg);
  z-index: -1;
  box-shadow: 0 0 28px var(--orange-glow);
}

.hero-copy {
  max-width: 720px;
  margin: 30px 0 0;
  color: #c0bcb4;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: #fff;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
  outline: none;
}
.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #0b0b0b;
  box-shadow: 0 12px 34px var(--orange-glow);
}
.button.ghost-orange {
  border-color: rgba(244,123,32,.45);
  color: #ffc399;
}

.hero-emblem {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-emblem::before,
.hero-emblem::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244,123,32,.34);
}
.hero-emblem::before {
  width: 370px;
  height: 145px;
  transform: rotate(-17deg);
}
.hero-emblem::after {
  width: 300px;
  height: 300px;
  border-color: rgba(255,255,255,.07);
}

.hero-emblem img {
  position: relative;
  z-index: 2;
  width: min(280px, 75%);
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.45));
}

.orbit-dot {
  position: absolute;
  right: 5%;
  top: 31%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

.section {
  padding: 82px 0;
}

.section-top {
  display: grid;
  grid-template-columns: 1fr minmax(250px, .55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-top h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.section-top p {
  margin: 0 0 4px;
  color: var(--muted);
}

.orange-rule {
  width: 84px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--orange);
  transform: skewX(-28deg);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 18px;
}

.video-facade {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #000;
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.7) 100%);
}

.play-button {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 78px;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0,0,0,.42), 0 0 30px var(--orange-glow);
}
.play-button::before {
  content: "";
  display: block;
  margin-left: 30px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #0c0c0c;
}
.play-button:hover,
.play-button:focus-visible {
  transform: scale(1.04);
  outline: 3px solid rgba(255,255,255,.85);
  outline-offset: 4px;
}

.video-title-overlay {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  text-shadow: 0 2px 14px rgba(0,0,0,.85);
}

.video-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255,255,255,.035), transparent 45%),
    var(--panel);
  padding: 24px;
}

.card h3 {
  margin: 0 0 9px;
  font-size: 1.3rem;
}
.card p { margin: 0; color: var(--muted); }

.video-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.video-side .random-label {
  margin: 0 0 12px;
  color: #f6b486;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
}

.video-side .selected-title {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.muted { color: var(--muted); }

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 8px 0 0;
}
.brand-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  border-right: 1px solid var(--line);
  color: #dfdbd4;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.brand-strip span:last-child { border-right: 0; }

.gear-teaser {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.gear-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gear-mini {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--panel);
  padding: 18px;
}
.gear-mini small {
  margin-bottom: 6px;
  color: #ef9e62;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.gear-mini strong { line-height: 1.18; }

.page-hero {
  padding: 88px 0 36px;
}
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.8rem, 9vw, 7.2rem);
  line-height: .86;
  letter-spacing: -.055em;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
}
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.setup-section {
  padding: 36px 0 54px;
}

.setup-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.setup-heading h2 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -.025em;
}
.setup-heading span {
  color: #ef9e62;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gear-card {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: 18px;
}
.gear-card .type {
  color: #ef9e62;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.gear-card strong {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.2;
}
.gear-card .sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: .86rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
}

.about-quote {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 950;
}

.links-grid {
  display: grid;
  gap: 12px;
}
.link-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
  text-decoration: none;
}
.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(244,123,32,.55);
  background: #17191b;
  outline: none;
}
.link-card strong { font-size: 1.04rem; }
.link-card span { color: var(--muted); font-size: .89rem; }

.footer {
  margin-top: 72px;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .87rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer a { color: #dedbd4; text-decoration: none; }

@media (max-width: 900px) {
  .hero-grid,
  .video-layout,
  .gear-teaser,
  .about-grid,
  .section-top {
    grid-template-columns: 1fr;
  }
  .hero-emblem { min-height: 315px; }
  .brand-strip { grid-template-columns: repeat(2, 1fr); }
  .brand-strip span:nth-child(2) { border-right: 0; }
  .brand-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gear-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .site-header { position: static; }
  .nav { display: block; padding: 16px 0; }
  .brand { margin-bottom: 12px; }
  .nav-links {
    justify-content: flex-start;
    margin-left: -8px;
    flex-wrap: wrap;
  }
  .nav-links a { font-size: .85rem; padding-inline: 8px; }
  .hero { padding-top: 54px; }
  .hero-emblem { min-height: 260px; }
  .hero-emblem::before { width: 280px; height: 108px; }
  .hero-emblem::after { width: 220px; height: 220px; }
  .section { padding: 64px 0; }
  .video-facade {
    width: 100%;
    min-height: 0;
  }
  .gear-list,
  .gear-grid { grid-template-columns: 1fr; }
  .setup-heading { display: block; }
  .setup-heading span { display: block; margin-top: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.gear-teaser-title { margin: 0 0 14px; font-size: clamp(2.4rem,5vw,4rem); line-height: .98; letter-spacing: -.045em; }
.about-section-title { margin: 0 0 12px; font-size: 2rem; letter-spacing: -.035em; }


.video-feed-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .84rem;
}

.button:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.featured-link {
  border-color: rgba(244,123,32,.42);
  background:
    linear-gradient(90deg, rgba(244,123,32,.08), transparent 45%),
    var(--panel);
}


.native-player-shell {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.native-player-shell .video-frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border: 0;
}

.video-loading {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.native-player-shell {
  position: relative;
  overflow: hidden;
}
.native-player-shell > .video-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
}
