:root {
  color-scheme: dark;
  --navy: #173654;
  --navy-deep: #102a43;
  --teal: #087e83;
  --ice: #eef5f4;
  --white: #ffffff;
  --muted: #c0d1dc;
  font-family: "Aptos", "Avenir Next", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

html { min-width: 280px; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
}

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1600px);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 60px) clamp(24px, 6vw, 96px);
}

.header { padding-bottom: 36px; }

.wordmark {
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -.045em;
}

.main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  align-items: center;
  gap: clamp(36px, 6vw, 100px);
  padding-block: 32px 64px;
}

.message { position: relative; z-index: 1; }

h1 {
  max-width: 9.5ch;
  margin: 0 0 32px;
  font-size: clamp(52px, 6.5vw, 102px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.055em;
  overflow-wrap: normal;
}

.message p {
  max-width: 31ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.6;
}

.brand-art { padding: 0 0 20px 20px; }

.symbol-field {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1;
  margin-inline: auto;
  isolation: isolate;
  background: var(--ice);
  border-radius: 30% 30% 30% 8%;
}

.symbol-field::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--teal);
  border-radius: inherit;
  transform: translate(-18px, 18px);
}

.symbol-field img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12%;
  object-fit: contain;
  background: var(--ice);
  border-radius: inherit;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding-top: 24px;
  border-top: 1px solid #416078;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer p { margin: 0; }

@media (max-width: 740px) {
  .header { padding-bottom: 28px; }
  .main {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    padding-block: 18px 48px;
  }
  h1 { max-width: 11ch; font-size: clamp(43px, 10.5vw, 72px); margin-bottom: 24px; }
  .message p { max-width: 34ch; }
  .brand-art { justify-self: end; width: min(66%, 280px); padding-bottom: 14px; }
  .symbol-field::before { transform: translate(-12px, 12px); }
  .footer { align-items: flex-start; flex-wrap: wrap; font-size: 13px; }
}

@media (prefers-contrast: more) {
  .message p, .footer { color: var(--white); }
  .footer { border-color: var(--white); }
}

@media print {
  :root { color-scheme: light; }
  body { background: var(--white); color: var(--navy-deep); }
  .page { min-height: auto; padding: 24px; }
  .message p, .footer { color: var(--navy); }
  .brand-art { break-inside: avoid; }
}
