:root {
    /* Brand */
    --teal-700: #0F766E;
    --teal-900: #134E4A;
    --cream-100: #fef3c7;
    --cream-50:  #fffbeb;

    /* Status */
    --green-700: #15803d;

    /* Warm neutrals — the ink */
    --ink-900: #1c1917;
    --ink-700: #44403c;
    --ink-500: #78716c;
    --ink-200: #e7e5e4;

    /* Type — system fallbacks for the v0 cut */
    --font-display: 'Iowan Old Style', Palatino, Georgia, serif;
    --font-body:    system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono:    ui-monospace, 'SF Mono', 'Cascadia Mono', monospace;
  }

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

  body {
    background: var(--cream-100);
    color: var(--ink-900);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  main.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 24px;
  }

  @media (min-width: 768px) {
    main.hero { padding: 128px 64px; }
  }

  h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 32px 0;
  }

  p.pitch {
    font-size: 1.125rem;
    color: var(--ink-700);
    margin: 0 0 32px 0;
  }

  p.status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--ink-700);
    margin: 48px 0 24px 0;
  }

  .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-700);
    flex-shrink: 0;
  }

  p.links {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.9375rem;
  }

  a {
    color: var(--teal-900);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 150ms ease-out;
  }
  a:hover { opacity: 0.7; }

  footer {
    padding: 24px;
    border-top: 1px solid var(--ink-200);
    font-size: 0.8125rem;
    color: var(--ink-500);
    text-align: center;
  }

  @media (min-width: 768px) {
    footer { padding: 24px 64px; text-align: left; }
  }

  /* Initial-load stagger per design system motion budget (60ms between siblings) */
  @media (prefers-reduced-motion: no-preference) {
    main.hero > * {
      opacity: 0;
      transform: translateY(8px);
      animation: stagger 400ms ease-out forwards;
    }
    main.hero > *:nth-child(1) { animation-delay: 0ms; }
    main.hero > *:nth-child(2) { animation-delay: 60ms; }
    main.hero > *:nth-child(3) { animation-delay: 120ms; }
    main.hero > *:nth-child(4) { animation-delay: 180ms; }

    @keyframes stagger {
      to { opacity: 1; transform: translateY(0); }
    }
  }

