* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Roboto Flex', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  --text-color: #4D4E50;
  /* slightly off-black to match logo */
  color: var(--text-color);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* texture image overlayed on white base. Add a semi-opaque white wash on top to remove yellow tint */
  background-image: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1)), url('bumpy_background.png');
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  background-position: center center, 0 0;
}

.page {
  width: 100%;
  padding: 40px 20px;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 36px;
  /* preserve whitespace without a visible box */
  background: transparent;
  /* remove box so full page shows texture */
  border-radius: 0;
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 64px;
}

.brand-icon {
  display: block;
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.title {
  font-family: 'Rock Salt', 'Roboto Flex', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  font-size: 42px;
  line-height: 1.18;
  margin: 0 0 18px;
  font-weight: 600;
  color: var(--text-color);
  /* subtle pencil/hand-drawn effect */
  text-shadow:
    0.6px 0.6px 0 rgba(0, 0, 0, 0.06),
    -0.6px -0.6px 0 rgba(255, 255, 255, 0.6);
  /* Slight angle */
  transform: translateZ(0);
  transform: rotate(-1deg);
}

.subtitle {
  font-family: 'Rock Salt', 'Roboto Flex', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  font-size: 20px;
  font-weight: 300;
  margin: 0;
  color: #6b6b6b;
  /* Give a slight rotation */
  transform: rotate(-1deg);
}

@media (max-width: 640px) {
  .container {
    padding: 32px 20px;
  }

  .brand-icon {
    max-height: 80px;
  }

  .title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }
}