:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.82);
  --text: #1d1d1f;
  --muted: #6e6e73;
  --hairline: rgba(0, 0, 0, 0.1);
  --green: #215f43;
  --blue: #315fd4;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(33, 95, 67, 0.12), transparent 30rem),
    linear-gradient(180deg, #fbfbfd 0%, var(--bg) 52%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.simple-home {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.simple-home-panel {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.app-icon-image {
  width: 148px;
  height: 148px;
  border-radius: 34px;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
}

.simple-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 520;
}

.app-store-link {
  display: inline-flex;
  line-height: 0;
}

.app-store-badge {
  width: 180px;
  height: auto;
}

.simple-links a {
  color: var(--blue);
}

.simple-links a:hover {
  text-decoration: underline;
}

.page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.content {
  min-height: 100svh;
  padding: 56px 0 72px;
}

.content-app-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 28px;
  border-radius: 21px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 17px;
  font-weight: 650;
}

.lead,
.updated {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.38;
}

.content-card,
.support-panel {
  margin-top: 34px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--hairline);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin: 34px 0 10px;
  font-size: 25px;
  line-height: 1.18;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p {
  margin: 0 0 18px;
  color: #414146;
  font-size: 17px;
  line-height: 1.62;
}

.support-panel p {
  max-width: 640px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.38;
}

.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 18px;
  font-weight: 660;
}

.content-links {
  margin-top: 28px;
  justify-content: flex-start;
}

@media (max-width: 560px) {
  .app-icon-image {
    width: 128px;
    height: 128px;
    border-radius: 29px;
  }

  .email-link {
    width: 100%;
  }
}
