:root {
  --green: #006747;
  --green-deep: #003424;
  --green-light: #1e8a5e;
  --cream: #e8efe9;
  --accent: #fce300;
  --ink: #10281d;
  --paper: #ffffff;
}
* { box-sizing: border-box; }
html { font-size: 17px; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: var(--green); }
.hero {
  position: relative;
  color: #fff;
  background: var(--green);
  background-image:
    linear-gradient(180deg, rgba(0,52,36,.55) 0%, rgba(0,103,71,.10) 42%, rgba(0,45,31,.75) 100%),
    linear-gradient(rgba(0,103,71,.82), rgba(0,103,71,.82)),
    url("/images/green.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}
.hero .icon {
  width: 96px; height: 96px; border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hero h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 3.4rem;
  letter-spacing: -0.02em;
  margin: 1.2rem 0 0;
  line-height: 1;
}
.hero .sub {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  font-variant-caps: all-small-caps;
  margin: .6rem 0 0;
}
.hero p.lede { max-width: 34rem; margin: 1.6rem auto 0; font-size: 1.15rem; color: var(--cream); }
.badge {
  display: inline-block; margin-top: 2rem;
  border: 1.5px solid rgba(255,255,255,.85); border-radius: 14px;
  padding: .8rem 1.4rem; color: #fff; font-weight: 700; text-decoration: none;
}
.badge.solid { background: #fff; color: var(--green); border-color: #fff; }
.store { display: inline-block; margin-top: 2rem; padding: 14px; } /* the quarter-height clear space Apple asks for */
.store img { height: 56px; display: block; }
main { max-width: 42rem; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }
main h2 { font-size: 1.5rem; margin: 2.2rem 0 .6rem; }
main h1 { font-size: 2.2rem; margin: 0 0 .3rem; letter-spacing: -0.01em; }
.muted { color: #5c6b63; }
ul.five { list-style: none; padding: 0; margin: 1rem 0; }
ul.five li {
  padding: .7rem 1rem; margin: .5rem 0; border-radius: 12px;
  background: var(--green); color: #fff; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
ul.five li::after { content: "☐"; font-size: 1.3rem; color: var(--cream); }
ul.five li.ticked { background: var(--green-light); }
ul.five li.ticked::after { content: "☑"; color: var(--accent); }
figure { margin: 2rem auto; text-align: center; }
figure img { width: 260px; border-radius: 28px; box-shadow: 0 14px 40px rgba(0,0,0,.25); }
figure figcaption { font-size: .9rem; color: #5c6b63; margin-top: .6rem; }
footer {
  border-top: 1px solid #dfe6e2; margin-top: 3rem; padding: 1.5rem;
  text-align: center; font-size: .9rem; color: #5c6b63;
  font-variant-caps: all-small-caps; letter-spacing: .08em;
}
footer a { margin: 0 .6rem; }
dl dt { font-weight: 700; margin-top: 1.2rem; }
dl dd { margin: .3rem 0 0; }
