:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #263137;
  background: #fff;
  --accent: #e9684d;
  --ink: #263137
}

* {
  box-sizing: border-box
}

body {
  margin: 0
}

a {
  color: inherit
}

nav,
main,
footer {
  max-width: 1120px;
  margin: auto;
  padding-left: 26px;
  padding-right: 26px
}

nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

nav .brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800
}

nav img {
  width: 32px;
  height: 32px;
  border-radius: 7px
}

nav .links {
  display: flex;
  gap: 28px;
  font-size: 14px
}

nav .links a {
  text-decoration: none
}

nav .links a:hover,
footer a:hover {
  color: var(--accent)
}

.hero {
  text-align: center;
  padding: 78px 20px 94px;
  background: linear-gradient(180deg, #fff1eb, #fff)
}

.hero img {
  width: 92px;
  height: 92px;
  border-radius: 17px;
  box-shadow: 0 18px 36px #c8755450
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent)
}

h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.06;
  letter-spacing: -.05em;
  margin: 25px auto 20px;
  max-width: 780px
}

h1 em {
  font-style: normal;
  color: var(--accent)
}

.hero p {
  color: #5d6568;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 25px;
  font-size: 18px
}

.pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap
}

.pills span {
  border: 1px solid #e5e8e7;
  background: #fff;
  border-radius: 99px;
  padding: 9px 14px;
  color: #596166;
  font-size: 13px
}

section {
  padding: 62px 0
}

h2 {
  font-size: 34px;
  letter-spacing: -.035em;
  margin: 0 0 12px
}

.intro {
  color: #657073;
  line-height: 1.7;
  margin: 0 0 30px
}

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

.card {
  border: 1px solid #e9e9e6;
  border-radius: 16px;
  padding: 28px;
  background: #fff
}

.card .icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff0e9;
  color: var(--accent);
  font-size: 22px
}

.card h3 {
  font-size: 18px;
  margin: 20px 0 10px
}

.card p {
  line-height: 1.6;
  color: #637074;
  margin: 0;
  font-size: 14px
}

.steps {
  background: #faf8f5
}

.steps .grid {
  gap: 44px
}

.stepnum {
  color: var(--accent);
  font-size: 30px;
  font-weight: 800
}

.faq details {
  border-bottom: 1px solid #e4e8e8;
  padding: 20px 0
}

.faq summary {
  cursor: pointer;
  font-weight: 700
}

.faq p {
  line-height: 1.65;
  color: #657073;
  max-width: 760px
}

.cta {
  text-align: center;
  background: #fff2ed;
  border-radius: 20px;
  padding: 55px 20px
}

.button {
  display: inline-block;
  margin-top: 16px;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 700
}

.button:hover {
  background: var(--accent)
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 35px;
  border-top: 1px solid #ecefed;
  color: #6c7477;
  font-size: 13px
}

footer div {
  display: flex;
  gap: 20px
}

.document {
  max-width: 850px;
  padding-top: 48px;
  padding-bottom: 80px
}

.document h1 {
  font-size: 46px
}

.document h2 {
  font-size: 24px;
  margin-top: 36px
}

.document p,
.document li {
  line-height: 1.7;
  color: #5e696c
}

/* Screenshots ------------------------------------------------------------ */
.shot {
  margin: 0;
}

/* The store captures already carry a Windows frame with its own padding and
   rounded corners, so no extra border here - it would read as a double edge. */
.shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #fff;
}

/* .hero img targets the 92px app icon, so the hero shot must reset it. */
.hero .hero-shot {
  max-width: 1068px;
  margin: 58px auto 0;
}

.hero .hero-shot img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 60px #c8755433;
}

.showcase {
  padding-top: 26px;
}

.showcase .shot {
  margin-top: 34px;
}

.showcase .shot img {
  border-radius: 16px;
  box-shadow: 0 24px 48px #26313714;
}

.step-shot {
  margin-bottom: 22px;
}

.step-shot img {
  border-radius: 12px;
  box-shadow: 0 10px 24px #2631370f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 34px;
}

.gallery figcaption {
  color: #637074;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
}

@media(max-width:700px) {
  nav .links {
    gap: 12px
  }

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

  .hero {
    padding: 56px 20px 70px
  }

  .hero .hero-shot {
    margin-top: 40px
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  footer {
    flex-direction: column
  }
}