:root {
  color-scheme: light;
  --ink: #000000;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 80px 88px;
  text-align: center;
}

.passport-image {
  width: auto;
  max-width: 880px;
  max-height: 226px;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.content {
  width: min(880px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

h1 {
  width: 100%;
  margin: 0;
  font-size: 31px;
  line-height: 1.35;
  letter-spacing: -1.05px;
  font-weight: 800;
  text-wrap: balance;
}

.cta-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
}

.arrow-box {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0b86d9;
  border: 3px solid var(--ink);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.cta-link {
  color: var(--ink);
  padding-inline: 0;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.75px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
  white-space: normal;
}

.cta-link:hover,
.cta-link:focus-visible {
  color: var(--ink);
}

@media (max-width: 560px) {
  .page-shell {
    justify-content: flex-start;
    padding: 24px 32px 88px;
  }

  .passport-image {
    max-width: 100%;
    max-height: 134px;
  }

  h1 {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .cta-link {
    font-size: 26px;
  }

  .arrow-box {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }
}
