:root {
  color-scheme: light;
  --orange: #f36b21;
  --orange-dark: #cf4816;
  --orange-soft: #fff3e9;
  --ink: #25282a;
  --muted: #686d70;
  --surface: rgba(255, 255, 255, 0.94);
}

* { box-sizing: border-box; }

html { min-width: 320px; background: #fffaf6; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 181, 94, 0.2), transparent 29rem),
    radial-gradient(circle at 88% 85%, rgba(243, 107, 33, 0.12), transparent 30rem),
    linear-gradient(145deg, #fff 0%, #fffaf6 52%, #fff5ed 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: linear-gradient(120deg, transparent 42%, rgba(243, 107, 33, 0.08) 42%, rgba(243, 107, 33, 0.08) 43%, transparent 43%);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.page-shell {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 42px 20px 28px;
}

.download-card {
  position: relative;
  width: min(100%, 680px);
  padding: 42px 56px 38px;
  text-align: center;
  border: 1px solid rgba(243, 107, 33, 0.14);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(131, 58, 19, 0.12), 0 5px 18px rgba(80, 45, 25, 0.05);
  backdrop-filter: blur(12px);
}

.brand-mark { display: flex; justify-content: center; margin-bottom: 22px; }
.brand-mark img { width: 154px; height: auto; display: block; }

.app-icon-wrap {
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
  padding: 5px;
  border-radius: 31px;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,232,210,.9));
  box-shadow: 0 18px 38px rgba(218, 80, 20, 0.24), 0 2px 4px rgba(80, 35, 14, 0.1);
}

.app-icon { width: 100%; height: 100%; display: block; border-radius: 27px; }

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1 { margin: 0; font-size: clamp(2.35rem, 7vw, 3.55rem); line-height: 1; letter-spacing: -0.045em; }
h2 { margin: 17px 0 0; font-size: clamp(1.05rem, 3vw, 1.28rem); font-weight: 680; }

.intro {
  max-width: 500px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.download-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 28px; }

.store-button {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  border: 1px solid #111;
  border-radius: 16px;
  background: #171717;
  box-shadow: 0 9px 21px rgba(0, 0, 0, 0.13);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.store-button:hover { transform: translateY(-2px); background: #292929; box-shadow: 0 13px 27px rgba(0, 0, 0, 0.17); }
.store-button:focus-visible { outline: 4px solid rgba(243, 107, 33, 0.32); outline-offset: 3px; }
.store-button svg { flex: 0 0 auto; fill: currentColor; }
.store-button span { display: flex; flex-direction: column; line-height: 1; }
.store-button small { font-size: 0.7rem; letter-spacing: 0.015em; }
.store-button strong { margin-top: 5px; font-size: 1.08rem; letter-spacing: -0.02em; }

.device-note { margin: 19px 0 0; color: #8b6f5f; font-size: 0.78rem; }

footer {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 20px 24px;
  color: #777b7d;
  font-size: 0.82rem;
}

@media (max-width: 560px) {
  .page-shell { padding: 20px 14px 14px; }
  .download-card { padding: 30px 20px 27px; border-radius: 25px; }
  .brand-mark { margin-bottom: 18px; }
  .app-icon-wrap { width: 112px; height: 112px; border-radius: 27px; }
  .app-icon { border-radius: 23px; }
  .download-options { grid-template-columns: 1fr; }
  .store-button { min-height: 66px; }
}

@media (prefers-reduced-motion: reduce) {
  .store-button { transition: none; }
}
