:root {
  color: #10243e;
  background: #98dcd3;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --navy: #10243e;
  --cream: #fffdf0;
  --mint: #98dcd3;
  --lime: #bde85c;
  --yellow: #ffd568;
  --shadow: #3b7b78;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--mint);
  background-image: url("/assets/illustrations/mint-grid.png");
  background-size: 340px 340px;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: 4px; }
button { color: inherit; font: inherit; }
.shell { width: min(960px, calc(100% - 30px)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 50; padding: 10px 14px; border: 3px solid var(--navy); border-radius: 10px; background: var(--yellow); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.info-header {
  display: flex;
  align-items: center;
  min-height: 72px;
  margin-top: 15px;
  padding: 9px 15px;
  border: 3px solid var(--navy);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 6px 7px 0 var(--shadow);
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 900; }
.brand img { width: 48px; height: 48px; border-radius: 9px; image-rendering: pixelated; }
.info-nav { display: flex; gap: 15px; margin-left: auto; font-size: 12px; font-weight: 800; }
.language-switch { display: flex; gap: 2px; margin-left: 18px; padding-left: 13px; border-left: 1px solid #d7d9cb; }
.language-switch button { min-width: 36px; min-height: 36px; border: 0; border-radius: 999px; background: transparent; font-size: 11px; font-weight: 900; cursor: pointer; }
.language-switch button.is-active { color: white; background: var(--navy); }

.info-card {
  margin-top: 28px;
  margin-bottom: 26px;
  padding: clamp(28px, 6vw, 64px);
  border: 3px solid var(--navy);
  border-radius: 24px;
  outline: 1px dashed rgba(16, 36, 62, 0.4);
  outline-offset: -10px;
  background: var(--cream);
  box-shadow: 8px 9px 0 var(--shadow);
}

.info-eyebrow { margin: 0 0 12px; color: #276b66; font-size: 12px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 7vw, 68px); line-height: 1; letter-spacing: -2px; }
.info-lead { max-width: 760px; margin: 19px 0 36px; color: #31516b; font-size: 17px; font-weight: 650; line-height: 1.65; }
.info-sections { display: grid; gap: 14px; }
.info-sections section { padding: 20px 22px; border: 2px solid var(--navy); border-radius: 15px; background: #fff9df; box-shadow: 3px 4px 0 rgba(16, 36, 62, 0.15); }
.info-sections h2 { margin: 0 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; }
.info-sections p { margin: 0; color: #31516b; font-size: 14px; line-height: 1.7; }
.info-sections a { font-weight: 900; }
.info-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.info-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 9px 17px; border: 2px solid var(--navy); border-radius: 11px; background: white; box-shadow: 3px 3px 0 rgba(16, 36, 62, 0.16); font-size: 13px; font-weight: 900; text-decoration: none; }
.info-actions a.primary-action { background: var(--lime); }
.info-actions a:hover { background: var(--yellow); transform: translate(-1px, -1px); }
.info-footer { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 24px; padding: 15px 20px; border: 3px solid var(--navy); border-radius: 16px; background: var(--cream); box-shadow: 4px 5px 0 var(--shadow); font-size: 11px; font-weight: 800; }
.info-footer p { margin: 0; }
.info-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 16px; }
:focus-visible { outline: 3px solid #ff9e4a; outline-offset: 3px; }

@media (max-width: 720px) {
  .shell { width: calc(100% - 18px); }
  .info-header { min-height: 64px; padding: 7px 9px; border-width: 2px; }
  .brand { gap: 7px; font-size: 20px; }
  .brand img { width: 42px; height: 42px; }
  .info-nav { display: none; }
  .language-switch { margin-left: auto; padding-left: 0; border-left: 0; }
  .language-switch button { min-width: 33px; min-height: 35px; padding: 4px; font-size: 10px; }
  .info-card { margin-top: 18px; padding: 32px 20px; border-width: 2px; border-radius: 20px; outline-offset: -7px; box-shadow: 5px 6px 0 var(--shadow); }
  h1 { font-size: 42px; letter-spacing: -1px; }
  .info-lead { margin-bottom: 26px; font-size: 15px; }
  .info-sections section { padding: 17px; }
  .info-footer { display: block; text-align: center; }
  .info-footer nav { justify-content: center; margin-top: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
