:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7f8;
  color: #172026;
  height: 100%;
  overflow: hidden;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.08), transparent 36%),
    #f5f7f8;
}

.fallback {
  position: fixed;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

.mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #0f766e;
  box-shadow: inset 16px 0 0 #d9612a;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  max-width: 320px;
  color: #63717a;
  font-size: 15px;
  line-height: 1.5;
}

.fallback[data-state="error"] .mark {
  background: #b91c1c;
  box-shadow: none;
}
