:root {
  --bg-light: #050505;
  --bg-mid: #050505;
  --bg-soft: #0b0b0b;
  --bg-dark: #050505;
  --accent: #7b7b7b;
  --text: #f0f0f0;
  --muted: #8f8f8f;
  --label: #9aa0aa;
  --shadow: #606060;
  --footer-copy: #7d8490;
  --line: #979797;
  --panel-fill: #0f0f10;
  --panel-fill-soft: #121214;
  --panel-text-soft: #c6c9cf;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: var(--text);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.site-shell {
  height: 100dvh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  background: #000;
}

.panel {
  position: relative;
  min-height: 100dvh;
  scroll-snap-align: start;
  overflow: hidden;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  border-bottom: 4px solid var(--line);
}

.market-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem;
  background: #090909;
  border-bottom: 4px solid var(--line);
}

.stat-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stat-label {
  color: var(--label);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-value {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #f4f4f4;
}

.stat-value.loading {
  color: var(--muted);
  animation: pulse 1.8s ease-in-out infinite;
}

.stat-divider {
  width: 4px;
  height: 3.4rem;
  background: var(--muted);
  border-radius: 999px;
}

.stat-positive {
  color: #0c8a50;
}

.stat-negative {
  color: #c62828;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art img {
  width: min(38rem, 100%);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.1));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-title,
.outline-heading {
  margin: 0;
  color: #f2f2f2;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-shadow:
    4px 4px 0 #6a6a6a,
    -1px -1px 0 #202020,
    1px -1px 0 #202020,
    -1px 1px 0 #202020,
    1px 1px 0 #202020;
}

.hero-title {
  font-size: clamp(4.8rem, 13vw, 11rem);
}

.hero-title span {
  display: block;
}

.hero-tag {
  display: inline-block;
  margin: 0;
  padding: 0.75rem 1.4rem;
  border: 4px solid var(--line);
  background: var(--panel-fill);
  box-shadow: 4px 4px 0 var(--shadow);
  color: #d5d7db;
  font-size: clamp(1rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  transform: rotate(-2deg);
  text-transform: uppercase;
}

.hero-lead {
  max-width: 30rem;
  margin: 0;
  color: #3f454d;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.35rem;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border: 4px solid var(--line);
  background: var(--panel-fill-soft);
  box-shadow: 4px 4px 0 var(--shadow);
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button-primary:hover {
  transform: translateY(-0.35rem);
  box-shadow: 8px 8px 0 var(--shadow);
}

.button-primary.alt-shadow {
  box-shadow: 4px 4px 0 var(--accent);
  background: #000;
}

.button-primary.alt-shadow:hover {
  box-shadow: 8px 8px 0 var(--accent);
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.social-link {
  display: grid;
  place-items: center;
  min-width: 4.1rem;
  height: 4.1rem;
  padding: 0 1rem;
  border: 4px solid var(--line);
  background: #090909;
  box-shadow: 4px 4px 0 var(--shadow);
  color: #f5f5f5;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.social-link:hover {
  transform: translateY(-0.2rem);
  box-shadow: 6px 6px 0 var(--shadow);
}

.social-link svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.social-link-wide {
  min-width: 9.75rem;
}

.social-label {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  transform: translateX(-50%);
  color: var(--line);
  animation: bounce 1.5s ease-in-out infinite;
}

.scroll-cue svg {
  width: 2.7rem;
  height: 2.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pattern-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border-bottom: 4px solid var(--line);
}

.about-panel {
  background: var(--bg-mid);
}

.contractors-panel {
  background: var(--bg-soft);
}

.pattern-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  overflow: hidden;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.pattern-layer.dark {
  opacity: 0.18;
}

.pattern-row {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-size: clamp(5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
}

.pattern-row:not(.dark-row) {
  color: #1b1b1d;
}

.dark-row {
  color: #151515;
}

.pattern-row.track-left {
  animation: scroll-left 40s linear infinite;
}

.pattern-row.track-right {
  animation: scroll-right 40s linear infinite;
  opacity: 0.7;
}

.pattern-chunk {
  padding-right: 2rem;
}

.feature-card,
.contractors-card,
.merch-card {
  position: relative;
  z-index: 1;
  border: 4px solid var(--line);
}

.feature-card {
  width: min(1040px, 100%);
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--panel-fill);
  box-shadow: 12px 12px 0 var(--shadow);
}

.outline-heading {
  font-size: clamp(4rem, 10vw, 8rem);
}

.feature-card .outline-heading {
  font-size: clamp(3.8rem, 7.4vw, 7.1rem);
}

.outline-heading.centered {
  text-align: center;
}

.feature-kicker,
.feature-copy {
  margin: 0;
  max-width: 52rem;
  font-weight: 800;
  line-height: 1.4;
  color: #f2f2f2;
}

.feature-kicker {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
}

.feature-copy {
  margin-top: 1.6rem;
  font-size: clamp(1.15rem, 2vw, 1.9rem);
  color: var(--panel-text-soft);
}

.contractors-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  width: min(1120px, 100%);
  background: #fff;
  box-shadow: 12px 12px 0 #000;
  overflow: hidden;
}

.contractors-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(2.4rem, 5vw, 4rem);
  background: var(--accent);
  color: #fff;
}

.contractors-brand h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5.7vw, 4.75rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-chip {
  display: inline-block;
  align-self: flex-start;
  padding: 0.65rem 1rem;
  background: #000;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.7rem);
  font-weight: 900;
  text-transform: uppercase;
}

.contractors-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
  padding: clamp(2.4rem, 5vw, 4rem);
}

