:root {
  --ink: #15120d;
  --paper: #fff7e4;
  --cream: #f4dfb5;
  --gold: #f5ba2f;
  --blue: #195bd8;
  --cyan: #7bd5ff;
  --red: #f35d45;
  --shadow: rgba(12, 10, 7, 0.64);
  --line: rgba(21, 18, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: white;
  background-image: url("web-bg.jpeg");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 10, 7, 0.82) 0%, rgba(12, 10, 7, 0.5) 38%, rgba(12, 10, 7, 0.14) 74%),
    linear-gradient(180deg, rgba(12, 10, 7, 0.38) 0%, rgba(12, 10, 7, 0.04) 44%, rgba(12, 10, 7, 0.78) 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 2px 18px var(--shadow);
}

.nav__links {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(12, 10, 7, 0.34);
  backdrop-filter: blur(14px);
}

.nav__links a {
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav__links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero__content {
  display: grid;
  align-content: center;
  width: min(690px, calc(100% - 32px));
  min-height: calc(92vh - 92px);
  margin: 0 auto;
  margin-left: max(16px, calc((100% - 1180px) / 2));
  padding: 64px 0 126px;
}

.ticker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.8rem, 18vw, 12rem);
  line-height: 0.78;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow: 0 7px 28px rgba(0, 0, 0, 0.42);
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero__copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.45;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.46);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 950;
}

.button--primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(245, 186, 47, 0.22);
}

.button--secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(12, 10, 7, 0.36);
}

.button:hover,
.placeholder:hover {
  transform: translateY(-2px);
}

.marquee {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  color: var(--ink);
  background: var(--gold);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 22s linear infinite;
}

.marquee span {
  padding: 16px 28px;
  font-size: 0.9rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.section__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section--lore {
  background:
    linear-gradient(135deg, rgba(123, 213, 255, 0.2), transparent 46%),
    var(--paper);
}

.section--lore p:not(.eyebrow),
.section--links p:not(.eyebrow) {
  max-width: 850px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.section--grid {
  color: white;
  background:
    linear-gradient(135deg, rgba(25, 91, 216, 0.95), rgba(12, 10, 7, 0.94)),
    var(--blue);
}

.law-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.law {
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.law__number {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 950;
}

.law p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.52;
}

.section--links {
  background: var(--cream);
}

.links-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: end;
}

.placeholder-grid {
  display: grid;
  gap: 10px;
}

.placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 5px 5px 0 var(--ink);
}

.placeholder::after {
  content: "TBA";
  color: var(--red);
  font-size: 0.78rem;
}

.placeholder--live::after {
  content: "LIVE";
  color: var(--blue);
}

.placeholder--ca {
  width: 100%;
}

.placeholder--ca::after {
  content: "";
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 88vh;
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(12, 10, 7, 0.86), rgba(12, 10, 7, 0.44)),
      linear-gradient(180deg, rgba(12, 10, 7, 0.28), rgba(12, 10, 7, 0.82));
  }

  .nav {
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
  }

  .nav__links {
    max-width: 218px;
    flex-wrap: wrap;
    justify-content: flex-end;
    border-radius: 8px;
  }

  .nav__links a {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 0.8rem;
  }

  .hero__content {
    min-height: calc(88vh - 84px);
    margin-left: 16px;
    padding-bottom: 96px;
  }

  .law-grid,
  .links-panel {
    grid-template-columns: 1fr;
  }

  .law {
    min-height: auto;
  }
}

@media (max-width: 460px) {
  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .ticker,
  .eyebrow {
    font-size: 0.74rem;
  }

  .placeholder {
    box-shadow: 3px 3px 0 var(--ink);
  }
}
