:root {
  --bg: #1a1a1a;
  --panel: #2a2a2a;
  --text: #e8e8e8;
  --muted: #a0a0a0;
  --line: #3d3d3d;
  --highlight: #ffffff;
  --app-footer-height: 44px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sohne Buch", "Sohne", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, #2f2f2f 0%, transparent 45%),
    radial-gradient(circle at 85% 90%, #242424 0%, transparent 40%),
    var(--bg);
  display: grid;
  place-items: center;
  padding: 24px;
  padding-bottom: calc(
    24px + var(--app-footer-height, 44px) + env(safe-area-inset-bottom, 0px) + 0.2rem
  );
}

.company {
  margin: 0 0 2rem;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: center;
}
