* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 24%, rgb(255 242 0 / 0.14), transparent 30%),
    radial-gradient(circle at 18% 82%, rgb(215 255 47 / 0.1), transparent 26%),
    linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.detail-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  padding: 16px clamp(24px, 5vw, 64px);
  background: linear-gradient(180deg, rgb(6 6 6 / 0.94), rgb(6 6 6 / 0.72));
  backdrop-filter: blur(18px);
}

.detail-header img {
  display: block;
  width: 148px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgb(0 0 0 / 0.62));
}

.header-link {
  border: 1px solid #fff200;
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff200;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

main {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 150px clamp(24px, 5vw, 64px) 72px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #fff200;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(54px, 9vw, 112px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 0.72);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.detail-card {
  min-height: 190px;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 24px;
  padding: 22px;
  background: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(18px);
}

.detail-card span {
  display: block;
  margin-bottom: 16px;
  color: #fff200;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-card p {
  margin: 0;
  color: rgb(255 255 255 / 0.68);
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary {
  background: #fff200;
  color: #000;
}

.secondary {
  border: 1px solid rgb(255 255 255 / 0.14);
  background: rgb(255 255 255 / 0.08);
  color: rgb(255 255 255 / 0.82);
}

@media (max-width: 760px) {
  .detail-header {
    min-height: 78px;
    padding: 12px 20px;
  }

  .detail-header img {
    width: 124px;
  }

  .header-link {
    display: none;
  }

  main {
    padding: 124px 24px 52px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }
}
