/* Routinely's website. The pink is the app's own (LiveRoutinePalette). */
:root {
  --pink-top: #ffa7d2;
  --pink-bottom: #d4749f;
  --card: rgba(255, 255, 255, 0.92);
  --text: #1c1c1e;
  --muted: #6c6c70;
  --line: rgba(60, 60, 67, 0.14);
}
@supports (color: color(display-p3 1 1 1)) {
  :root {
    --pink-top: color(display-p3 1 0.65681 0.823);
    --pink-bottom: color(display-p3 0.81523 0.45792 0.63935);
  }
}
@media (prefers-color-scheme: dark) {
  :root { --card: rgba(28, 28, 30, 0.9); --text: #f2f2f7; --muted: #aeaeb2; --line: rgba(235, 235, 245, 0.16); }
}
* { box-sizing: border-box; }
html { background: var(--pink-bottom); }
body {
  margin: 0;
  min-height: 100vh;
  font: 17px/1.4 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(var(--pink-top), var(--pink-bottom)) fixed;
}
main { max-width: 560px; margin: 0 auto; padding: 20px 16px calc(40px + env(safe-area-inset-bottom)); }
.hero { display: block; width: 100%; aspect-ratio: 1200 / 630; object-fit: cover; border-radius: 22px; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
h1 { margin: 22px 4px 2px; font-size: 32px; line-height: 1.1; color: #fff; letter-spacing: -0.02em; }
.summary { margin: 0 4px 18px; color: rgba(255,255,255,.9); font-weight: 600; }
.steps { list-style: none; margin: 0; padding: 6px 16px; background: var(--card); border-radius: 22px; -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
.step { display: flex; gap: 14px; padding: 12px 0; align-items: flex-start; }
.step + .step { border-top: 1px solid var(--line); }
.picture { flex: 0 0 52px; height: 52px; display: grid; place-items: center; }
.picture img { max-width: 52px; max-height: 52px; object-fit: contain; }
.number { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--pink-bottom); color: #fff; font-weight: 700; font-size: 15px; }
.words { flex: 1; min-width: 0; padding-top: 3px; }
.line, .subs li { display: flex; justify-content: space-between; gap: 12px; }
.line span, .subs span { color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.subs { list-style: none; margin: 6px 0 0; padding: 0; font-size: 15px; }
.subs li { padding: 3px 0; color: var(--muted); }
.get { margin-top: 22px; text-align: center; }
.button { display: block; padding: 16px; border-radius: 999px; background: #fff; color: #c2468a; font-weight: 700; text-decoration: none; }
.soon { margin: 0; padding: 16px; border-radius: 999px; background: rgba(255,255,255,.25); color: #fff; font-weight: 600; }
.small { margin: 14px 8px 0; color: rgba(255,255,255,.85); font-size: 14px; }
.empty { text-align: center; padding-top: 18vh; }
.empty h1, .empty .summary { margin-left: 0; margin-right: 0; }
.icon { width: 96px; height: 96px; border-radius: 22px; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
