: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;
}


.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;
  }
}


.darts-corner-home {
  padding-top: 30px;
}

.darts-corner-hero {
  gap: 26px;
  margin-bottom: 48px;
}

.darts-corner-header-image {
  display: block;
  width: min(100%, 600px);
  height: auto;
  margin: -10px auto -2px;
}

.darts-corner-copy {
  gap: 28px;
  margin-bottom: 38px;
}

.darts-corner-copy h1 {
  font-size: 34px;
  line-height: 1.16;
}

.darts-corner-copy h2 {
  font-size: 30px;
  line-height: 1.18;
}

.darts-corner-copy p {
  font-size: 23px;
  line-height: 1.38;
}

.darts-corner-products {
  margin: 8px auto 34px;
}

.darts-corner-products img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
}

@media (max-width: 380px) {
  .darts-corner-copy h1 { font-size: 30px; }
  .darts-corner-copy h2 { font-size: 27px; }
  .darts-corner-copy p { font-size: 21px; }
}
