:root {
  --page-bg: #f1f1f1;
  --text: #30302f;
  --black: #000;
  --line: #1b1b1b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--page-bg);
  color: var(--text);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

.page-shell {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 52px 28px 96px;
}

.hero {
  display: grid;
  gap: 42px;
  margin-bottom: 72px;
}

.brand-header {
  display: block;
  width: min(100%, 390px);
  height: auto;
  margin: 0 auto;
}

.barrel-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  color: var(--text);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.intro-copy {
  display: grid;
  gap: 34px;
  margin-bottom: 58px;
}

.intro-copy h2 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.18;
}

.intro-copy p {
  font-size: 27px;
  line-height: 1.42;
}

.benefits {
  display: grid;
  gap: 18px;
  margin: -2px 0 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 25px;
  line-height: 1.25;
}

.benefits span {
  color: #f3aa00;
  font-size: 25px;
  line-height: 1;
}

.logo-section {
  margin-top: 58px;
  text-align: center;
}

.logo-section h2 {
  margin-bottom: 20px;
  color: var(--black);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.featured-brands-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.partner-grid {
  display: grid;
  grid-template-columns: 58px 78px 68px 76px;
  gap: 8px 10px;
  align-items: center;
  justify-content: center;
}

.partner-card {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 2px;
  background: transparent;
  color: var(--black);
  text-decoration: none;
}

.partner-card:focus-visible,
.partner-card:hover {
  border-color: #bdbdbd;
}

.partner-card img {
  display: block;
  width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.partner-card.godartspro img,
.partner-card.whatsthepoint img {
  mix-blend-mode: multiply;
}

.partner-card.whatsthepoint img {
  width: 78px;
  height: 58px;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
}

.partner-card.scolia img {
  max-height: 48px;
}

.partner-card.lstyle img {
  max-height: 46px;
}

.partner-card.trainingdarts {
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 52px;
}

.partner-card.trainingdarts img {
  width: min(100%, 285px);
  max-height: 56px;
}

.start-button {
  display: flex;
  width: min(100%, 335px);
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 54px auto 0;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  box-shadow: 0 0 0 7px #c4ccd1;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.start-button span:last-child {
  font-size: 36px;
  line-height: .8;
}

@media (min-width: 700px) {
  .page-shell {
    width: min(100%, 520px);
    padding-top: 48px;
  }

  h1 {
    font-size: 42px;
  }
}
