:root {
  color-scheme: dark;
  --blue: #002354;
  --blue-deep: #001638;
  --blue-light: #0b3b70;
  --orange: #ff7900;
  --orange-light: #ff9d3f;
  --white: #fff;
  --muted: #b9c9df;
  --card: rgba(255, 255, 255, .075);
  --card-border: rgba(255, 255, 255, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% -5%, rgba(255, 121, 0, .17), transparent 28rem),
    radial-gradient(circle at 105% 88%, rgba(255, 121, 0, .10), transparent 24rem),
    linear-gradient(150deg, var(--blue-deep) 0%, var(--blue) 48%, #001c45 100%);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: .28;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .2) .65px, transparent .65px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
}

.ambient::after {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(255, 121, 0, .12);
  border-radius: inherit;
}

.ambient--top { top: -140px; right: -100px; }
.ambient--bottom { bottom: -170px; left: -130px; width: 300px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--blue-deep);
  background: var(--white);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.page-shell {
  width: min(100% - 32px, 580px);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding: max(34px, env(safe-area-inset-top)) 0 max(24px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
}

.brand-header { text-align: center; }

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, .25));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  padding: 7px 11px;
  color: #ffd1aa;
  border: 1px solid rgba(255, 121, 0, .28);
  border-radius: 999px;
  background: rgba(255, 121, 0, .09);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 121, 0, .9);
}

h1 {
  margin: 0;
  font-size: clamp(1.75rem, 7vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 600;
}

h1 strong { color: var(--orange-light); font-weight: 800; }

.brand-header > p {
  margin: 10px 0 25px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.6;
}

.link-grid { display: grid; gap: 11px; }

.action-card {
  min-height: 78px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  color: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 12px 28px rgba(0, 11, 31, .16);
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.action-card--featured {
  color: #172338;
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  box-shadow: 0 14px 34px rgba(255, 121, 0, .22);
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .09);
}

.action-card--featured .icon-box {
  border-color: rgba(0, 35, 84, .08);
  background: rgba(255, 255, 255, .24);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-copy { min-width: 0; display: block; }
.card-copy small, .card-copy b { display: block; }
.card-copy small { margin-bottom: 2px; color: var(--muted); font-size: .72rem; font-weight: 600; }
.card-copy b { overflow: hidden; font-size: .98rem; line-height: 1.35; text-overflow: ellipsis; }
.action-card--featured .card-copy small { color: rgba(0, 26, 63, .76); }

.arrow {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  font-size: 1.06rem;
  transition: transform .22s ease, background .22s ease;
}

.action-card--featured .arrow { background: rgba(255, 255, 255, .25); }

.action-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 121, 0, .52);
  background: rgba(255, 255, 255, .11);
  box-shadow: 0 16px 32px rgba(0, 11, 31, .25);
}

.action-card--featured:hover { background: linear-gradient(135deg, #ffac5a, #ff7900); }
.action-card:hover .arrow { transform: translate(2px, -2px); background: rgba(255, 255, 255, .15); }
.action-card:active { transform: scale(.985); }
.action-card:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

footer {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #91a8c6;
  font-size: .74rem;
  font-weight: 600;
}

footer p { margin: 0; }
.footer-mark { width: 20px; height: 20px; display: grid; place-items: center; color: var(--blue); background: var(--orange); border-radius: 6px; font-size: .7rem; font-weight: 900; }

@media (min-width: 700px) {
  .page-shell { width: min(100% - 48px, 700px); padding-top: 42px; }
  .brand-logo { width: 185px; }
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .action-card--featured { grid-column: 1 / -1; }
  .action-card:last-child { grid-column: 1 / -1; }
  .action-card { min-height: 84px; }
}

@media (max-width: 370px) {
  .page-shell { width: min(100% - 24px, 580px); }
  .action-card { grid-template-columns: 44px minmax(0, 1fr) 28px; gap: 10px; padding-inline: 11px; }
  .icon-box { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
