:root {
  --ink: #17202a;
  --muted: #52606d;
  --line: #c9d1d9;
  --paper: #ffffff;
  --soft: #eef2f4;
  --accent: #2c7a7b;
  --accent-strong: #d7354a;
  --gold: #f2c14e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.brand img {
  display: block;
  width: 136px;
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
  font-weight: 650;
}

nav a,
footer a {
  text-decoration: none;
}

nav a:hover,
footer a:hover {
  text-decoration: underline;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.page-intro {
  max-width: 820px;
  padding: 54px 0 24px;
}

.award-intro {
  max-width: 940px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
}

.lede {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 650;
}

.intro-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}

.intro-heading h1 {
  margin-bottom: 18px;
}

.appstore-mark {
  display: block;
  width: clamp(82px, 12vw, 132px);
  height: auto;
  flex: 0 0 auto;
}

.actions,
.email-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.email-cta {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button.secondary {
  background: var(--paper);
}

.band,
.showcase,
.signup,
.callout {
  margin: 34px 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.callout {
  border-left: 4px solid var(--accent);
}

.version-note {
  background: #f7f9fa;
}

.section-heading {
  max-width: 760px;
}

.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.feature-list ul {
  padding-left: 22px;
}

.feature-grid,
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.screenshot-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-shot {
  min-height: 300px;
  display: grid;
  place-items: center;
  margin: 0;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
  overflow: hidden;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-shot figcaption {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.wide {
  min-height: 420px;
}

.screenshot-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.screenshot-card .product-shot {
  min-height: 0;
  padding: 0;
  border: 0;
}

.screenshot-card h3,
.screenshot-card p {
  margin-bottom: 0;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: center;
  background: #f7f9fa;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  aspect-ratio: 16 / 9;
  margin-top: 24px;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.award-video-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  margin-top: 24px;
  padding: 28px;
  text-align: center;
}

.video-actions {
  margin-top: 16px;
}

.download-meta {
  margin: 0;
  font-size: 15px;
}

footer {
  width: min(1120px, calc(100% - 40px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

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

  .showcase,
  .signup,
  .feature-grid,
  .screenshot-grid,
  .three-up {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(44px, 16vw, 72px);
  }
}
