:root {
  --bg: #021228;
  --bg-2: #032345;
  --panel: rgba(2, 29, 58, 0.8);
  --panel-strong: rgba(4, 39, 74, 0.95);
  --line: rgba(71, 213, 255, 0.25);
  --text: #eaf8ff;
  --muted: #98b7ce;
  --accent: #00d3ff;
  --accent-2: #39f0df;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, #0a4f92 0%, rgba(10, 79, 146, 0) 45%),
    radial-gradient(circle at 90% 110%, #016f9e 0%, rgba(1, 111, 158, 0) 42%),
    linear-gradient(145deg, var(--bg) 0%, #001022 40%, #012f4d 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 179, 236, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 179, 236, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  z-index: -1;
}

.bg-orb {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
}

.orb-1 {
  top: 10vh;
  right: -90px;
  background: rgba(0, 205, 255, 0.2);
  animation: float 10s ease-in-out infinite;
}

.orb-2 {
  left: -110px;
  bottom: 10vh;
  background: rgba(42, 236, 223, 0.14);
  animation: float 12s ease-in-out infinite reverse;
}

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(1, 16, 35, 0.72);
  border-bottom: 1px solid rgba(110, 188, 229, 0.22);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.32rem 0.6rem;
  border-radius: 8px;
  color: #01253f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.brand-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-nav {
  display: inline-flex;
  gap: 0.4rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: var(--line);
  color: var(--accent-2);
  background: rgba(3, 39, 69, 0.8);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(0, 47, 84, 0.7);
  color: var(--text);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}

.hero {
  padding: 5.6rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: var(--accent-2);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 16ch;
}

.lead {
  color: var(--muted);
  max-width: 50ch;
  margin: 1rem 0 0;
  font-size: 1.06rem;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  color: #002841;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(5, 36, 65, 0.55);
}

.btn-ghost:hover {
  border-color: rgba(85, 228, 255, 0.55);
}

.btn-pdf {
  color: #eaf8ff;
  font-weight: 700;
  border-color: rgba(92, 214, 255, 0.5);
  background: linear-gradient(135deg, #0a355d, #0f5f8a);
}

.btn-pdf:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.hero-panel,
.panel {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(6, 49, 90, 0.75), rgba(1, 17, 37, 0.84));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.3rem;
}

.hero-panel h2 {
  font-size: 2rem;
  margin-bottom: 0.95rem;
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.hero-panel li {
  background: rgba(2, 26, 48, 0.85);
  border: 1px solid rgba(80, 173, 220, 0.23);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.hero-panel li span {
  color: var(--muted);
}

.section {
  padding: 1.3rem 0 2rem;
}

.section-alt .panel {
  background: linear-gradient(160deg, rgba(5, 39, 70, 0.94), rgba(2, 21, 40, 0.95));
}

.section-head {
  margin-bottom: 0.9rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  text-transform: uppercase;
}

.panel {
  padding: 1.2rem;
}

.panel > p {
  margin-top: 0;
  color: var(--muted);
}

.panel a {
  color: var(--accent-2);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.grid-cards.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  border-radius: 14px;
  border: 1px solid rgba(88, 171, 218, 0.24);
  background: var(--panel-strong);
  padding: 1rem;
}

.info-card h3 {
  font-size: 1.45rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.sponsor-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.sponsor-logo-shell {
  height: 92px;
  border-radius: 12px;
  border: 1px solid rgba(113, 199, 240, 0.25);
  background:
    linear-gradient(160deg, #ffffff, #f6fbff),
    radial-gradient(circle at 50% 25%, rgba(58, 220, 255, 0.12), rgba(58, 220, 255, 0));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
}

.sponsor-logo {
  width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.1));
}

.info-card p + p {
  margin-top: 0.65rem;
}

.subhead {
  font-size: 1.8rem;
  margin: 1rem 0 0.7rem;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(88, 171, 218, 0.24);
  border-radius: 12px;
}

.module-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: rgba(3, 33, 60, 0.82);
}

.module-table th,
.module-table td {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid rgba(94, 175, 220, 0.2);
  vertical-align: top;
  text-align: left;
}

.module-table th {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(1, 23, 43, 0.95);
}

.module-table tbody tr:hover {
  background: rgba(6, 52, 92, 0.7);
}

.note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.clean-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.docs-list {
  margin-top: 0;
}

.badge-old {
  border: 1px solid rgba(71, 213, 255, 0.35);
  border-radius: 10px;
  background: rgba(3, 43, 76, 0.78);
  padding: 0.65rem 0.8rem;
}

.bando-rows p {
  margin: 0;
  padding: 0.64rem 0;
  border-top: 1px solid rgba(94, 175, 220, 0.2);
}

.bando-rows p:first-child {
  border-top: 0;
}

.sponsor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sponsor-strip span {
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(78, 204, 255, 0.32);
  border-radius: 999px;
  background: rgba(2, 32, 58, 0.9);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.site-footer {
  margin-top: 2.6rem;
  border-top: 1px solid rgba(67, 172, 228, 0.2);
  background: rgba(0, 17, 35, 0.9);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
}

.footer-wrap a {
  color: var(--accent-2);
  text-decoration: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-cards,
  .grid-cards.two-col {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 1rem;
    left: 1rem;
    padding: 0.7rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(1, 20, 42, 0.96);
    display: none;
    flex-direction: column;
    gap: 0.3rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}
