:root {
  --green: #689f38;
  --green-dark: #4b7f24;
  --blue: #29a9e1;
  --orange: #f6a623;
  --ink: #2b2b2b;
  --muted: #727272;
  --line: #d6d6d6;
  --paper: #f5f5f5;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Roboto, Arial, Helvetica, sans-serif;
  background:
    linear-gradient(120deg, rgba(104, 159, 56, .10), rgba(41, 169, 225, .08)),
    repeating-linear-gradient(0deg, #f3f3f3, #f3f3f3 1px, #eeeeee 1px, #eeeeee 2px);
}

.top-strip {
  height: 5px;
  background: linear-gradient(90deg, #689f38, #8bc34a 35%, #29a9e1 65%, #f6a623);
}

.chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 7vw;
  background: linear-gradient(#fafafa, #e8e8e8);
  border-bottom: 1px solid #c9c9c9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.bag {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
}

.bag img,
.play-header img {
  max-width: 100%;
  max-height: 100%;
}

.brand strong {
  display: block;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.5px;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

nav a {
  padding: 10px 14px;
  color: #444;
  text-decoration: none;
  border-radius: 2px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

nav a:hover,
nav a.active {
  color: #fff;
  background: var(--green);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .18);
}

main {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 46px 0 42px;
}

.narrow {
  width: min(760px, 90vw);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 390px;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -1.6px;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 400;
}

.lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: #4b4b4b;
  font-size: 20px;
  line-height: 1.45;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.download-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 0;
  border-radius: 2px;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.download-button {
  color: #fff;
  background: linear-gradient(#75af3d, #558b2f);
  box-shadow: 0 2px 0 #35651c, 0 3px 8px rgba(0, 0, 0, .25);
}

.download-button:hover {
  background: linear-gradient(#82bd48, #5d9633);
}

.secondary-button {
  color: #333;
  background: linear-gradient(#ffffff, #e1e1e1);
  border: 1px solid #c5c5c5;
}

.arrow {
  margin-right: 8px;
  font-size: 21px;
}

.note {
  min-height: 20px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.device-card,
.panel,
.card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 2px 7px rgba(0, 0, 0, .18);
}

.device-card {
  overflow: hidden;
  min-height: 550px;
  border-radius: 3px;
}

.phone-bar {
  height: 24px;
  background: #171717;
  border-bottom: 1px solid #000;
}

.play-header {
  display: flex;
  align-items: center;
  gap: 13px;
  height: 74px;
  padding: 0 22px;
  color: #777;
  font-size: 28px;
  background: #efefef;
  border-bottom: 1px solid #cdcdcd;
}

.play-header img {
  width: 44px;
}

.tabs {
  display: flex;
  height: 45px;
  color: #666;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.tabs span {
  flex: 1;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.tabs .selected {
  color: var(--green-dark);
  border-bottom: 4px solid var(--green);
}

.shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
}

.tile {
  aspect-ratio: 1;
  border-radius: 8px;
  box-shadow: inset 0 -18px 28px rgba(0, 0, 0, .18);
}

.green { background: linear-gradient(135deg, #8bc34a, #33691e); }
.blue { background: linear-gradient(135deg, #4fc3f7, #0277bd); }
.orange { background: linear-gradient(135deg, #ffcc80, #ef6c00); }

.feature {
  display: flex;
  gap: 16px;
  margin: 4px 20px 20px;
  padding: 18px;
  background: #f7f7f7;
  border: 1px solid #ddd;
}

.cover {
  flex: 0 0 76px;
  height: 76px;
  background: linear-gradient(135deg, #d4e157, #7cb342);
  border-radius: 6px;
}

.feature b {
  display: block;
  margin-bottom: 7px;
  color: #222;
  font-weight: 500;
}

.feature p,
.card p,
.info-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.card,
.panel {
  padding: 25px;
}

.panel {
  padding: 34px;
}

.submit-form {
  display: grid;
  gap: 17px;
  margin-top: 26px;
}

label {
  display: grid;
  gap: 7px;
  color: #444;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

input,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: #222;
  font: 16px Arial, Helvetica, sans-serif;
  background: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .12);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(41, 169, 225, .35);
  border-color: var(--blue);
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
  padding: 20px;
  background: #f9f9f9;
  border-left: 4px solid var(--orange);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 7vw;
  color: #666;
  background: #e9e9e9;
  border-top: 1px solid #cfcfcf;
  font-size: 13px;
}

footer a {
  color: var(--green-dark);
}

code {
  padding: 2px 5px;
  background: #ececec;
  border: 1px solid #d2d2d2;
}

@media (max-width: 860px) {
  .chrome,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .device-card {
    min-height: 430px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
