/* Welcome surface — see docs/STYLE-GUIDE.md §3 (brand lockup), §5
 * (typography), §10.4 (component contracts).
 *
 * Every value below references a token from tokens.css. No raw hex,
 * no raw px values, no bespoke timing curves. */

/* `.welcome-hero` is the full-viewport surface — the surface-grain
 * background extends to the viewport edges so the proof-surface tier
 * reads as the whole canvas, not a card. The actual reading column is
 * the `.welcome-hero-column` child constrained to ~56ch. */
.welcome-hero {
  min-height: 100dvh;
  padding: var(--space-10) var(--space-6) var(--space-12);
  color: var(--color-text-body);
  display: grid;
  place-content: center;
}

.welcome-hero-column {
  display: grid;
  grid-template-columns: minmax(0, 56ch);
  gap: var(--space-6);
  text-align: left;
}

/* Brand lockup — iris mark + wordmark per STYLE-GUIDE §3.2:
 * mark-left, space-4 gap, shared vertical centre. */
.brand-lockup {
  display: block;
}

.brand-lockup .wordmark {
  /* Single SVG image — height fixed, width auto follows the wordmark's
   * 334:100 aspect ratio. Mirrors qub's home-logo__wordmark sizing. */
  display: block;
  block-size: 56px;
  inline-size: auto;
  max-inline-size: 100%;
}

@media (min-width: 640px) {
  .brand-lockup .wordmark {
    block-size: 72px;
  }
}

/* Welcome typography — .hero-headline + .hero-body live in controls.css. */
.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-text-body);
  max-width: 48ch;
}

@media (max-width: 480px) {
  .welcome-hero {
    padding: var(--space-10) var(--space-4);
    min-height: 100dvh;
  }
  .hero-sub {
    font-size: 1.125rem;
  }
  .brand-lockup .wordmark {
    block-size: 48px;
  }
}
