@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=IBM+Plex+Mono:wght@500&family=Source+Sans+3:wght@400;600;700;800&display=swap');

:root {
  --paper: #f3f3f5;
  --surface: #fff;
  --ink: #101114;
  --muted: #696b73;
  --line: #e4e4e8;
  --soft: #f0f0f2;
  --blue: #255ed9;
  --green: #137a46;
  --red: #d82931;
  --shadow: 0 14px 34px rgba(17, 18, 22, .1);
  --font: 'Source Sans 3', system-ui, sans-serif;
  --display: 'Fraunces', Georgia, serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { color-scheme: light; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(circle at 15% 5%, #e3ebff 0, transparent 28rem),
    linear-gradient(150deg, #f5f5f7 0%, #dbdce2 100%);
  -webkit-font-smoothing: antialiased;
}

button,
input { font: inherit; color: inherit; }
button { border: 0; background: none; cursor: pointer; }
img { display: block; max-width: 100%; }
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.page-head {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.page-head h1 {
  margin: 5px 0 2px;
  font-family: var(--display);
  font-size: 28px;
}
.page-head p { margin: 0; color: var(--muted); }
.page-head a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.stage {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 390px minmax(260px, 430px);
  gap: 42px;
  align-items: start;
}

.phone {
  position: relative;
  width: 390px;
  height: 844px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, .1);
  border-radius: 45px;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(17, 18, 22, .18);
}

.status-bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 44px;
  padding: 12px 25px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.status-bar span { font-size: 9px; letter-spacing: .06em; }

.flow-screen {
  position: absolute;
  inset: 0;
}
.flow-screen[hidden] { display: none !important; }
.flow-screen.flow-app {
  z-index: 1;
  background: var(--surface);
}

.flow-status {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 44px;
  padding: 12px 25px 0;
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-size: 12px;
}
.flow-status span {
  font-size: 9px;
  letter-spacing: .06em;
}
.flow-status--light { color: rgba(255, 255, 255, .78); }


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.notes {
  margin-top: 70px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .85);
  box-shadow: var(--shadow);
}
.notes h2 {
  margin: 5px 0 12px;
  font-family: var(--display);
  font-size: 25px;
}
.notes ul {
  margin: 0;
  padding-left: 20px;
  color: #45474e;
  font-size: 14px;
  line-height: 1.55;
}
.notes li + li { margin-top: 7px; }
.notes p {
  margin: 17px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 850px) {
  .page-head { display: none; }
  .stage {
    width: 100%;
    padding: 0;
    display: block;
  }
  .phone {
    width: min(100%, 430px);
    height: 100dvh;
    margin: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .notes { display: none; }
}
