.hero,
.artifact-section {
  overflow: clip;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  margin: 58px auto 0;
  border: 1px solid #343446;
  border-radius: 30px;
  background: #f3f4f6;
  box-shadow:
    0 45px 120px #000a,
    0 0 90px #865dff1f;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px #ffffff0a;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1620 / 971;
  object-fit: cover;
  object-position: center;
}

.artifact-shot {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-bottom: 1px solid #30303f;
  background: #09090e;
}

.artifact-featured .artifact-shot {
  border-right: 1px solid #30303f;
  border-bottom: 0;
}

.artifact-shot img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  aspect-ratio: 64 / 41;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.artifact-card:hover .artifact-shot img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}

.artifact-shot > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border: 1px solid #ffffff2b;
  border-radius: 999px;
  background: #08080ddd;
  box-shadow: 0 8px 28px #0008;
  color: #fff;
  font:
    800 10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.artifact-copy p {
  max-width: 42ch;
}

.path-section {
  border-top: 1px solid var(--line);
}

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

.path-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 230px;
  padding: 28px;
  border: 1px solid #30303f;
  border-radius: 24px;
  background: #111119;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: #68688b;
}

.path-card > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #08080d;
  font-size: 24px;
  font-weight: 900;
}

.path-try > span {
  background: linear-gradient(135deg, #ff654d, #f43b91);
}
.path-see > span {
  background: linear-gradient(135deg, #865dff, #57d7ff);
}
.path-learn > span {
  background: linear-gradient(135deg, #57d7ff, #63e8ae);
}

.path-card small {
  color: var(--cyan);
  font:
    750 10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.13em;
}

.path-card h3 {
  margin: 12px 0 28px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.path-card b {
  color: var(--pink);
  font-size: 13px;
}

.setup-strip {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 36px;
  align-items: center;
  padding-block: 66px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.setup-strip h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 48px);
}

.setup-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-strip li {
  padding: 10px 13px;
  border: 1px solid #343446;
  border-radius: 999px;
  background: #111119;
  color: #d4d2df;
  font-size: 13px;
}

.setup-strip li::before {
  content: "✓";
  margin-right: 7px;
  color: #63e8ae;
  font-weight: 900;
}

@media (max-width: 800px) {
  .hero h1 {
    font-size: clamp(41px, 10.7vw, 46px);
    line-height: 0.96;
  }

  .hero h1 br {
    display: initial;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-visual {
    margin-top: 38px;
    border-radius: 22px;
  }

  .hero-visual img {
    aspect-ratio: 4 / 3;
    object-position: 40% center;
  }

  .path-grid,
  .setup-strip {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
  }

  .setup-strip {
    gap: 24px;
  }

  .artifact-featured .artifact-shot {
    border-right: 0;
    border-bottom: 1px solid #30303f;
  }

  .artifact-shot img {
    min-height: 0;
    aspect-ratio: 64 / 41;
  }

  .artifact-copy {
    padding: 22px 22px 25px;
  }

  .artifact-copy h3 {
    font-size: 23px;
  }

  .artifact-copy p {
    font-size: 15px;
  }
}
