@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #051F34;
  --surface: rgba(6, 36, 60, 0.5);
  --ink: #fff;
  --body: rgba(255, 255, 255, 0.85);
  --muted: rgba(255, 255, 255, 0.6);
  --dim: rgba(255, 255, 255, 0.35);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #4FB0F0;
  --sky-top: #2E9CE2;
  --sky-deep: #0F5A96;
}
html { background: var(--bg); }
body {
  margin: 0;
  position: relative;
  min-height: 100vh;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 720px;
  z-index: -1;
  background: linear-gradient(180deg, #1C6494 0%, #1B6292 4%, #1A6190 8%, #195F8E 12%, #195E8D 17%, #185C8B 21%, #175B89 25%, #175988 29%, #165886 33%, #155684 38%, #145582 42%, #145380 46%, #13507D 50%, #114C77 54%, #0F466F 58%, #0E4066 62%, #0C3A5D 67%, #0A3353 71%, #082E4B 75%, #072843 79%, #06243C 83%, #052138 88%, #051F35 92%, #051F34 96%, #051F34 100%);
}
.page { max-width: 640px; margin: 0 auto; padding: 28px 24px 72px; }
.top { display: flex; align-items: center; margin-bottom: 44px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.mark {
  --s: 40px;
  display: inline-block;
  width: var(--s); height: var(--s);
  border-radius: calc(var(--s) * 0.225);
  object-fit: cover;
  vertical-align: middle;
}
.mark.large { --s: 84px; }
.brand .name { font-size: 20px; font-weight: 600; letter-spacing: -0.2px; }
h1 { font-size: 34px; font-weight: 600; letter-spacing: -0.5px; line-height: 1.15; margin: 0 0 6px; }
.sub { color: var(--muted); font-size: 14px; margin: 0 0 40px; }
h2 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--dim); text-transform: uppercase;
  margin: 32px 0 12px;
}
p { color: var(--body); margin: 0 0 14px; }
a { color: var(--accent); }
strong { color: var(--ink); font-weight: 600; }
.box {
  background: var(--surface);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 0 0 12px;
}
.box p { margin: 0; }
.box p + p { margin-top: 8px; }
.rows { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.row span:last-child { color: var(--dim); font-weight: 400; }
.cta {
  display: inline-block;
  padding: 14px 22px;
  background: linear-gradient(180deg, var(--sky-top), var(--sky-deep));
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  margin: 8px 0 24px;
}
.hero { text-align: center; padding: 24px 0 8px; }
.hero .mark { margin: 0 auto 20px; }
.hero h1 { font-size: 40px; }
.hero p { color: var(--muted); max-width: 440px; margin: 0 auto 36px; }
footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 0.5px solid var(--line);
  color: var(--dim);
  font-size: 12px;
  display: flex; flex-wrap: wrap; gap: 6px 16px;
}
footer a { color: var(--dim); text-decoration: none; }
footer a:hover { color: var(--muted); }
