:root {
  --bg: #dce4e7;
  --bg-soft: #ffffff;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(43, 69, 70, 0.16);
  --text: #2b4546;
  --muted: #5f7477;
  --blue: #779ea5;
  --cyan: #779ea5;
  --yellow: #ffffff;
  --danger: #8f4d56;
  --max-width: 1180px;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(43, 69, 70, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(119, 158, 165, 0.24), transparent 30%),
    radial-gradient(circle at 88% 6%, rgba(255, 255, 255, 0.72), transparent 24%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(220, 228, 231, 0.88);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 12px;
  color: #2b4546;
  background: linear-gradient(135deg, #ffffff, #779ea5);
  box-shadow: 0 12px 28px rgba(43, 69, 70, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text) !important;
  background: var(--card);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(43, 69, 70, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 69, 70, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: 640px;
  height: 640px;
  right: -220px;
  top: 90px;
  content: "";
  border: 1px solid rgba(119, 158, 165, 0.26);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(119, 158, 165, 0.05),
    0 0 0 140px rgba(255, 255, 255, 0.18);
}

.hero-content {
  max-width: 920px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(119, 158, 165, 0.34);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(119, 158, 165, 0.13);
  font-size: 0.88rem;
  font-weight: 700;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(78, 231, 209, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(78, 231, 209, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(78, 231, 209, 0);
  }
}

.hero h1 {
  max-width: 1050px;
  margin: 28px 0 22px;
  font-size: clamp(3.2rem, 8.6vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--yellow), var(--cyan), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.button-primary {
  color: #2b4546;
  background: linear-gradient(135deg, #ffffff, #779ea5);
  box-shadow: 0 16px 36px rgba(43, 69, 70, 0.18);
}

.button-secondary {
  border-color: var(--line);
  background: var(--card);
}

.button:hover {
  transform: translateY(-2px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 50px;
}

.manifesto,
.feature-card,
.partner-card,
.schedule-day,
.group-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow);
}

.manifesto {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 36px;
  overflow: hidden;
  position: relative;
}

.manifesto::after {
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  bottom: -90px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 158, 165, 0.28), transparent 70%);
}

.manifesto blockquote {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.manifesto p {
  max-width: 490px;
  margin: 28px 0 0;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 26px;
  transition: 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(43, 69, 70, 0.34);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(119, 158, 165, 0.16);
  font-size: 1.3rem;
}

.feature-card h3 {
  margin: 22px 0 8px;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.groups {
  display: grid;
  gap: 18px;
  margin-top: 50px;
}

.group-card {
  overflow: hidden;
  box-shadow: none;
}

.group-header {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 24px;
  border: 0;
  color: var(--text);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.group-number {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--cyan);
  background: rgba(119, 158, 165, 0.13);
  font-weight: 900;
}

.group-title h3 {
  margin: 0;
  font-size: 1.25rem;
}

.group-title p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.group-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.chevron {
  transition: 0.25s ease;
}

.group-card.open .chevron {
  transform: rotate(180deg);
}

.group-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.group-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 0 24px 28px 106px;
}

.topic {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.topic small {
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topic p {
  margin: 10px 0 0;
  color: var(--muted);
}

.ministries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.ministry {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2b4546;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.schedule-day {
  padding: 28px;
  box-shadow: none;
}

.schedule-day h3 {
  margin: 0 0 22px;
  font-size: 1.5rem;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px 20px 1fr;
  gap: 14px;
  min-height: 68px;
}

.time {
  color: var(--cyan);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.timeline-axis {
  position: relative;
}

.timeline-axis::before {
  position: absolute;
  top: 8px;
  bottom: -8px;
  left: 9px;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-item:last-child .timeline-axis::before {
  display: none;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 19px;
  height: 19px;
  border: 5px solid var(--bg-soft);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 1px rgba(255, 216, 90, 0.35);
}

.timeline-text {
  padding-bottom: 20px;
  color: var(--muted);
}

.timeline-text strong {
  color: var(--text);
}

.impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 50px;
}

.partner-card {
  padding: 34px;
  box-shadow: none;
}

.partner-card h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #2b4546;
}

.check-list li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
}

.final-cta {
  padding: 90px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(119, 158, 165, 0.34);
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(119, 158, 165, 0.26), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow);
}

.cta-box h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.cta-box p {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-box .hero-actions {
  justify-content: center;
}

footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

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

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .stats,
  .features,
  .schedule,
  .impact {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .crisis-grid {
    grid-template-columns: 1fr;
  }

  .group-inner {
    grid-template-columns: 1fr;
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5.3rem);
  }

  .stats,
  .features,
  .schedule,
  .impact {
    grid-template-columns: 1fr;
  }

  .group-header {
    grid-template-columns: 52px 1fr;
    padding: 18px;
  }

  .group-number {
    width: 48px;
    height: 48px;
  }

  .group-meta {
    grid-column: 2;
    justify-content: space-between;
  }

  .timeline-item {
    grid-template-columns: 82px 20px 1fr;
    gap: 10px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.nav-cta,
.button-secondary {
  background: rgba(255, 255, 255, 0.74);
}

.button-primary {
  color: #ffffff;
  background: #2b4546;
  box-shadow: 0 16px 34px rgba(43, 69, 70, 0.22);
}

.button-primary:hover {
  background: #203738;
}

.brand-mark {
  color: #ffffff;
  background: #2b4546;
}

.eyebrow,
.section-label,
.feature-icon,
.group-number,
.time {
  color: #2b4546;
}

.hero h1 span {
  background: linear-gradient(90deg, #2b4546, #779ea5);
  background-clip: text;
  -webkit-background-clip: text;
}

.stat,
.group-card,
.schedule-day,
.partner-card,
.manifesto,
.feature-card,
.cta-box {
  backdrop-filter: blur(14px);
}

.ministry {
  border-color: rgba(43, 69, 70, 0.14);
  background: rgba(220, 228, 231, 0.52);
}

.timeline-dot {
  background: #779ea5;
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(43, 69, 70, 0.16);
}

footer {
  background: rgba(255, 255, 255, 0.38);
}

.logo-footer {
  border-radius: 12px;
}

.footer-icons {
  display: flex;
  gap: 20px;
}

.icon {
  width: 50px;
  transition: transform 0.25s ease;
  cursor: pointer;
}

.icon:hover {
  transform: scale(1.1);
}