:root {
  --cream: #fffbf4;
  --peach: #ff7518;
  --peach-soft: #ffb070;
  --orange: #fa7705;
  --ink: #261914;
  --muted: rgba(38, 25, 20, 0.64);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  font-family:
    ui-rounded,
    "SF Pro Rounded",
    "SF Pro Display",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.8), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 26%, #ffd9ba 68%, var(--peach) 100%);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}

.hero {
  width: min(100vw, 430px);
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(104px, 17svh) 1fr minmax(176px, 25svh);
  align-items: center;
  justify-items: center;
  padding: max(22px, env(safe-area-inset-top)) 26px max(24px, env(safe-area-inset-bottom));
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -28% -18% -28%;
  height: 44%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.26), transparent 68%);
  z-index: -1;
  pointer-events: none;
}

.hero-header {
  align-self: start;
  display: grid;
  justify-items: center;
  padding-top: clamp(10px, 3.5svh, 34px);
}

.wordmark {
  width: clamp(124px, 38vw, 166px);
  margin: 0;
  line-height: 0;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 9px 18px rgba(255, 117, 24, 0.14));
}

.icon-stage {
  width: min(63vw, 236px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
}

.icon-stage::before,
.icon-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.icon-stage::before {
  inset: -26%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.64), transparent 64%);
  filter: blur(3px);
}

.icon-stage::after {
  width: 70%;
  height: 16%;
  bottom: -12%;
  background: rgba(151, 67, 9, 0.18);
  filter: blur(16px);
}

.ios-icon-frame {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 25.2%;
  overflow: hidden;
  position: relative;
  background: var(--orange);
  box-shadow:
    0 32px 60px rgba(128, 54, 3, 0.25),
    0 12px 26px rgba(255, 117, 24, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.ios-icon-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.75),
    inset 0 -18px 36px rgba(170, 60, 0, 0.12);
  pointer-events: none;
}

.ios-icon-frame picture,
.ios-icon-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.ios-icon-frame img {
  object-fit: cover;
}

.hero-copy {
  align-self: end;
  display: grid;
  justify-items: center;
  gap: 22px;
  width: 100%;
  padding-bottom: clamp(10px, 2.6svh, 28px);
}

.hero-copy p {
  margin: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: clamp(15px, 4.2vw, 17px);
  font-weight: 650;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  text-wrap: nowrap;
}

.app-store-badge {
  display: block;
  width: 172px;
  height: auto;
  text-decoration: none;
  cursor: default;
}

.app-store-badge img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 700px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.84), transparent 38rem),
      radial-gradient(circle at 50% 100%, rgba(255, 117, 24, 0.2), transparent 32rem),
      linear-gradient(180deg, #ffffff 0%, var(--cream) 32%, #ffd9ba 72%, var(--peach) 100%);
  }

  .hero {
    width: min(430px, 100vw);
    min-height: min(100svh, 932px);
  }
}

@media (max-width: 350px) {
  .hero {
    padding-inline: 18px;
  }

  .hero-copy p {
    font-size: 14px;
  }
}
