:root {
  color-scheme: light;
  --bg: #fffaf4;
  --text: #27231f;
  --muted: #6d6258;
  --line: #e7d9ca;
  --accent: #0f766e;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

main {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

header,
section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}

h1,
h2 {
  line-height: 1.3;
  margin: 0 0 14px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.25rem;
}

p,
li {
  font-size: 1rem;
}

a {
  color: var(--accent);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

nav a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  text-decoration: none;
  background: #fff;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.info-list dt {
  color: var(--muted);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
}

@media (max-width: 560px) {
  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.app-landing {
  width: min(520px, calc(100% - 32px));
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 32px 0;
}

.app-landing__panel {
  padding: 32px 24px;
  text-align: center;
}

.app-landing__eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 700;
}

.app-landing__description {
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1.0625rem;
}

.store-actions {
  display: grid;
  gap: 12px;
  margin: 24px 0 18px;
}

.store-button {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.store-button--ios {
  background: #27231f;
}

.store-button--android {
  background: var(--accent);
}

.browser-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.app-landing__links {
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 380px) {
  .app-landing {
    width: min(100% - 24px, 520px);
  }

  .app-landing__panel {
    padding: 28px 18px;
  }
}
