* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: #0a3740;
  background: #FAFAFA;
}
.landing-body::before {
  display: none;
}
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(9, 94, 106, 0.1);
}
.site-topbar-inner,
.landing-shell,
.subpage-shell {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0a3740;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.site-brand span {
  display: block;
  line-height: 1.2;
  white-space: pre-line;
}
.site-brand #navTitle {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: normal;
}
.site-brand-meta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: rgba(10, 55, 64, 0.52);
}
.site-brand-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #0a3740;
}
.site-brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(17, 127, 141, 0.16);
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}
.site-nav a {
  color: rgba(10, 55, 64, 0.84);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}
.site-nav a:hover,
.site-brand:hover,
.text-link:hover { color: #117f8d; }

.landing-shell { padding: 34px 0 72px; }
.hero-section {
  display: grid;
  gap: 28px;
}
.banner-block-top {
  margin-top: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 360px);
  gap: 24px;
  align-items: start;
}
.home-stack {
  display: grid;
  gap: 18px;
  width: 100%;
}
.hero-copy,
.hero-side-card,
.intro-card,
.board-card,
.contact-card,
.cta-panel,
.subpage-header,
.guideline-card,
.timeline-item,
.announcement-card,
.theme-card {
  border: 1px solid rgba(10, 108, 121, 0.11);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 34px rgba(9, 73, 82, 0.08);
}
.hero-copy {
  padding: 26px 28px;
  border-radius: 26px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    'eyebrow'
    'description'
    'actions';
  column-gap: 0;
  row-gap: 14px;
  align-items: start;
}
.hero-eyebrow,
.section-kicker,
.side-card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(17, 127, 141, 0.1);
  color: #0b6a76;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-title,
