:root {
  --bg: #fff8f5;
  --text: #1c1b1f;
  --muted: #5f5963;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-border: rgba(255, 122, 46, 0.22);
  --orange: #ff7a2e;
  --orange-dark: #ca4d14;
  --shadow: rgba(55, 30, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 122, 46, 0.14), rgba(255, 255, 255, 0) 34rem),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.app-icon {
  display: block;
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 18px 28px var(--shadow));
}

h1 {
  margin: 18px 0 10px;
  font-size: 1.5rem;
  line-height: 1.15;
  font-weight: 700;
}

.description {
  width: min(720px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 122, 46, 0.28);
  text-decoration: none;
  font-weight: 700;
}

.download-button:hover,
.download-button:focus-visible {
  background: var(--orange-dark);
}

.download-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-image {
  margin: 46px 0 0;
}

.product-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(55, 30, 20, 0.12);
}

.product-image--pane {
  width: min(960px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.product-image--screen {
  margin-top: 42px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature-panel {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(55, 30, 20, 0.08);
}

.feature-panel h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.25;
}

.feature-panel p {
  margin: 0;
  color: var(--muted);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 16px 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.github-link {
  display: inline-flex;
  color: var(--muted);
}

.github-link:hover,
.github-link:focus-visible {
  color: var(--orange-dark);
}

@media (max-width: 860px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 24px, 1040px);
    padding-top: 42px;
  }

  .app-icon {
    width: 128px;
    height: 128px;
  }

  .features {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .product-image {
    margin-top: 34px;
  }

  .feature-panel {
    min-height: 0;
  }
}
