:root {
  --deep-ocean: #063b5c;
  --ocean: #087aa1;
  --turquoise: #20b8bb;
  --seafoam: #dff8f3;
  --sunset: #f37b64;
  --hibiscus: #cf3568;
  --gold: #f4c95d;
  --palm: #24734d;
  --ink: #173042;
  --muted: #5b7180;
  --sand: #fff9ee;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 59, 92, 0.13);
  --radius-lg: 28px;
  --radius-md: 19px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fcfd;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep-ocean);
  border-radius: 9px;
  transform: translateY(-160%);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 58px;
  color: var(--white);
  background: linear-gradient(160deg, #032c49 0%, #075f83 55%, #0a8292 100%);
}

.site-nav {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.network-banner {
  position: relative;
  z-index: 4;
  width: min(1500px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #f4d7a1;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 52px rgba(1, 24, 42, 0.32);
}

.network-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(930px, calc(100% - 40px));
  margin: 38px auto 0;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-tagline {
  max-width: 780px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.16rem, 2.5vw, 1.55rem);
}

.progress-banner {
  width: min(810px, 100%);
  margin: 34px auto 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  color: #173042;
  background: rgba(255, 249, 238, 0.96);
  border: 2px solid rgba(244, 201, 93, 0.85);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(2, 35, 58, 0.24);
}

.progress-banner strong {
  display: block;
  color: var(--hibiscus);
  font-size: 1.05rem;
}

.progress-icon {
  flex: 0 0 auto;
  font-size: 2rem;
}

.hero-button,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 850;
}

.hero-button {
  margin-top: 30px;
  padding: 14px 23px;
  color: var(--deep-ocean);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(2, 35, 58, 0.22);
}

.hero-button:hover,
.hero-button:focus-visible {
  background: #ffe28f;
  transform: translateY(-2px);
}

main {
  overflow: hidden;
}

.intro-section,
.network-section,
.future-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  padding: 92px 0 80px;
}

.section-heading {
  max-width: 790px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.future-section h2 {
  margin: 0;
  color: var(--deep-ocean);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.intro-copy {
  font-size: 1.08rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.aloha-panel {
  padding: 28px;
  color: var(--white);
  background: linear-gradient(155deg, var(--deep-ocean), #0b7e8d);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.aloha-panel h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-list span {
  padding: 8px 12px;
  color: var(--deep-ocean);
  background: var(--seafoam);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
}

.network-section {
  padding: 85px 0 100px;
}

.cards-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.site-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 59, 92, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(6, 59, 92, 0.18);
}

.card-art {
  position: relative;
  min-height: 230px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  isolation: isolate;
}

.card-art::before,
.card-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.card-art::before {
  width: 220px;
  height: 220px;
  right: -55px;
  top: -70px;
  background: rgba(255, 255, 255, 0.16);
}

.card-art::after {
  width: 280px;
  height: 110px;
  left: -30px;
  bottom: -55px;
  background: rgba(255, 255, 255, 0.14);
}

.card-restaurants .card-art {
  background: linear-gradient(140deg, #df5b50, #f1a24b);
}

.card-bookstore .card-art {
  background: linear-gradient(140deg, #70458b, #c94f77);
}

.card-pledge .card-art {
  background: linear-gradient(140deg, #176ea0, #31b7a8);
}

.card-peace .card-art {
  background: linear-gradient(140deg, #3151a4, #8b64bd);
}

.card-icon {
  font-size: 4.3rem;
  line-height: 1;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.card-art-label {
  margin-top: 15px;
  font-size: 1.04rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.site-card-body {
  padding: 30px;
}

.site-card-body h3 {
  margin: 10px 0 12px;
  color: var(--deep-ocean);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.15;
}

.site-card-body p {
  color: var(--muted);
}

.card-status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.card-status.open {
  color: #135c3a;
  background: #dff5e8;
}

.card-status.growing {
  color: #854312;
  background: #fff0cf;
}

.card-status.worldwide {
  color: #334d86;
  background: #e6ebff;
}

.card-link {
  margin-top: 8px;
  color: var(--hibiscus);
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--deep-ocean);
}

.future-section {
  margin-bottom: 100px;
  padding: 42px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: linear-gradient(120deg, #fff4dc, #fffaf1);
  border: 1px solid rgba(244, 201, 93, 0.56);
  border-radius: var(--radius-lg);
}

.future-section p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
}

.future-symbols {
  flex: 0 0 auto;
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: 0.1em;
}

.site-footer {
  padding: 58px 0 20px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--deep-ocean);
}

.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 44px;
}

.site-footer h2 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.site-footer a {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.94rem;
}

.share-button {
  padding: 10px 16px;
  color: var(--deep-ocean);
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.share-button:hover,
.share-button:focus-visible {
  background: #ffe28f;
}

@media (max-width: 820px) {
  .hero {
    padding-bottom: 50px;
  }

  .site-nav,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 14px;
  }

  .hero-content {
    margin-top: 32px;
  }

  .intro-grid,
  .cards-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .future-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 42px;
  }

  .site-nav {
    padding-top: 18px;
  }

  .network-banner {
    border-radius: 0;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    font-size: 0.9rem;
  }

  .progress-banner {
    align-items: flex-start;
  }

  .intro-section,
  .network-section {
    padding-top: 65px;
  }

  .future-section {
    padding: 32px 27px;
  }

  .card-art {
    min-height: 190px;
  }

  .site-card-body {
    padding: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
