@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --brand-900: #0b2545;
  --brand-700: #1b5bb3;
  --brand-500: #2c7be5;
  --brand-100: #e6f0ff;
  --accent-600: #f28c28;
  --ink-900: #14151f;
  --ink-700: #3a3f52;
  --ink-500: #5f6678;
  --surface: #ffffff;
  --surface-muted: #f3f5f8;
  --shadow-strong: 0 30px 60px rgba(20, 21, 31, 0.18);
  --shadow-soft: 0 20px 40px rgba(20, 21, 31, 0.12);
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink-700);
  background-color: #f2f0eb;
  background-image:
    radial-gradient(circle at 8% 10%, rgba(44, 123, 229, 0.15), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(242, 140, 40, 0.18), transparent 45%),
    linear-gradient(180deg, #f8f6f2 0%, #eef1f7 100%);
  font-size: 18px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--brand-900);
  letter-spacing: -0.01em;
}

a {
  color: var(--brand-700);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

a:hover,
a:focus {
  color: var(--brand-900);
  text-decoration-thickness: 0.12em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent-600);
  outline-offset: 3px;
  border-radius: 4px;
}

#page-wrapper {
  background: transparent;
}

#header {
  background: rgba(14, 18, 28, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

#header h1 a {
  border: 0;
}

#header h1 img {
  height: 150px;
  width: auto;
  display: block;
  margin-top: 0;
}

#header nav > ul > li > a:not(.button) {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-hero {
  background-image:
    linear-gradient(110deg, rgba(11, 37, 69, 0.95), rgba(11, 37, 69, 0.4)),
    url("../../images/banner.jpg");
  background-position: center;
  background-size: cover;
  padding: 11em 0 10em 0;
}

.site-hero .hero-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2em;
  background: rgba(8, 18, 34, 0.65);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  padding: 2.5em 2.5em;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5em;
}

.site-hero h2 {
  font-size: 3.6em;
  color: #fff;
  margin-bottom: 0.4em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero-lede {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2em;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-bottom: 1.5em;
}

.hero-news {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.75);
}

.hero-news a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.6em 2em;
  line-height: 1;
  text-transform: none;
  border: 0;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.primary,
input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary {
  background: var(--brand-500);
  color: #fff !important;
}

.button.primary:hover {
  background: var(--brand-700);
}

.button.alt {
  background: #fff;
  color: var(--brand-700) !important;
}

.site-hero .button.alt {
  background: #fff;
  color: var(--brand-900) !important;
  box-shadow: var(--shadow-strong);
}

#banner .button.alt {
  background: #fff;
  color: var(--brand-900) !important;
}

#banner .button.alt:hover,
#banner .button.alt:focus {
  background: #f5f7fb;
  color: var(--brand-900) !important;
}

.box {
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.section-title {
  text-align: left;
}

.section-title p {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink-500);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.notice {
  border-radius: 20px;
  padding: 2em;
  margin-bottom: 2em;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.notice h3 {
  color: #fff;
  margin-bottom: 0.8em;
}

.notice--alert {
  background: linear-gradient(135deg, #9a2318, #c83426);
}

.notice--success {
  background: linear-gradient(135deg, #16543e, #1f6a4d);
}

.notice--success a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.notice--success a:hover,
.notice--success a:focus {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.9);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  position: relative;
}

.feature-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.sponsor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  align-items: center;
  justify-content: center;
  padding: 1.5em 0;
}

.sponsor-strip img {
  max-height: 70px;
  width: auto;
  filter: grayscale(10%);
  opacity: 0.9;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
}

.info-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2em;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin-bottom: 0.6em;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  padding: 0.6em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ink-700);
}

.info-list li:last-child {
  border-bottom: 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5em;
}

.download-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5em;
  box-shadow: var(--shadow-soft);
}

.download-card h3 {
  margin-bottom: 0.8em;
}

.download-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.download-list li {
  margin-bottom: 0.75em;
}

.download-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border-bottom: 0;
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cta-bar {
  background: linear-gradient(120deg, #2c7be5, #5aa1ff);
  color: #fff;
  border-radius: 24px;
  padding: 2.5em;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.cta-bar a {
  color: #fff;
}

.location-section {
  margin-top: 2.5em;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
  background: #fff;
  color: var(--brand-900);
  padding: 0.75em 1.25em;
  z-index: 20000;
  border-radius: 0 0 10px 0;
}

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

.highlight-card h3 {
  color: var(--brand-900);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-bottom: 2em;
}

.footer-logos img {
  max-height: 70px;
  width: auto;
  opacity: 0.85;
}

.footer-note {
  color: var(--ink-500);
}

.reveal {
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media screen and (max-width: 980px) {
  .site-hero {
    padding: 9em 0 7em 0;
  }

  .site-hero h2 {
    font-size: 2.6em;
  }
}

@media screen and (max-width: 736px) {
  #header h1 img {
    height: 100px;
    margin-top: 0;
  }

  .site-hero {
    padding: 7em 0 6em 0;
  }

  .hero-actions {
    flex-direction: column;
  }
}
