@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--cream-outer);
  font-family: var(--font-display);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Outer surround + centered phone-width card, per README layout spec */
.app-shell {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: var(--cream-outer);
}

.flow-card {
  width: 100%;
  max-width: var(--flow-max-width);
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 0 1px rgba(15, 27, 45, 0.04);
}

.screen-body {
  flex: 1;
  padding: 28px 22px 100px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--source-tag-brown);
  margin: 0 0 10px;
}

h1.screen-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--navy);
}

p.screen-help {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.55;
  margin: 0 0 26px;
}

.footer-hint {
  font-size: 12.5px;
  color: var(--source-tag-brown);
  margin-top: 10px;
  text-align: center;
}
