:root {
  --amber: #F59E0B;
  --amber-light: #FFB224;
  --black: #0A0A0A;
  --black-2: #111111;
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-soft: rgba(255, 255, 255, 0.52);
  --border: rgba(245, 158, 11, 0.22);
  --glass: rgba(10, 10, 10, 0.78);
  --font-heading: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
  --header-height: 76px;
  --container: 1160px;
  --radius-pill: 999px;
  --radius-xl: 30px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body {
  margin: 0;
  min-height: 100svh;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.home-page { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button, input, textarea { font: inherit; }
button { border: 0; cursor: pointer; }

.brand-d,
.wordmark-d { color: var(--amber); }
.wordmark { white-space: nowrap; }
.inline-brand { font-weight: 800; color: var(--white); white-space: nowrap; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.74), rgba(10, 10, 10, 0));
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: var(--glass);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.navbar {
  width: min(100% - 1.1rem, var(--container));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.64rem;
  font-family: var(--font-heading);
  font-size: clamp(1.28rem, 4.5vw, 1.95rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}
.nav-logo {
  width: clamp(2.15rem, 7vw, 2.65rem);
  height: clamp(2.15rem, 7vw, 2.65rem);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(245, 158, 11, 0.42);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.14);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.35rem, 1.6vw, 1.1rem);
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.45rem clamp(0.55rem, 1.6vw, 0.95rem);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: clamp(0.68rem, 2.2vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--black);
  background: var(--amber);
  transform: translateY(-1px);
  outline: none;
}

.home-main,
.hero-screen {
  width: 100%;
  height: 100svh;
}
.hero-screen {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: var(--header-height) 1rem 5.75rem;
}
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video {
  z-index: -4;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: brightness(0.68) contrast(1.14) saturate(1.06);
}
.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.48) 44%, rgba(10,10,10,0.95) 100%),
    radial-gradient(circle at 50% 42%, rgba(245,158,11,0.18), transparent 42%);
}
.hero-screen::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(92vw, 730px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,158,11,0.18), rgba(245,158,11,0.08) 34%, transparent 72%);
  filter: blur(42px);
  z-index: -2;
}
.hero-content {
  width: min(100%, 860px);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(0.42rem, 1.3svh, 0.72rem);
  text-align: center;
  transform: translateY(-1.2svh);
}
.hero-kicker {
  margin: 0 0 0.2rem;
  color: var(--amber);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: clamp(0.16em, 1.3vw, 0.32em);
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
  max-width: min(92vw, 1200px);
}
.hero-emblem-wrap {
  position: relative;
  width: clamp(7.35rem, 23svh, 14.8rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-emblem-wrap::before,
.hero-emblem-wrap::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-emblem-wrap::before {
  width: 134%;
  height: 134%;
  background: radial-gradient(circle, rgba(245,158,11,0.22), rgba(245,158,11,0.09) 36%, transparent 74%);
  filter: blur(22px);
}
.hero-emblem-wrap::after {
  width: 112%;
  height: 112%;
  border: 1px solid rgba(245,158,11,0.22);
}
.hero-emblem {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.56), 0 0 54px rgba(245,158,11,0.12);
}
.hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 15svh, 8.6rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-shadow: 0 18px 80px rgba(0,0,0,0.62);
}
.hero-tagline {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 4.2svh, 2.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-bottom-action {
  position: absolute;
  left: 50%;
  bottom: clamp(1.05rem, 4.2svh, 2.9rem);
  transform: translateX(-50%);
  z-index: 2;
}
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.primary-button {
  background: var(--amber);
  color: var(--black);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.26);
}
.primary-button:hover,
.primary-button:focus-visible {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(245, 158, 11, 0.36);
  outline: none;
}
.secondary-button {
  border: 1px solid rgba(245,158,11,0.28);
  background: rgba(255,255,255,0.035);
  color: var(--white);
}
.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: var(--amber);
  color: var(--amber-light);
  transform: translateY(-2px);
  outline: none;
}

