:root {
  --bg1: #0099ffc7;
  --bg2: #a7d7ff;
  --text: #111;
  --muted: #555;
  --line: #cfcfcf;
  --contentMax: 980px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top gradient bar */
.topbar {
  background: linear-gradient(90deg, var(--bg1), var(--bg2));
  padding: 22px 18px;
}
p {
  font-size: 24px;
}

ul,
ol {
  font-size: 18px;
}
.topbar-inner {
  max-width: var(--contentMax);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  line-height: 1.15;
  min-width: 260px;
}

.brand .title {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}

.brand .subtitle {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
}

nav {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 13px;
}

nav a {
  color: #111;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}
nav a:hover {
  border-bottom-color: rgba(0, 0, 0, 0.35);
}

/* Main layout */
main {
  max-width: var(--contentMax);
  margin: 0 auto;
  padding: 70px 18px 90px;
  text-align: center;
  flex: 1;
}

h1 {
  font-weight: 500;
  font-size: 56px;
  margin: 0 0 26px;
}

.announce {
  margin: 0 auto;
  max-width: 720px;
}

.announce h2 {
  font-size: 24px;
  letter-spacing: 0.3px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.announce p.lead {
  margin: 0 0 18px;
  font-size: 20px;
  color: #222;
}

.divider {
  width: 120px;
  height: 1px;
  margin: 18px auto 26px;
  background: var(--line);
}

.box {
  display: inline-block;
  text-align: left;
  max-width: 520px;
  width: 100%;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 13px;
  color: #1a1a1a;
}

.box .label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

ol {
  margin: 0;
  padding-left: 18px;
  line-height: 1.65;
}

.box a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.note {
  margin-top: 34px;
  font-size: 22px;
  color: #222;
}

/* Footer */
footer {
  background: linear-gradient(90deg, var(--bg1), var(--bg2));
  padding: 22px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-size: 13px;
  color: #111;
}

.footer-inner {
  max-width: var(--contentMax);
  margin: 0 auto;
  display: grid;
  gap: 6px;
  text-align: left;
}

.footer-title {
  font-weight: 700;
}

.footer-muted {
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
}

.footer-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.footer-row ion-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.65);
}

.footer-muted a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-muted a:hover {
  color: rgba(0, 0, 0, 0.85);
}

.footer-credit {
  margin-top: 14px;
  font-size: 11px;
  opacity: 0.65;
  text-align: right;
}

.footer-credit a {
  color: inherit;
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 820px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    justify-content: flex-start;
  }
  main {
    padding: 46px 16px 70px;
  }
  h1 {
    font-size: 42px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }
  .announce h2 {
    font-size: 18px;
  }
  .announce p.lead {
    font-size: 16px;
  }
  .note {
    font-size: 18px;
  }
}
