.hero {
  position: relative;
  min-height: 92vh;
  padding: 56px 0 72px;
  background: url("../banner.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 7, 6, 0.56), rgba(8, 7, 6, 0.86)),
    linear-gradient(to right, rgba(8, 7, 6, 0.8), rgba(8, 7, 6, 0.42));
}

.wip-banner {
  background: var(--accent);
  color: #1b130d;
  text-align: center;
  padding: 8px 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy .eyebrow {
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  max-width: 12.5ch;
  text-wrap: balance;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
  max-width: 44ch;
  margin: 0;
}

.hero-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}

.hero-principles span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
}

.hero-principles span::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 42px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding-top: 18px;
}

.hero-single-img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 34px 72px rgba(0,0,0,0.46);
  transform: rotate(-1.5deg);
}

.hero-note {
  margin-top: 0px;
  padding: 24px 26px;
  background: rgba(15, 12, 10, 0.72);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.2);
  max-width: 500px;
}

.hero-note h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 38ch;
}

.survey-spotlight {
  padding: 0 0 18px;
}

.survey-spotlight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(199,154,99,0.08), rgba(199,154,99,0.02)),
    rgba(18, 15, 13, 0.92);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.survey-spotlight-copy {
  max-width: 58ch;
}

.survey-spotlight-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.survey-spotlight-card p {
  margin: 0;
  color: var(--muted);
}

.section-head-tight p {
  max-width: 55ch;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.feature strong {
  display: block;
  margin-bottom: 8px;
}

.feature span {
  color: var(--muted);
  font-size: 0.96rem;
}

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

.category-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #120f0d;
  transition: transform 0.35s ease;
}

.category-content {
  padding: 22px;
}

.category-eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-content h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.category-content p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 44ch;
}

@media (hover: hover) {
  .category-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 24px 48px rgba(0,0,0,0.35),
      0 0 0 1px rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
  }

  .category-card:hover img {
    transform: scale(1.03);
  }
}

@media (max-width: 920px) {
  .hero-inner,
  .features,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero-visual {
    order: -1;
    padding-top: 0;
  }

  .hero-single-img {
    max-width: 100%;
    transform: none;
  }

  .hero-copy h1 {
    max-width: none;
    margin-bottom: 18px;
  }

  .survey-spotlight-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-principles {
    margin: 22px 0 28px;
  }

  .actions {
    margin-bottom: 28px;
  }

  .hero-note {
    max-width: 100%;
  }
}
