@font-face {
  font-family: "Dela Gothic One";
  src: url("/fonts/dela-gothic-one.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Just Another Hand";
  src: url("/fonts/just-another-hand.woff2") format("woff2");
  font-display: swap;
}

:root {
  --red: #eb3204;
  --yellow: #fcb903;
  --white: #ffffff;
  --black: #000000;
  --light-grey: #d1d1d6;
  --grey: #565656;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--black);
  font: 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

main {
  flex: 1;
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mark { width: 132px; height: 132px; margin-bottom: 8px; }
.wordmark { width: min(280px, 80%); height: auto; margin-bottom: 12px; }

h1 {
  font-family: "Dela Gothic One", -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.15;
  margin: 8px 0 12px;
}

.hand {
  font-family: "Just Another Hand", cursive;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--red);
  margin: 0 0 4px;
}

.rule {
  width: 64px;
  height: 6px;
  border-radius: 3px;
  background: var(--yellow);
  margin: 20px auto;
}

p { margin: 0 0 12px; }
.muted { color: var(--grey); font-size: 0.95rem; }

.store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 8px;
  padding: 16px 28px;
  min-height: 56px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-family: "Dela Gothic One", -apple-system, sans-serif;
  font-size: 1rem;
  text-decoration: none;
}
.store:active { transform: scale(0.98); }
.store svg { width: 20px; height: 20px; fill: currentColor; }

ol.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 8px 0 0;
  text-align: left;
  width: 100%;
}
ol.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 16px 14px 60px;
  margin: 10px 0;
  border-radius: 16px;
  background: var(--black);
  color: var(--white);
}
ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: "Dela Gothic One", -apple-system, sans-serif;
  font-size: 0.9rem;
  line-height: 30px;
  text-align: center;
}

.desktop-only { display: none; }
.is-desktop .desktop-only { display: block; }
.is-desktop .phone-only { display: none; }

footer {
  padding: 24px 20px 32px;
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
}
footer a { color: var(--grey); }
footer a + a { margin-left: 16px; }

a { color: var(--red); text-underline-offset: 2px; }
