:root {
  --blue-deep: #062963;
  --blue: #0b55b3;
  --blue-bright: #248cf0;
  --green: #19e79a;
  --white: #fff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--white);
  background: var(--blue-deep);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.topbar {
  position: relative;
  z-index: 10;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 18px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .12);
}

.brand { width: auto; height: 42px; object-fit: contain; }

.menu-button {
  display: grid;
  gap: 4px;
  width: 40px;
  height: 40px;
  place-content: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-button span { width: 18px; height: 2px; border-radius: 2px; background: #111; }

.hero {
  position: relative;
  min-height: calc(100svh - 58px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 45% 52%, rgba(40, 151, 255, .34), transparent 34%),
    linear-gradient(145deg, var(--blue-deep) 4%, #0b438f 44%, var(--blue-bright) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 74%;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  transform: rotate(-38deg);
}

.hero::before { top: 7%; left: -13%; box-shadow: 0 21px 0 rgba(255, 255, 255, .055); }
.hero::after { right: -28%; bottom: 19%; width: 65%; }

.decoration {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  transform: rotate(-38deg);
}

.decoration-one { width: 220px; height: 38px; top: 23%; right: -88px; }
.decoration-two { width: 260px; height: 44px; bottom: -15px; left: -70px; }

.content {
  width: min(100%, 540px);
  min-height: calc(100svh - 58px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 24px 28px;
  text-align: center;
}

.officer {
  width: min(82vw, 330px);
  height: auto;
  max-height: 51svh;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 10px 16px rgba(0, 18, 48, .24));
}

.copy { width: 100%; margin-top: -7px; }

h1 {
  margin: 0;
  font-size: clamp(2rem, 8.4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  text-shadow: 0 2px 5px rgba(0, 25, 70, .22);
}

.accent { width: 100%; max-width: 365px; height: 5px; margin: 7px auto 12px; border-radius: 8px; background: var(--green); }

p { margin: 0 auto; max-width: 430px; font-size: clamp(.89rem, 3.6vw, 1rem); line-height: 1.65; }
.thanks { margin-top: 24px; }

.help-panel {
  position: fixed;
  z-index: 20;
  top: 66px;
  right: 12px;
  width: min(310px, calc(100vw - 24px));
  padding: 18px;
  color: #163052;
  text-align: left;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 19, 57, .35);
}

.help-panel p { margin: 6px 0 14px; font-size: .9rem; line-height: 1.5; }
.help-panel a { display: block; padding: 10px 14px; color: #fff; font-weight: 700; text-align: center; text-decoration: none; border-radius: 9px; background: #0aa86e; }

@media (min-width: 760px) {
  .topbar { padding-inline: max(24px, calc((100vw - 1040px) / 2)); }
  .content { width: min(92%, 1000px); flex-direction: row; gap: 38px; text-align: left; }
  .officer { width: min(42vw, 420px); max-height: 74svh; }
  .copy { max-width: 470px; margin-top: 0; }
  .accent, p { margin-left: 0; }
  .thanks { margin-top: 26px; }
}

@media (max-height: 650px) and (max-width: 759px) {
  .content { justify-content: flex-start; padding-top: 9px; }
  .officer { max-height: 43svh; }
  .thanks { margin-top: 13px; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }
