.hero {
  min-height: calc(100svh - 86px);
  position: relative;
  display: flex;
  align-items: center;
  background: #102c32;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 30, 34, 0.9) 0%,
    rgba(6, 30, 34, 0.67) 43%,
    rgba(6, 30, 34, 0.12) 78%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
  color: #fff;
}
.hero-copy {
  width: min(800px, 100%);
  animation: hero-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero .eyebrow {
  color: #83e4d8;
}
.hero h1 {
  max-width: 800px;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.15em;
}
.hero-scroll:after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.5);
  margin: 10px auto 0;
  animation: pulse 1.8s infinite;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulse {
  50% {
    transform: scaleY(0.35);
    transform-origin: top;
  }
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.quick-links a {
  padding: 34px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  transition: 0.2s;
}
.quick-links a:last-child {
  border: 0;
}
.quick-links a:hover {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.quick-links span {
  font-size: 24px;
}
.list-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
}
.notice-list {
  border-top: 2px solid var(--ink);
}
.notice-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.notice-list time {
  color: var(--muted);
  font-size: 13px;
}
.event-strip {
  display: grid;
  gap: 14px;
}
.event-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 22px;
}
.event-row strong {
  font-size: 18px;
}
.badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.badge-closed {
  background: #f0f2f2;
  color: #66757b;
}
.badge-RA {
  background: #eaf3fb;
  color: var(--blue);
}
.badge-BD {
  background: #eef8ea;
  color: var(--green);
}
.badge-GS {
  background: #fff3e8;
  color: #b86615;
}
.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.division-grid a {
  background: #fff;
  padding: 58px 38px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: 0.25s;
}
.division-grid a:hover {
  background: var(--teal-deep);
  color: #fff;
}
.division-mark {
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
  color: var(--teal);
  margin-bottom: auto;
}
.division-grid p {
  color: var(--body);
}
.division-grid a:hover p {
  color: rgba(255, 255, 255, 0.7);
}
.brand-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.brand-wall div {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--body);
}
.brand-wall img {
  width: calc(100% - 34px);
  height: 68px;
  object-fit: contain;
  object-position: center;
}
