:root {
  --orange: #f28722;
  --orange-bright: #ffad42;
  --ink: #07090c;
  --paper: #f7f4ed;
  --line: rgba(255, 255, 255, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 0 clamp(22px, 5vw, 82px);
}
.video-background, .video-shade {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-background {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.12);
}
.video-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 42%, rgba(242, 135, 34, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(4, 7, 10, 0.96) 0%, rgba(4, 7, 10, 0.82) 48%, rgba(4, 7, 10, 0.48) 100%),
    linear-gradient(0deg, rgba(4, 7, 10, 0.72), rgba(4, 7, 10, 0.12));
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: block;
  width: clamp(148px, 16vw, 218px);
  height: 66px;
  overflow: hidden;
  text-decoration: none;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
  mix-blend-mode: screen;
}
.official-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.official-mark svg { width: 17px; color: var(--orange-bright); }
.hero {
  width: min(720px, 100%);
  padding: clamp(62px, 10vh, 116px) 0 190px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--orange-bright);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
h1 {
  margin: 24px 0 18px;
  max-width: 690px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(68px, 9.4vw, 148px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.intro {
  max-width: 580px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.71);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.55;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(3, 5, 7, 0.35);
  backdrop-filter: blur(12px);
}
.shop-link {
  position: relative;
  min-height: 126px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}
.shop-link:hover, .shop-link:focus-visible {
  color: var(--ink);
  background: var(--orange);
  outline: none;
}
.shop-number {
  display: block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.shop-link:hover .shop-number, .shop-link:focus-visible .shop-number { color: rgba(7, 9, 12, 0.62); }
.shop-link strong {
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.03em;
}
.shop-link > svg {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 18px;
  opacity: 0.76;
}
.login-note { margin: 14px 0 0; color: rgba(255, 255, 255, 0.5); font-size: 12px; }
.info-panel {
  position: absolute;
  right: clamp(22px, 5vw, 82px);
  bottom: 78px;
  width: min(340px, calc(100% - 44px));
  border: 1px solid var(--line);
  background: rgba(8, 11, 15, 0.74);
  backdrop-filter: blur(18px);
}
.info-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 15px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}
.info-item > svg { width: 24px; color: var(--orange-bright); }
.info-item h2 { margin: 0 0 7px; font-size: 15px; }
.info-item p { margin: 0; color: rgba(255, 255, 255, 0.59); font-size: 12px; line-height: 1.55; }
.utility-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 180ms ease;
}
.utility-link:last-child { border-bottom: 0; }
.utility-link:hover, .utility-link:focus-visible { background: rgba(242, 135, 34, 0.18); outline: none; }
.utility-link svg { width: 15px; }
.utility-link svg:last-child { margin-left: auto; }
footer {
  position: absolute;
  left: clamp(22px, 5vw, 82px);
  right: clamp(22px, 5vw, 82px);
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
footer a { text-decoration: none; }
footer a:hover { color: var(--orange-bright); }

@media (max-width: 960px) {
  .site-shell { overflow: visible; }
  .hero { padding-bottom: 52px; }
  .info-panel { position: relative; right: auto; bottom: auto; margin-bottom: 84px; }
  footer { position: absolute; }
}
@media (max-width: 560px) {
  .topbar { min-height: 88px; }
  .official-mark span { display: none; }
  .brand { width: 154px; height: 58px; }
  .hero { padding-top: 58px; }
  h1 { font-size: clamp(61px, 22vw, 88px); }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-link { min-height: 105px; }
  .shop-number { margin-bottom: 20px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .video-background { display: none; }
  .shop-link, .utility-link { transition: none; }
}