.section-head h2,
.subpage-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.04em;
  color: #082d35;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  max-width: 11ch;
  white-space: pre-line;
  grid-area: title;
}
.hero-description,
.section-description,
.subpage-description,
.contact-note,
.guideline-card p,
.timeline-item p,
.announcement-card p,
.theme-card p {
  color: rgba(8, 45, 53, 0.8);
  line-height: 1.75;
}
.hero-description {
  margin: 0;
  max-width: 100%;
  font-size: 1rem;
  text-align: justify;
  text-justify: inter-word;
  grid-area: description;
  inline-size: 100%;
}
.hero-actions-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
  grid-area: actions;
}
.hero-eyebrow {
  grid-area: eyebrow;
}
.hero-pill,
.text-link,
.pill-link,
.announcement-link {
  text-decoration: none;
  font-weight: 800;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
}
.hero-pill-secondary {
  border: 1px solid rgba(17, 127, 141, 0.18);
  color: #0b6270;
  background: rgba(255, 255, 255, 0.95);
}
.hero-pill-primary,
.pill-link {
  color: #fffef9;
  background:
    radial-gradient(circle at top right, rgba(255, 223, 129, 0.8), transparent 34%),
    linear-gradient(145deg, #117f8d 0%, #0d6471 42%, #f29a3b 118%);
}
.hero-side-card {
  padding: 20px;
  border-radius: 24px;
}
.hero-side-card-below {
  width: 100%;
  max-width: none;
}
.hero-timeline-preview {
  display: grid;
  gap: 10px;
}
.hero-preview-item {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(8, 45, 53, 0.08);
}
.hero-preview-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.hero-preview-date,
.timeline-date,
.announcement-date {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  color: #0b6a76;
}
.hero-preview-item h3,
.timeline-item h3,
.announcement-card h3,
.theme-card h3,
.board-card h3,
.guideline-card h3 {
  margin: 0;
  color: #082d35;
}
.hero-preview-item h3 {
  font-size: 0.98rem;
  line-height: 1.4;
}
.banner-block { margin-top: -2px; }
.banner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 5;
  height: auto;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(9, 94, 106, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(217, 248, 248, 0.92)),
    linear-gradient(135deg, #dff9fb, #f3fffe);
  box-shadow: 0 22px 40px rgba(9, 73, 82, 0.08);
}
.banner-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.banner-mobile-image {
  display: none;
}
.banner-mobile-video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.banner-frame img[hidden],
.banner-video[hidden],
.banner-placeholder[hidden] {
  display: none !important;
}
.banner-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(116, 220, 228, 0.75), rgba(177, 240, 240, 0.86)),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.35), transparent 20%);
}
@media (max-width: 768px) {
  .banner-frame {
    aspect-ratio: 16 / 9;
  }

  .banner-mobile-video {
    display: block;
    object-fit: contain;
  }

  .banner-frame #homeBannerImage,
  .banner-frame .banner-video,
  .banner-frame .banner-placeholder {
    display: none !important;
  }
}
.intro-card {
  padding: 22px 24px;
  border-radius: 24px;
  width: 100%;
}
.intro-card h2 {
  margin: 0 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
}
.intro-card p {
  margin: 0;
  line-height: 1.8;
}
.content-section {
  padding-top: 44px;
}
.section-page {
  padding: 28px 0 56px;
}
.section-page-content {
  padding-top: 10px;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head.stacked {
  flex-direction: column;
  align-items: flex-start;
}
.section-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}
.section-description {
  margin: 0;
  max-width: 76ch;
}
.timeline {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 22px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(12, 111, 124, 0.55), rgba(242, 143, 59, 0.5));
}
.timeline-item {
  position: relative;
  padding: 16px 18px 16px 24px;
  border-radius: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -21px;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a6b4, #f28f3b);
  box-shadow: 0 0 0 6px rgba(22, 166, 180, 0.12);
}
.board-card,
.contact-card,
.cta-panel {
  padding: 22px 24px;
  border-radius: 24px;
}
.boards-stack {
  display: grid;
  gap: 18px;
}
.board-card-head {
  margin-bottom: 10px;
}
.board-card-head h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.3;
}
.board-table {
  width: 100%;
  border-collapse: collapse;
}
.board-table th,
.board-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(8, 45, 53, 0.08);
  text-align: left;
  font-size: 0.96rem;
}
.board-table th {
  color: #0b6a76;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.theme-grid,
.announcement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.theme-card,
.announcement-card,
.guideline-card {
  padding: 20px;
  border-radius: 22px;
}
.theme-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}
.theme-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}
.theme-text,
.theme-list {
  margin: 0;
  color: rgba(8, 45, 53, 0.82);
  line-height: 1.75;
}
.theme-list {
  padding-left: 1.15rem;
  display: grid;
  gap: 8px;
}
.theme-list li::marker {
  color: #0b6a76;
}
.guideline-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guideline-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}
.guideline-text,
.guideline-list {
  margin: 0;
  color: rgba(8, 45, 53, 0.82);
  line-height: 1.75;
}
.guideline-list {
  padding-left: 1.15rem;
  display: grid;
  gap: 8px;
}
.guideline-list li::marker {
  color: #0b6a76;
}
.announcement-link {
  display: inline-flex;
  margin-top: 12px;
  color: #0b6a76;
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cta-panel-strong {
  background:
    radial-gradient(circle at top right, rgba(255, 223, 129, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.88);
}
.contact-line {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 10px;
}
.contact-line strong {
  min-width: 72px;
}
.landing-subpage { min-height: 100vh; }
.subpage-shell { padding: 28px 0 56px; }
.subpage-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.text-link { color: #0b6270; }
.pill-link { padding: 12px 18px; border-radius: 999px; }
.subpage-header {
  padding: 24px 26px;
  border-radius: 28px;
}
.guideline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .site-topbar-inner,
  .cta-panel,
  .hero-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .site-topbar-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    justify-content: flex-start;
  }
  .theme-grid,
  .announcement-grid,
  .guideline-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    max-width: none;
  }
  .hero-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      'eyebrow'
      'description'
      'actions';
    column-gap: 0;
  }
  .hero-side-card-below {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-topbar-inner,
  .landing-shell,
  .subpage-shell {
    width: min(100vw - 24px, 1180px);
  }
  .hero-copy,
  .hero-side-card,
  .intro-card,
  .board-card,
  .contact-card,
  .cta-panel,
  .subpage-header,
  .guideline-card,
  .timeline-item,
  .announcement-card,
  .theme-card {
    padding: 18px;
  }
  .timeline {
    padding-left: 18px;
  }
  .timeline-item::before {
    left: -16px;
  }
}
