:root {
  --primary: #1D94E9;
  --primary-dark: #0F6FC0;
  --primary-soft: #E8F5FF;
  --primary-ink: #0D2B46;
  --bg: #F5FAFE;
  --bg-alt: #EAF2F9;
  --surface: #FFFFFF;
  --surface-alt: #F1F7FC;
  --ink: #0F1D2F;
  --muted: #5C6C7D;
  --line: rgba(16, 36, 58, 0.12);
  --shadow: 0 18px 50px rgba(15, 29, 47, 0.08);
  --shadow-strong: 0 24px 70px rgba(15, 29, 47, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(29, 148, 233, 0.12), transparent 35%),
    radial-gradient(circle at top right, rgba(29, 148, 233, 0.08), transparent 28%),
    linear-gradient(180deg, #FAFDFF 0%, var(--bg) 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 72%);
  opacity: 0.15;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

iframe {
  border: 0;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-shell {
  padding-top: 80px;
}

.hero-title {
  font-size: clamp(3rem, 2.6rem + 2vw, 5rem) !important;
}

.surface {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(248, 251, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 36, 58, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.top-nav.is-scrolled {
  box-shadow: 0 6px 30px rgba(15, 29, 47, 0.08);
}

.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: min(240px, 60vw);
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary-dark);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.74rem 1.1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(29, 148, 233, 0.22);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(29, 148, 233, 0.08);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.34) 0%, rgba(7, 17, 31, 0.64) 58%, rgba(7, 17, 31, 0.82) 100%),
    radial-gradient(circle at 18% 16%, rgba(29, 148, 233, 0.4), transparent 28%),
    radial-gradient(circle at 80% 24%, rgba(29, 148, 233, 0.2), transparent 22%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.hero-copy {
  color: #fff;
  max-width: 34rem;
}

.eyebrow,
.kicker {
  margin: 0 0 0.8rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.kicker {
  color: var(--primary-dark);
}

.hero-copy h1,
.section-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  max-width: 8ch;
}

.hero-copy p {
  margin: 1.2rem 0 0;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 38rem;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-style: italic;
  margin-top: 0.8rem;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
}

.site-banner {
  position: relative;
  z-index: 5;
  background: #FFD735;
  border-bottom: 1px solid rgba(92, 73, 0, 0.14);
  color: #433500;
}

.site-banner-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 0.75rem 0;
}

.site-banner strong {
  font-weight: 800;
}

.hero-actions,
.button-group,
.stack-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 30px rgba(29, 148, 233, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.button.full {
  width: 100%;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.hero-pills span,
.stat-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-panel {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(11, 23, 41, 0.92), rgba(9, 18, 31, 0.98));
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.hero-bank-title {
  margin: 0.15rem 0 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 0.95;
}

.hero-panel .bank-head,
.hero-panel .bank-meta {
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel .bank-number {
  color: #FFFFFF;
}

.bank-transfer-title {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-panel-brand {
  padding: 0.4rem 0 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-logo {
  width: min(100%, 360px);
  height: auto;
}

.panel-facts {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.panel-fact {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-fact span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.bank-head,
.bank-meta,
.board-nick,
.data-label {
  color: var(--muted);
}

.panel-fact strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.98rem;
}

.panel-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.panel-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, transform 0.2s ease;
}

.panel-link:hover,
.panel-link:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(29, 148, 233, 0.04), rgba(29, 148, 233, 0.01));
}

.section-header {
  max-width: 42rem;
  margin-bottom: 1.6rem;
}

.section-title {
  font-size: clamp(2.15rem, 4.2vw, 3.7rem);
  color: var(--ink);
}

.section-lead {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 42rem;
}

.grid-2,
.page-hero-grid,
.info-grid,
.feature-grid,
.board-grid,
.statute-grid,
.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.grid-2 {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.copy,
.highlight-card,
.feature-card,
.event-card,
.board-card,
.info-card,
.bank-card,
.statute-section {
  padding: 1.5rem;
}

.copy p + p {
  margin-top: 1rem;
}

.highlight-card {
  background: linear-gradient(180deg, rgba(29, 148, 233, 0.12), rgba(255, 255, 255, 0.88));
}

.highlight-card h3,
.event-card h3,
.bank-card h2,
.statute-section h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1;
}

.highlight-card p,
.event-card p,
.feature-card p,
.board-desc,
.info-card p,
.bank-meta,
.statute-section p,
.statute-section li,
.copy,
.footer-brand p {
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  position: relative;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.feature-icon img {
  width: 26px;
  height: 26px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3,
.board-name {
  margin: 0.9rem 0 0.35rem;
  font-size: 1.15rem;
  line-height: 1.15;
}

.event-card {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.board-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-card {
  background: rgba(255, 255, 255, 0.96);
}

.board-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--primary-soft), #fff);
  border: 1px solid rgba(29, 148, 233, 0.14);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.board-avatar-photo {
  overflow: hidden;
  padding: 0;
}

.board-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-role,
.data-label,
.bank-head,
.statute-section .kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.board-role {
  color: var(--primary-dark);
  margin-top: 1rem;
}

.board-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin-top: 0.3rem;
}

.board-nick {
  display: inline-flex;
  margin-top: 0.2rem;
  color: var(--muted);
}

.board-desc {
  margin: 0.85rem 0 0;
}

.page-hero {
  padding: 4rem 0 1rem;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
}

.page-hero .surface {
  padding: 1.65rem;
}

.pdf-frame {
  min-height: 68vh;
  overflow: hidden;
}

.pdf-frame iframe {
  width: 100%;
  height: 68vh;
  border-radius: calc(var(--radius-xl) - 1px);
  background: #fff;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-single-card {
  max-width: 840px;
  margin: 0 auto;
}

.data-list {
  display: grid;
  gap: 0.15rem;
  margin-top: 1rem;
}

.data-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.data-row:last-child {
  border-bottom: 0;
}

.data-label {
  color: var(--muted);
}

.font-normal-override {
  font-weight: 400 !important;
}

.data-value {
  text-align: right;
  font-weight: 700;
}

.data-value a {
  color: var(--primary-dark);
  text-decoration: none;
}

.data-value a:hover,
.data-value a:focus-visible {
  text-decoration: underline;
}

.bank-card {
  background: linear-gradient(180deg, rgba(29, 148, 233, 0.1), rgba(255, 255, 255, 0.92));
}

.bank-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin: 0.4rem 0 1rem;
}

.bank-head {
  color: var(--muted);
}

.bank-number {
  margin-top: 0.8rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.bank-meta {
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.statute-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.statute-simple {
  max-width: 900px;
  margin: 0 auto;
}

.statute-rendered {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
}

.statute-rendered h1,
.statute-rendered h2,
.statute-rendered h3,
.statute-rendered h4 {
  margin: 1.25rem 0 0.6rem;
  line-height: 1.15;
  color: var(--ink);
}

.statute-rendered h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
}

.statute-rendered h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}

.statute-rendered p {
  margin: 0.45rem 0;
}

.statute-rendered ol,
.statute-rendered ul {
  margin: 0.5rem 0 0.8rem;
  padding-left: 1.35rem;
}

.statute-rendered li {
  margin-bottom: 0.45rem;
}

.statute-rendered code {
  display: inline-block;
  padding: 0.05rem 0.35rem;
  border-radius: 7px;
  background: rgba(29, 148, 233, 0.1);
  color: var(--primary-dark);
}

.statute-rendered pre {
  margin: 0.7rem 0;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  white-space: pre-wrap;
}

.statute-section ol {
  margin: 1rem 0 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.8rem;
}

.statute-section li {
  color: var(--muted);
}

.footer {
  margin-top: 3rem;
  padding: 3rem 0 1.2rem;
  background: #09111E;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 0.8fr));
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-head {
  margin-bottom: 0.9rem;
}

.footer-brand-logo {
  width: min(100%, 320px);
}

.footer-nav h3 {
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer-nav {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding-top: 1.1rem;
  color: rgba(255, 255, 255, 0.46);
}

.footer-note a {
  color: inherit;
  text-decoration: none;
}

.footer-note a:hover,
.footer-note a:focus-visible {
  color: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible,
.fade-up[data-animate="on"] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .page-hero-grid,
  .info-grid,
  .statute-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    gap: 1.6rem;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    min-height: 90px;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 102;
  }

  .nav-links {
    position: fixed;
    display: grid;
    gap: 0;
    padding: 0.4rem 0.75rem 0.85rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .nav-links {
    padding: 0 1rem 1rem 1rem;
    margin: 0;
  }

  .nav-links.is-open {
    max-height: 340px;
    inset: 72px 0 auto;
    background: rgba(248, 251, 255, 0.96);
    border-bottom: 1px solid rgba(16, 36, 58, 0.1);
  }

  .nav-links a {
    padding: 0.95rem 0.75rem;
    border-radius: 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 0.2rem;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 4rem 0 4.5rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-actions,
  .button-group,
  .stack-links,
  .event-card,
  .footer-note {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .panel-link {
    width: 100%;
  }

  .feature-grid,
  .board-grid,
  .statute-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    align-items: flex-start;
  }

  .data-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .data-value {
    text-align: left;
  }

  .pdf-frame iframe {
    height: 54vh;
  }
}

.text-muted {
  color: var(--muted);
}