@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --color-primary: #3ecf8e;
  --color-secondary: #1b9c6d;
  --color-accent: #c8f5da;
  --color-deep: #102134;
  --color-mid: #1f3550;
  --color-light: #f9fbff;
  --color-muted: rgba(16, 33, 52, 0.65);
  --color-action: #1fba83;
  --surface: rgba(255, 255, 255, 0.85);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 35px 80px rgba(43, 61, 89, 0.18);
  --shadow-light: 0 18px 48px rgba(43, 61, 89, 0.12);
  --shadow-card: 0 16px 32px rgba(43, 61, 89, 0.18);
  --gradient-primary: linear-gradient(135deg, #e3fcea 0%, #8ef4c4 40%, #1fba83 100%);
  --gradient-secondary: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
  --font-heading: "Playfair Display", serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--color-deep);
  background: radial-gradient(circle at top left, rgba(198, 255, 225, 0.7), transparent 45%),
    radial-gradient(circle at bottom right, rgba(160, 233, 199, 0.55), transparent 40%), #f4f8fb;
  min-height: 100vh;
}

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

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

.page {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3.5rem);
  background: rgba(244, 248, 251, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(15, 35, 58, 0.08);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-mark {
  position: relative;
  width: 52px;
  height: 52px;
}

.logo-mark.small {
  width: 42px;
  height: 42px;
}

.logo-orbit,
.logo-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.logo-orbit {
  background: var(--gradient-primary);
  animation: rotate 12s linear infinite;
  filter: blur(0.6px);
}

.logo-core {
  inset: 16%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 8px 20px rgba(15, 33, 52, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-text .brand {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.logo-text .tagline {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-mid);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a.active {
  color: var(--color-secondary);
}

.site-nav a.active::after {
  transform: scaleX(1);
  background: var(--color-secondary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0.4rem;
}

.nav-toggle-bar {
  width: 26px;
  height: 3px;
  background: var(--color-mid);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-pill {
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: var(--color-action);
  font-weight: 700;
  color: #063024;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-pill:hover {
  transform: translateY(-2px);
  background-color: #199e70;
  box-shadow: 0 18px 32px rgba(31, 186, 131, 0.3);
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6rem) 5rem;
  position: relative;
}

.hero-media {
  position: relative;
  min-height: 420px;
}

.hero-burst {
  position: absolute;
  inset: 10% -20% auto -20%;
  width: 120%;
  filter: drop-shadow(0 40px 80px rgba(31, 186, 131, 0.22));
  opacity: 0.9;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(160, 233, 199, 0.7), transparent 75%);
  border-radius: var(--radius-lg);
  filter: blur(12px);
}

.hero-figure {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1.25rem;
  align-content: center;
}

.hero-avatar {
  width: 180px;
  height: 180px;
  border-radius: 36% 64% 46% 54% / 48% 44% 56% 52%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.55));
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-mid);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-light);
  max-width: 260px;
}

.hero-card strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: var(--color-secondary);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-topline {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--color-mid);
}

.hero-subtitle {
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-muted);
  font-weight: 600;
}

.hero-social .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(16, 33, 52, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-social a:hover .icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 32px rgba(31, 186, 131, 0.3);
}

.page-hero {
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 6vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(227, 252, 234, 0.9), transparent 70%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 65%;
  background: url("assets/hero-burst.svg") center/cover no-repeat;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 0.82rem;
  display: block;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin: 0;
  color: var(--color-mid);
}

.page-hero p {
  max-width: 680px;
  margin: 1.8rem auto 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.page-hero .hero-cta {
  justify-content: center;
}

.icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  mask-size: cover;
  mask-repeat: no-repeat;
  background: var(--color-mid);
}

.icon-youtube::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.8 8.001a2.765 2.765 0 00-1.94-1.96C18.06 5.667 12 5.667 12 5.667s-6.06 0-7.86.374A2.765 2.765 0 002.2 8.001a29.3 29.3 0 000 7.998 2.765 2.765 0 001.94 1.96c1.8.374 7.86.374 7.86.374s6.06 0 7.86-.374a2.765 2.765 0 001.94-1.96 29.3 29.3 0 000-7.998zM9.995 14.664v-5.33L15.33 12l-5.335 2.664z'/%3E%3C/svg%3E");
}

.icon-facebook::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 22V12.9h2.4l.36-2.8h-2.76V8.2c0-.8.24-1.4 1.44-1.4h1.56V4.3c-.27-.04-1.2-.1-2.28-.1-2.25 0-3.78 1.33-3.78 3.8v2.1H8.7v2.8h2.88V22h1.92z' fill='%23000'/%3E%3C/svg%3E");
}

