/* Styling for the pre-render block in index.html / business.html. It is what a
   crawler reads and what a visitor sees for the second before Flutter paints,
   so it carries the brand rather than a blank page. */

body {
  margin: 0;
  background: #f7fafc;
}

#boot {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  box-sizing: border-box;
  background: linear-gradient(150deg, #f7f4ee 0%, #e8f5f6 100%);
  font-family: "Cairo", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #102033;
}

.boot-inner {
  max-width: 640px;
}

.boot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.boot-brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(140deg, #0b556c, #0e7490);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

#boot h1 {
  font-size: clamp(24px, 4.4vw, 38px);
  line-height: 1.3;
  font-weight: 800;
  margin: 0 0 16px;
}

#boot h2 {
  font-size: clamp(17px, 2.6vw, 21px);
  line-height: 1.4;
  font-weight: 700;
  margin: 28px 0 12px;
  color: #0b556c;
}

#boot p {
  font-size: 16px;
  line-height: 1.85;
  color: #5b6677;
  margin: 0 0 14px;
}

#boot ul {
  margin: 0 0 20px;
  padding-inline-start: 20px;
  color: #5b6677;
  line-height: 1.9;
}

.boot-merchant {
  padding: 16px 18px;
  border-radius: 18px;
  background: #0d1b2a;
  color: #fff !important;
}

.boot-merchant a {
  color: #f4b942;
  font-weight: 700;
}

.boot-loading {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #0b556c;
  opacity: 0.75;
}
