:root {
  --gold: #E1B12C;
  --gold-2: #F6D365;
  --bg: #070709;
  --bg-2: #101014;
  --ink: #F4EFE6;
  --muted: #9A9388;
  --line: rgba(244, 239, 230, 0.1);
  --danger: #E8A0A0;
  --ok: #9FD4B3;
  --radius: 18px;
  --max: 1180px;
  --pad: clamp(16px, 4vw, 24px);
  --header-h: 76px;
  --font: Manrope, Arial, Helvetica, sans-serif;
  --display: Syne, Manrope, Arial, Helvetica, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
.skip-link { position: absolute; left: -999px; top: 8px; }
.skip-link:focus {
  left: 12px; z-index: 100; background: var(--gold); color: #111;
  padding: 8px 12px; border-radius: 8px;
}
.shell { width: min(var(--max), calc(100% - (var(--pad) * 2))); margin-inline: auto; }
.site-announce {
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 7, 9, .86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); min-width: 0; }
.brand img { width: auto; max-width: 220px; object-fit: contain; }
.brand-text {
  font-family: var(--display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  border-left: 1px solid var(--line); padding-left: 10px; white-space: nowrap;
}
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: transparent; border-radius: 10px; padding: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 16px; height: 2px; margin: 4px auto; background: var(--ink);
}
.site-nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a {
  color: var(--muted); font-weight: 600; font-size: 14px; padding: 8px 12px; border-radius: 999px;
}
.site-nav a:hover, .site-nav a:focus, .site-nav a[aria-current="page"] {
  color: var(--ink);
}
.site-nav a.btn-gold { color: #111; }
.site-nav a.btn-gold:hover { color: #111; }

.hero, .hero-slider {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: min(78vh, 720px);
  min-height: min(78dvh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-slider { padding: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.slide.is-on { opacity: 1; z-index: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background: #000 center/cover no-repeat;
}
.slide-bg::after, .hero-fallback::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,9,.2) 0%, rgba(7,7,9,.55) 42%, rgba(7,7,9,.94) 100%);
}
.hero-fallback {
  position: absolute; inset: 0;
  background: radial-gradient(1200px 500px at 15% 10%, rgba(225,177,44,.22), transparent 50%),
              linear-gradient(160deg, #101014 0%, #070709 55%, #1a1408 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  width: min(820px, 100%);
  padding: clamp(72px, 16vh, 140px) 0 72px;
}
.hero-kicker, .kicker {
  margin: 0 0 10px; color: var(--gold); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.hero h1, .display {
  font-family: var(--display); font-size: clamp(1.85rem, 6vw, 4.2rem);
  line-height: 1.12; letter-spacing: -0.03em; margin: 0 0 16px; font-weight: 700;
  max-width: 16ch;
}
.hero p, .lede { margin: 0; max-width: 46ch; color: #d7d0c4; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.slider-nav {
  position: absolute; left: 0; right: 0; bottom: 16px; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 4px;
  margin: 0 auto;
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
}
.slider-nav button {
  width: 28px; height: 28px; border: 0; padding: 0; cursor: pointer;
  background: transparent; display: grid; place-items: center;
}
.slider-nav button::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.32);
}
.slider-nav button.is-on::after {
  width: 22px; border-radius: 99px; background: var(--gold);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px; border-radius: 999px; font-weight: 700; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn-primary, .btn-gold, .btn-navy {
  background: var(--gold); color: #111;
}
.btn-primary:hover, .btn-gold:hover, .btn-navy:hover { background: var(--gold-2); color: #111; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: rgba(244,239,230,.22);
}
.btn-ghost:hover { background: rgba(244,239,230,.06); color: var(--ink); }
.btn-outline {
  background: transparent; color: var(--ink); border-color: rgba(225,177,44,.45);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-2); }

.section { padding: clamp(48px, 8vw, 88px) 0; }
.section h2 {
  font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.6rem);
  letter-spacing: -0.03em; line-height: 1.2; margin: 0 0 8px;
}
.lead { color: var(--muted); margin: 0 0 28px; max-width: 60ch; }
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column; min-height: 100%;
  overflow: hidden; transition: border-color .18s ease, transform .18s ease;
}
.card:hover { transform: translateY(-2px); border-color: rgba(225,177,44,.35); }
.card-cover {
  background: #0a0a0e; aspect-ratio: 16 / 10; overflow: hidden;
}
.card-cover img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 20px 8px; display: flex; flex-direction: column; flex: 1; }
.card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.card-top img { width: 36px; height: 36px; }
.card h3 { margin: 0; font-size: 20px; letter-spacing: -0.02em; font-family: var(--display); }
.status {
  margin-left: auto; font-size: 12px; font-weight: 700; border-radius: 999px;
  padding: 4px 10px; white-space: nowrap;
}
.status-live { background: rgba(225,177,44,.16); color: var(--gold-2); }
.status-soon { background: rgba(244,239,230,.06); color: var(--muted); }
.card p { color: var(--muted); margin: 0 0 12px; }
.features { margin: 0 0 16px; padding: 0 0 0 18px; color: var(--ink); flex: 1; }
.features li { margin: 0 0 6px; }
.card-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 16px 20px 20px; margin-top: auto;
}
.card-actions.has-catalog {
  grid-template-columns: 1fr 1fr;
}
.card-actions.has-catalog .btn-catalog {
  grid-column: 1 / -1;
}
.card-actions .btn { width: 100%; }
.card-actions .btn[aria-disabled="true"], .btn.is-disabled {
  opacity: .45; pointer-events: none;
}

.banner-row { padding: 20px 0 0; }
.banner-footer_top { padding: 28px 0 0; }
.site-banner {
  display: flex; gap: 18px; align-items: center;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; color: inherit; margin-bottom: 16px;
}
.site-banner:hover { border-color: rgba(225,177,44,.4); color: inherit; }
.site-banner img {
  width: min(280px, 38%); height: 140px; object-fit: cover; flex: 0 0 auto;
}
.site-banner-copy { padding: 18px 20px 18px 0; }
.site-banner-copy strong {
  display: block; font-family: var(--display); font-size: 1.15rem; margin-bottom: 6px;
}
.site-banner-copy p { margin: 0; color: var(--muted); }

.prose {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
}
.prose h1, .prose h2 { font-family: var(--display); letter-spacing: -0.03em; }
.prose h1 { margin-top: 0; }
.prose h2 { font-size: 20px; margin-top: 28px; }
.prose p, .prose li { color: #d2cbc0; }
.field input, .field textarea, .prose input, .prose textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: #0a0a0e; color: var(--ink); font: inherit;
}
.field input:focus, .field textarea:focus, .prose input:focus, .prose textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px;
}

.site-footer { background: #050506; color: var(--muted); padding: 36px 0 20px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-note { color: var(--muted); max-width: 36ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 16px; }
.footer-links a { color: #d2cbc0; font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 16px; font-size: 14px; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.stat { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.stat strong { display: block; font-size: 22px; color: var(--gold); font-family: var(--display); }

@media (max-width: 900px) {
  .grid, .about-grid { grid-template-columns: 1fr; }
  .hero, .hero-slider { min-height: 0; }
  .site-banner { flex-direction: column; align-items: stretch; }
  .site-banner img { width: 100%; height: 160px; }
  .site-banner-copy { padding: 16px 18px 20px; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-bottom: 12px; }
  .site-nav.is-open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .card-actions { grid-template-columns: 1fr; }
  .brand-text { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