.contractors-lead,
.contractors-body,
.merch-copy p {
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
}

.contractors-lead {
  font-size: clamp(1.4rem, 2.1vw, 2.5rem);
}

.contractors-body,
.merch-copy p {
  color: #475165;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
}

.merch-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--bg-dark);
  border-bottom: 4px solid #000;
}

.merch-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(1120px, 100%);
}

.merch-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  background: #fff;
  box-shadow: 12px 12px 0 #000;
  overflow: hidden;
}

.merch-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 29rem;
  padding: 1rem;
  background: #404040;
  border-right: 4px solid #000;
}

.merch-image img {
  width: min(78%, 28rem);
  object-fit: contain;
}

.merch-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding: clamp(2.4rem, 5vw, 4rem);
}

.merch-copy h3 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-panel {
  display: flex;
  flex-direction: column;
  background: #000;
}

.footer-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
}

.footer-inner img {
  width: min(30rem, 72vw);
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.world-order {
  margin: 0;
  color: #9a9ea7;
  font-size: clamp(1rem, 2vw, 1.55rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.site-footer {
  padding: 1.6rem 1rem 2rem;
  border-top: 2px solid var(--line);
  text-align: center;
}

.copyright {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credit {
  margin: 0 0 0.65rem;
  color: #aeb4c1;
  font-size: 0.92rem;
}

.credit a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.disclaimer {
  max-width: 46rem;
  margin: 0 auto;
  color: var(--footer-copy);
  font-size: 0.92rem;
  line-height: 1.4;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.45;
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

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

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

  to {
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .contractors-card,
  .merch-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
    padding-bottom: 4.5rem;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-lead {
    max-width: 40rem;
  }

  .contractors-brand,
  .contractors-copy,
  .merch-copy {
    text-align: center;
  }

  .brand-chip {
    align-self: center;
  }

  .merch-image {
    border-right: 0;
    border-bottom: 4px solid #000;
  }
}

@media (max-width: 720px) {
  .site-shell {
    scroll-snap-type: y proximity;
  }

  .market-strip {
    gap: 1rem;
    padding-inline: 0.75rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-grid {
    width: min(100%, calc(100% - 1.5rem));
  }

  .button-primary {
    width: 100%;
  }

  .social-grid {
    justify-content: center;
  }

  .social-link {
    min-width: 3.35rem;
    height: 3.35rem;
    border-width: 3px;
    box-shadow: 3px 3px 0 var(--shadow);
    padding: 0 0.7rem;
  }

  .social-link svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .social-link-wide {
    min-width: 8.15rem;
  }

  .social-label {
    font-size: 0.72rem;
  }

  .feature-card,
  .contractors-card,
  .merch-card {
    box-shadow: 8px 8px 0 var(--shadow);
  }

  .pattern-row {
    font-size: 4rem;
  }

  .contractors-brand,
  .contractors-copy {
    padding: 2rem 1.5rem;
  }

  .contractors-brand h2 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .brand-chip {
    font-size: clamp(0.95rem, 4.5vw, 1.2rem);
  }

  .contractors-lead {
    font-size: clamp(1.05rem, 6vw, 1.45rem);
  }

  .contractors-body {
    font-size: clamp(0.95rem, 4.6vw, 1.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-shell {
    scroll-snap-type: none;
  }

  .reveal,
  .pattern-row,
  .scroll-cue,
  .stat-value.loading {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
