:root {
  --ink: #17231f;
  --muted: #718078;
  --paper: #f5f5ef;
  --surface: #fff;
  --line: #dce4dd;
  --forest: #1d5544;
  --forest-dark: #103b2f;
  --lime: #dff5a4;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body { min-width: 320px; background: var(--paper); }
a { color: inherit; text-decoration: none; }
.app-shell { display: flex; min-height: 100vh; flex-direction: column; }
.app-header { display: flex; align-items: center; justify-content: space-between; width: min(100% - 48px, 1120px); height: 76px; margin: 0 auto; }
.brand { display: inline-flex; gap: 10px; align-items: center; font-size: 17px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; overflow: hidden; border-radius: 12px; background: #e8f0e6; }
.brand-mark img { width: 52px; height: 52px; object-fit: contain; }
.status { display: inline-flex; gap: 7px; align-items: center; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; }
.status i { width: 6px; height: 6px; border-radius: 50%; background: #b9e769; box-shadow: 0 0 0 3px rgba(185,231,105,.2); }
.launch { display: grid; flex: 1; justify-items: center; align-content: center; padding: 50px 24px 90px; text-align: center; }
.launch-icon { display: grid; width: 116px; height: 116px; place-items: center; overflow: hidden; border-radius: 34px; background: #e8f0e6; box-shadow: 0 18px 42px rgba(29,85,68,.12); }
.launch-icon img { width: 148px; height: 148px; object-fit: contain; }
.launch h1 { margin: 24px 0 28px; color: var(--ink); font-size: clamp(38px, 7vw, 58px); letter-spacing: -.07em; }
.launch-subtitle { margin: -16px 0 27px; color: var(--muted); font-size: 13px; letter-spacing: .04em; }
.launch-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: center; }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 12px; padding: 0 18px; border-radius: 12px; font-size: 12px; font-weight: 750; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #17231f; background: var(--lime); box-shadow: 0 10px 24px rgba(185,231,105,.25); }
.button-primary:hover { background: #c9ec83; }
.button-primary span { font-size: 18px; font-weight: 400; }
.app-footer { display: flex; width: min(100% - 48px, 1120px); min-height: 64px; align-items: center; justify-content: space-between; margin: auto; border-top: 1px solid var(--line); color: #87938b; font-size: 10px; }
@media (max-width: 560px) {
  .app-header, .app-footer { width: min(100% - 28px, 1120px); }
  .status { font-size: 9px; }
  .launch { padding-top: 30px; }
  .launch-icon { width: 92px; height: 92px; border-radius: 28px; }
  .launch-icon img { width: 120px; height: 120px; }
  .launch h1 { margin: 19px 0 23px; }
  .launch-actions { width: min(100%, 280px); }
  .button { width: 100%; }
}