.internal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at top center, rgba(245,158,11,0.12), transparent 34%),
    linear-gradient(180deg, #080808 0%, #0A0A0A 56%, #111 100%);
}
.page-screen {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 1rem) 1rem 1.35rem;
}
.page-card {
  width: min(100%, var(--container));
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(10,10,10,0.72);
  box-shadow: var(--shadow);
  padding: clamp(1.15rem, 3.8vw, 3rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.shop-card {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
}
.section-eyebrow {
  margin: 0;
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.coming-soon {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 13vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff0c2 0%, var(--amber) 48%, #9b5a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 42px rgba(245,158,11,0.14));
}
.page-card h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.45rem, 8vw, 5.2rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.page-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.65;
}
.split-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(1rem, 4vw, 2.4rem);
}
.page-copy {
  display: grid;
  gap: 0.9rem;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.mini-card {
  min-height: 10rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  padding: 1rem;
}
.mini-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  color: var(--amber-light);
}
.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.contact-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 0.25rem;
}
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-list span { color: var(--muted-soft); }
.contact-list strong { text-align: right; font-size: 0.95rem; }
.demo-form {
  display: grid;
  gap: 0.82rem;
}
.demo-form label {
  display: grid;
  gap: 0.38rem;
}
.demo-form label span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  color: var(--white);
  outline: none;
  padding: 0.88rem 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
textarea { resize: vertical; min-height: 7rem; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.36); }
input:focus, textarea:focus {
  border-color: rgba(245,158,11,0.5);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
  background: rgba(255,255,255,0.05);
}
.full-button { width: 100%; margin-top: 0.15rem; }

@media (max-width: 780px) {
  :root { --header-height: 92px; }
  .navbar {
    min-height: var(--header-height);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.58rem 0;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 0.35rem;
  }
  .nav-links a {
    min-height: 1.95rem;
    padding: 0.42rem 0.55rem;
    font-size: 0.68rem;
  }
  .hero-screen {
    padding-top: calc(var(--header-height) + 0.35rem);
    padding-bottom: 5.1rem;
  }
  .hero-content { transform: translateY(-0.5svh); }
  .hero-emblem-wrap { width: clamp(6.8rem, 22svh, 10rem); }
  .hero-title { font-size: clamp(3rem, 13svh, 5.6rem); }
  .hero-tagline { font-size: clamp(1.05rem, 3.6svh, 1.65rem); }
  .primary-button, .secondary-button {
    min-height: 2.82rem;
    padding: 0.78rem 1.55rem;
    font-size: 0.86rem;
  }
  .split-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .mini-card {
    min-height: auto;
  }
  .contact-list li {
    flex-direction: column;
    gap: 0.25rem;
  }
  .contact-list strong { text-align: left; }
}

@media (max-width: 430px) {
  :root { --header-height: 88px; }
  .nav-brand { gap: 0.5rem; }
  .nav-logo { width: 2rem; height: 2rem; }
  .hero-screen { padding-inline: 0.8rem; }
  .hero-kicker { max-width: 26ch; line-height: 1.45; }
  .hero-emblem-wrap { width: min(42vw, 8.3rem); }
  .hero-title { font-size: min(18vw, 4.3rem); }
  .hero-tagline { font-size: clamp(0.98rem, 6vw, 1.34rem); }
  .page-screen { padding-inline: 0.72rem; }
  .page-card { border-radius: 24px; }
  .coming-soon { font-size: clamp(2.65rem, 15vw, 4.2rem); }
}

@media (max-height: 650px) {
  .hero-kicker { display: none; }
  .hero-emblem-wrap { width: clamp(5.6rem, 22svh, 9rem); }
  .hero-title { font-size: clamp(2.8rem, 13svh, 5.2rem); }
  .hero-tagline { font-size: clamp(0.95rem, 4svh, 1.45rem); }
}

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

@media (max-width: 640px) {
  .hero-kicker {
    font-size: clamp(0.78rem, 4vw, 1rem);
    letter-spacing: 0.18em;
    line-height: 1.2;
    max-width: 92vw;
  }
}
