*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #F5F7F3;
  color: #101316;
  -webkit-font-smoothing: antialiased;
}

/* ─── Links ─── */
.inline-link {
  color: #1D7431;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-link:hover {
  color: #145222;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #15191D;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero__slide.active { opacity: 1; }
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #101316F4 0%, #101316AD 50%, #1013162E 100%);
}
.hero__gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 340px;
  background: linear-gradient(180deg, #10131600 0%, #101316E5 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 180px 72px;
  max-width: 850px;
  height: 100%;
}
.hero__title {
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 0.84;
}
.hero__tagline {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.25;
}

/* ─── Section Shared ─── */
.section {
  padding: 92px 72px;
}
.section--paper { background: #F5F7F3; }
.section--panel { background: #FFFFFF; }

.section__label {
  font-size: 13px;
  font-weight: 900;
  color: #1D7431;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section__heading {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  color: #101316;
  line-height: 0.94;
  margin-bottom: 18px;
}
.section__heading--sm {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1;
}
.section__text {
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 500;
  color: #3A424A;
  line-height: 1.55;
}
.section__text--sm {
  font-size: clamp(15px, 1.2vw, 18px);
  margin-top: 18px;
}
.section__text--md {
  font-size: clamp(16px, 1.3vw, 20px);
}

/* ─── Gaming PC ─── */
.gaming {
  display: flex;
  gap: 88px;
  align-items: flex-start;
}
.gaming__copy { flex: 1; }
.gaming__where {
  flex-shrink: 0;
  width: 420px;
  background: #FFFFFF;
  border: 1px solid #DDE1DA;
  border-radius: 8px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 56px #10131614;
}
.gaming__where-title {
  font-size: 32px;
  margin-bottom: 0;
}
.retailer {
  padding: 10px 0;
  border-top: 1px solid #DDE1DA;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.retailer:first-of-type { border-top: none; padding-top: 0; }
.retailer__name {
  font-size: 20px;
  font-weight: 900;
  color: #101316;
  text-decoration: none;
}
.retailer__name:hover {
  color: #1D7431;
}
.retailer__desc {
  font-size: 15px;
  font-weight: 500;
  color: #3A424A;
}

/* ─── Footer ─── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  height: 58px;
  border-top: 1px solid #DDE1DA;
  background: #F5F7F3;
}
.footer__brand { font-size: 16px; font-weight: 900; color: #101316; }
.footer__text { font-size: 15px; font-weight: 500; color: #3A424A; }
.footer__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__text a:hover {
  opacity: 0.8;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .gaming { flex-direction: column; gap: 48px; }
  .gaming__where { width: 100%; }
  .section { padding: 60px 40px; }
  .footer { padding: 0 40px; flex-wrap: wrap; gap: 8px; height: auto; padding: 16px 40px; }
}
@media (max-width: 640px) {
  .hero__content { padding: 120px 24px; }
  .section { padding: 48px 24px; }
  .footer { padding: 16px 24px; flex-direction: column; text-align: center; }
}
