:root {
  --primary-gold: #FFC811;
  --secondary-amber: #FFAA00;
  --burnt-orange: #E77115;
  --warm-white: #FFF8E6;
  --charcoal: #222120;
  --ink-soft: #4b4640;
  --paper: #fffdf6;
  --line: rgba(34, 33, 32, 0.14);
  --shadow: 0 24px 70px rgba(34, 33, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 248, 230, 0.88);
  border-bottom: 1px solid rgba(34, 33, 32, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark,
.card-icon {
  display: inline-block;
  flex: 0 0 auto;
  border: 3px solid var(--charcoal);
  box-shadow: 5px 5px 0 var(--charcoal);
  transform: rotate(-3deg);
}

.brand-mark {
  width: 28px;
  height: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 50%, transparent 50%),
    var(--primary-gold);
  background-size: 10px 100%, auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 200, 17, 0.24);
  outline: none;
}

.site-nav .nav-cta {
  background: var(--charcoal);
  color: var(--warm-white);
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 92px;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(34, 33, 32, 0.88) 0%, rgba(34, 33, 32, 0.64) 43%, rgba(34, 33, 32, 0.22) 100%),
    url("assets/hero-marketplace.png") center / cover no-repeat,
    linear-gradient(135deg, var(--secondary-amber), var(--burnt-orange));
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 72%, var(--warm-white) 100%),
    radial-gradient(circle at 78% 26%, rgba(255, 200, 17, 0.24), transparent 34%);
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--warm-white);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--primary-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 900px;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  color: rgba(255, 248, 230, 0.88);
  font-size: clamp(0.92rem, 1.55vw, 1.02rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--charcoal);
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 5px 5px 0 var(--charcoal);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--charcoal);
  outline: none;
}

.button.primary {
  background: var(--primary-gold);
  color: var(--charcoal);
}

.button.secondary {
  background: rgba(255, 248, 230, 0.92);
  color: var(--charcoal);
}

.button.dark {
  background: var(--charcoal);
  color: var(--warm-white);
  white-space: nowrap;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 2px solid var(--charcoal);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.status-strip div {
  padding: 22px;
  background: var(--paper);
}

.status-strip strong,
.status-strip span {
  display: block;
}

.status-strip strong {
  margin-bottom: 4px;
  font-size: 0.95rem;
  font-weight: 800;
}

.status-strip span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.text-stack {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.text-stack p:last-child,
.publisher-band p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-card p,
.steps p,
.publisher-band p {
  color: var(--ink-soft);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
}

.block-gold {
  background: var(--primary-gold);
}

.block-amber {
  background: var(--secondary-amber);
}

.block-orange {
  background: var(--burnt-orange);
}

.process {
  padding-bottom: 96px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--charcoal);
}

.steps article {
  padding: 28px 28px 0 0;
}

.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--burnt-orange);
  font-weight: 800;
}

.publisher-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 72px;
  padding: clamp(28px, 5vw, 48px);
  border: 3px solid var(--charcoal);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 200, 17, 0.92), rgba(255, 170, 0, 0.86)),
    var(--primary-gold);
  box-shadow: 8px 8px 0 var(--charcoal);
}

.publisher-band h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.publisher-band .section-kicker {
  color: rgba(34, 33, 32, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(255, 248, 230, 0.76);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-button {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 2px solid var(--charcoal);
    border-radius: 6px;
    background: var(--primary-gold);
    cursor: pointer;
  }

  .nav-button span {
    width: 20px;
    height: 2px;
    background: var(--charcoal);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 2px solid var(--charcoal);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 6px 6px 0 var(--charcoal);
  }

  .site-nav a {
    text-align: center;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero {
    min-height: 86vh;
    padding-top: 116px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(34, 33, 32, 0.88) 0%, rgba(34, 33, 32, 0.62) 56%, rgba(34, 33, 32, 0.34) 100%),
      url("assets/hero-marketplace.png") center / cover no-repeat,
      linear-gradient(135deg, var(--secondary-amber), var(--burnt-orange));
  }

  .status-strip,
  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .split,
  .publisher-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .publisher-band .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 92vh;
    padding-bottom: 74px;
  }

  h1 {
    font-size: clamp(2.2rem, 14vw, 3.4rem);
  }

  .hero-actions,
  .button,
  .publisher-band .button {
    width: 100%;
  }

  .button {
    padding-inline: 14px;
  }

  .status-strip {
    width: calc(100% - 28px);
    margin-top: -32px;
  }

  .section,
  .publisher-band {
    width: calc(100% - 28px);
  }

  .section {
    padding-top: 72px;
  }

  .feature-card {
    min-height: auto;
  }

  .publisher-band {
    margin-bottom: 48px;
    box-shadow: 5px 5px 0 var(--charcoal);
  }

  .site-footer {
    flex-direction: column;
  }
}
