:root {
  --bg: #e8eef4;
  --ink: #122033;
  --muted: #647386;
  --panel: #ffffff;
  --line: #d6dee8;
  --navy: #071f3f;
  --accent: #e85d1c;
  --gold: #f0c448;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.65) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
.hub-page {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0 38px;
}
.hub-hero {
  min-height: 310px;
  display: grid;
  align-items: end;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7,31,63,.96), rgba(7,31,63,.68), rgba(7,31,63,.24)),
    var(--hero-image) center / cover no-repeat;
  border-left: 7px solid var(--accent);
  box-shadow: 0 18px 44px rgba(7,31,63,.18);
}
.hub-hero p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}
.hub-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5.6rem);
  line-height: .92;
  text-transform: uppercase;
}
.hub-hero span {
  display: block;
  max-width: 680px;
  margin-top: 14px;
  color: #e5edf6;
  font-size: 1.1rem;
  font-weight: 800;
}
.hub-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.hub-button {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 20px;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  box-shadow: 0 10px 26px rgba(18,32,51,.08);
}
.hub-button strong {
  font-size: 1.45rem;
  line-height: 1.08;
  text-transform: uppercase;
}
.hub-button span {
  color: var(--muted);
  font-weight: 800;
}
.hub-button--primary {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  border-top-color: var(--gold);
}
.hub-button--primary span { color: #dce7f2; }
.hub-button--gold {
  background: var(--gold);
  border-color: #d5a712;
}
.hub-note {
  margin-top: 16px;
  padding: 15px 18px;
  color: #fff;
  background: var(--navy);
  border-left: 6px solid var(--gold);
  font-weight: 800;
}

@media (max-width: 820px) {
  .hub-page { width: min(100% - 14px, 1180px); padding-top: 8px; }
  .hub-hero { min-height: 255px; padding: 18px; }
  .hub-actions { grid-template-columns: 1fr; }
  .hub-button { min-height: 104px; }
}
