:root {
  --bg: #f9f9f9;
  --text: #000000;
  --muted: #57534e;
  --link: #1e83f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

/* ============================================================
   Mobile layout (default)
   Matches Figma node 7706:58082 at 393px width
   ============================================================ */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 56px;
  padding-top: 24px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 24px;
}

.logo {
  display: inline-block;
  padding: 0 8px;
  line-height: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 8px;
}

.copy h1 {
  margin: 0;
  font-family: "Literata", "Times New Roman", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0;
  color: var(--text);
  word-break: break-word;
}

.copy .lede {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}

.updates {
  margin: 0;
  padding: 0 8px;
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
}

.updates a {
  color: var(--link);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 1px;
}

.illustration {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* Push the illustration to the bottom of the viewport on tall mobile screens */
  margin-top: auto;
}

.illustration img {
  width: 100%;
  height: auto;
}

.illustration-desktop {
  display: none;
}

/* ============================================================
   Desktop layout
   Matches Figma node 7706:58289 at 1280×832
   ============================================================ */
@media (min-width: 960px) {
  .page {
    flex-direction: row;
    align-items: stretch;
    min-height: 100vh;
    gap: 16px;
    padding-top: 0;
  }

  .content {
    flex: 1 1 0;
    min-width: 0;
    gap: 0;
    padding: 48px 32px 48px 48px;
    justify-content: space-between;
  }

  .logo img {
    height: 63.4px;
  }

  .copy {
    gap: 24px;
    padding-bottom: 40px;
    /* Mirrors the lede width from the design so the heading wraps the same way */
    max-width: 493px;
  }

  .copy h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .copy .lede {
    font-size: 20px;
    line-height: 28px;
    max-width: 477px;
  }

  .updates {
    font-size: 16px;
    line-height: 24px;
  }

  .updates a {
    text-underline-offset: 2px;
  }

  .illustration {
    flex: 0 0 645.5px;
    width: 645.5px;
    height: 100vh;
    min-height: 832px;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 0;
    overflow: hidden;
  }

  .illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
  }

  .illustration-mobile {
    display: none;
  }

  .illustration-desktop {
    display: block;
  }
}

