:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-muted: #f2f6fb;
  --text: #132033;
  --text-soft: #4c5d74;
  --primary: #0d6efd;
  --primary-strong: #0b57c6;
  --border: #d8e1ec;
  --shadow: 0 10px 30px rgba(19, 32, 51, 0.08);
  --radius: 14px;
  --container: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-underline-offset: 2px;
}

a:hover {
  color: var(--primary-strong);
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.topbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(8px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  max-height: 42px;
  width: auto;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.nav-list a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 7.2rem 0 2.2rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 255, 0.92) 0%,
      rgba(248, 251, 255, 0.86) 48%,
      rgba(248, 251, 255, 0.74) 100%
    ),
    url("assets/img/hero-tap.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -130px;
  top: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.18), rgba(13, 110, 253, 0));
  z-index: 0;
  pointer-events: none;
  animation: glowFloat 10s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 0.3rem;
  color: var(--primary-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.lead {
  color: var(--text-soft);
  max-width: 60ch;
  margin-bottom: 1rem;
}

.hero-points {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: #2d415f;
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 0.66rem 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--primary);
  color: #fff;
}

.button.primary:hover {
  background: var(--primary-strong);
  color: #fff;
}

.button.secondary {
  border-color: var(--border);
  color: var(--text);
  background: #fff;
}

.button.secondary:hover {
  border-color: #b8c9dd;
  color: var(--text);
}

.button.accent {
  border-color: #a9c6f3;
  background: #eaf3ff;
  color: #0b57c6;
}

.button.accent:hover {
  border-color: #8ab1ea;
  background: #dcecff;
  color: #0849ad;
}

.info-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 225, 236, 0.8);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.info-card h2 {
  margin-bottom: 0.6rem;
}

.info-card ul {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
}

.info-card li + li {
  margin-top: 0.5rem;
}

.card-note {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  color: #4d607c;
}

.section {
  padding: 3.4rem 0;
}

.impact-strip {
  margin-top: 1.5rem;
  padding: 0.8rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid #c8d6e7;
  background: linear-gradient(125deg, #ffffff 0%, #eef5ff 55%, #f6fbff 100%);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-links {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-links a {
  text-decoration: none;
  color: #1d3657;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d6e2ef;
  border-radius: 12px;
  padding: 0.62rem 0.8rem;
  transition: border-color 160ms ease, transform 160ms ease;
}

.hero-links a:hover {
  border-color: #b8ccea;
  transform: translateY(-2px);
}

.impact-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #dbe5f0;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.impact-value {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #0b57c6;
  line-height: 1.2;
}

.impact-label {
  margin: 0.18rem 0 0;
  color: #3b4f6d;
  font-size: 0.92rem;
}

.section-intro {
  color: var(--text-soft);
  max-width: 65ch;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #bfd0e4;
}

.card-image {
  width: calc(100% + 2rem);
  max-width: none;
  margin: -1rem -1rem 0.9rem;
  height: 185px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.card p {
  margin-bottom: 0;
}

.muted {
  background: var(--surface-muted);
}

.value-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-kicker {
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.audience {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 6px 18px rgba(19, 32, 51, 0.05);
}

.audience-card h3 {
  margin-bottom: 0.55rem;
}

.audience-card p:last-child {
  margin-bottom: 0;
}

.narrow {
  max-width: 760px;
}

.map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.map-wrap iframe {
  width: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}

.contact-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.contact-panel h3 {
  margin-bottom: 0.45rem;
}

.contact-panel p {
  margin-top: 0;
  color: var(--text-soft);
}

.contact-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-list li {
  border: 1px solid #dde6f1;
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  background: #fbfdff;
}

.contact-list span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5d6f88;
  margin-bottom: 0.15rem;
  font-weight: 600;
}

.contact-list address {
  margin: 0;
  font-style: normal;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.3rem 0;
  background: #fff;
}

.footer-content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes glowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-16px, 10px, 0);
  }
}

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

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

  .value-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }

  .hero-links {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-wrap iframe {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .topbar-content {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 3.4rem;
  }
}