.icon-instagram::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5H7zm10 2c1.668 0 3 1.332 3 3v10c0 1.668-1.332 3-3 3H7c-1.668 0-3-1.332-3-3V7c0-1.668 1.332-3 3-3h10zm-5 3.5A5.51 5.51 0 006.5 12 5.51 5.51 0 0012 17.5 5.51 5.51 0 0017.5 12 5.51 5.51 0 0012 7.5zm0 2c1.925 0 3.5 1.575 3.5 3.5S13.925 16.5 12 16.5 8.5 14.925 8.5 13 10.075 9.5 12 9.5zm6.25-2.85a1.15 1.15 0 00-2.3 0 1.15 1.15 0 002.3 0z' fill='%23000'/%3E%3C/svg%3E");
}

.icon-x::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 1227' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M636.77 548.23L1088.74 0h-108.46L588.38 450.42 293.78 0H0l472.45 686.69L0 1227h108.46L523.08 756.04l310.1 470.96H1200L636.77 548.23z' fill='%23000'/%3E%3C/svg%3E");
}

.icon-whatsapp::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M380.9 97.1C339-3.1 225.5-35.6 131.9 12.4 38.3 60.4 3.8 180.4 49.9 273.4L0 480l211.9-55.1c99.6 27.1 203.5-31.8 234-130.6 30.5-98.9-6.5-207.4-65-197.2zM224.8 404c-23.5 0-46.5-6.2-66.6-17.9l-4.7-2.8-95.3 24.8 25.2-92.8-3-4.8c-12.1-20-18.5-43-18.5-66.5 0-71.1 57.8-129 129-129 71 0 129 57.9 129 129 0 71-58 129-129 129zm70.5-96.9c-3.8-1.9-22.3-10.9-25.7-12.1-3.4-1.3-5.9-1.9-8.4 1.9-2.5 3.7-9.6 12.1-11.8 14.6-2.1 2.5-4.4 2.8-8.2 0.94-3.8-1.9-16-5.9-30.5-18.8-11.3-10.1-18.9-22.6-21.1-26.4-2.2-3.7-0.24-5.7 1.7-7.5 1.8-1.8 3.8-4.4 5.6-6.6 1.9-2.2 2.5-3.7 3.8-6.2 1.3-2.5 0.63-4.7-0.31-6.6-0.94-1.9-8.4-20.4-11.5-27.9-3-7.3-6.1-6.3-8.4-6.4-2.2-0.16-4.7-0.16-7.2-0.16s-6.6 0.94-10.1 4.7c-3.4 3.7-13.3 13-13.3 31.5 0 18.5 13.6 36.3 15.5 38.8 1.9 2.5 26.6 40.6 64.4 56.9 37.8 16.3 37.8 10.9 44.6 10.2 6.9-0.63 22.3-9 25.4-17.5 3.1-8.4 3.1-15.7 2.2-17.5-0.94-1.9-3.4-2.8-7.2-4.7z' fill='%23000'/%3E%3C/svg%3E");
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  background: var(--color-action);
  color: #063024;
  box-shadow: 0 16px 30px rgba(31, 186, 131, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background-color: #199e70;
  box-shadow: 0 22px 36px rgba(31, 186, 131, 0.32);
}

.btn.primary,
.btn.ghost,
.btn.outline {
  background: var(--color-action);
  color: #063024;
}

.section {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}

.section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-heading .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 0.82rem;
  display: block;
  margin-bottom: 1rem;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.about-grid,
.course-grid,
.evangelism-grid,
.support-grid,
.contact-grid,
.resource-grid,
.gallery-grid {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.5rem);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.8rem);
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-card,
.course-card,
.evangelism-card,
.resource-card,
.support-card,
.contact-card,
.gallery-card,
.testimonial-card,
.timeline-item,
.stat-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.9rem;
  box-shadow: var(--shadow-card);
}

.about-card h3,
.course-card h3,
.evangelism-card h3,
.resource-card h3,
.support-card h3,
.contact-card h3,
.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.stat-card {
  text-align: center;
  padding: 2.2rem 1.6rem;
  flex: 1 1 200px;
  max-width: 240px;
}

.stat-number {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  font-weight: 800;
  color: var(--color-secondary);
}

.stat-label {
  font-weight: 600;
  color: var(--color-muted);
}

.course-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.course-card {
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: -60% 20% auto -20%;
  height: 60%;
  background: var(--gradient-primary);
  opacity: 0.12;
  transform: rotate(12deg);
}

.course-card p {
  position: relative;
  color: var(--color-muted);
}

.course-note,
.evangelism-note {
  margin: 3rem auto 0;
  max-width: 620px;
  background: rgba(14, 58, 40, 0.78);
  color: #fff;
  padding: 1.6rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
}

.timeline {
  display: grid;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  padding-left: 3.2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 2.4rem;
  bottom: 2rem;
  width: 2px;
  background: rgba(16, 33, 52, 0.12);
}

.timeline-item:last-of-type::before {
  display: none;
}

.timeline-badge {
  position: absolute;
  left: 0;
  top: 1.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 24px rgba(16, 33, 52, 0.16);
  font-weight: 700;
  color: var(--color-secondary);
}

.evangelism-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.resource-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--color-mid);
  margin-top: 1rem;
  position: relative;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.3s ease;
}

.link-arrow:hover::after {
  transform: translateX(5px);
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--color-muted);
}

.testimonial-card figcaption {
  font-weight: 700;
  color: var(--color-mid);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-card {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.gallery-visual {
  height: 180px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.visual-1 {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(16, 33, 52, 0.1)), url("assets/texture-waves.svg");
}

.visual-2 {
  background-image: linear-gradient(145deg, rgba(62, 207, 142, 0.35), rgba(31, 186, 131, 0.25)), url("assets/texture-waves.svg");
}

.visual-3 {
  background-image: linear-gradient(135deg, rgba(27, 156, 109, 0.35), rgba(142, 244, 196, 0.3)), url("assets/texture-waves.svg");
}

.visual-4 {
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(31, 186, 131, 0.3)), url("assets/texture-waves.svg");
}

.support-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-form {
  margin: 3rem auto 0;
  background: rgba(255, 255, 255, 0.95);
  max-width: 860px;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-heading h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.form-heading p {
  color: var(--color-muted);
  margin-top: 0;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

label span {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-mid);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 33, 52, 0.2);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(88, 213, 201, 0.25);
}

.site-footer {
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, rgba(16, 33, 52, 0.94), rgba(16, 33, 52, 0.86));
  color: rgba(255, 255, 255, 0.84);
  display: grid;
  gap: 2rem;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-tagline {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social .icon {
  background: rgba(255, 255, 255, 0.1);
}

.footer-social .icon::before {
  background: #fff;
}

.footer-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.ribbon {
  padding: 1.8rem clamp(1.5rem, 6vw, 6rem);
  background: var(--gradient-primary);
  color: var(--color-deep);
  font-weight: 700;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.soft-rise {
  animation: float 6s ease-in-out infinite;
}

.soft-rise.delay-1 {
  animation-delay: 1.8s;
}

.flow-in,
.flow-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.flow-up[data-visible="true"],
.flow-in[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

.flow-up.delay-1,
.flow-in.delay-1 {
  transition-delay: 0.15s;
}

.flow-up.delay-2,
.flow-in.delay-2 {
  transition-delay: 0.3s;
}

.flow-up.delay-3,
.flow-in.delay-3 {
  transition-delay: 0.45s;
}

.flow-up.delay-4,
.flow-in.delay-4 {
  transition-delay: 0.6s;
}

.flow-up.delay-5,
.flow-in.delay-5 {
  transition-delay: 0.75s;
}

.events::before,
.support::before,
.evangelism::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto 30%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.events *,
.support *,
.evangelism * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-media {
    order: 2;
  }

  .hero-figure {
    justify-items: center;
  }

  .hero-content {
    order: 1;
  }

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

@media (max-width: 900px) {
  .site-nav ul {
    position: absolute;
    top: 100%;
    right: clamp(1.25rem, 4vw, 3.5rem);
    width: min(320px, 80vw);
    background: rgba(244, 248, 251, 0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-nav ul[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    margin-left: auto;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .cta-pill {
    order: 3;
  }
}

@media (max-width: 600px) {
  .site-header {
    justify-content: space-between;
  }

  .logo-text .brand {
    font-size: 1rem;
  }

  .hero-avatar {
    width: 150px;
    height: 150px;
  }

  .hero-card {
    max-width: none;
  }

  .timeline-item {
    padding-left: 2.4rem;
  }

  .timeline-badge {
    top: 1.2rem;
  }

  .timeline-item::before {
    left: 1rem;
  }

  .footer-brand {
    flex-direction: column;
  }
}
