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

:root {
  --bg-dark: #282a36;
  --bg-card: #323648;
  --bg-card-hover: #3b4056;
  --border: #44475a;
  --border-light: #5b6078;
  --text-primary: #f8f8f2;
  --text-secondary: rgba(248, 248, 242, 0.78);
  --text-muted: #b7bacb;
  --green: #0abdc6;
  --pink: #711c91;
  --orange: #0abdc6;
  --shadow: rgba(0, 0, 0, 0.35);
  --font-heading: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(113, 28, 145, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(10, 189, 198, 0.08), transparent 34%),
    var(--bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

code {
  font-family: var(--font-mono);
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--text-primary);
  box-shadow: 0 12px 28px rgba(113, 28, 145, 0.2);
}

.btn-primary:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(113, 28, 145, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
}

.btn-outline:hover {
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  padding: 8px 0;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(40, 42, 54, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(248, 248, 242, 0.06);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(40, 42, 54, 0.96);
  border-bottom-color: rgba(248, 248, 242, 0.1);
  box-shadow: 0 12px 28px rgba(16, 17, 24, 0.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--text-primary);
}

.logo-image {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-header .logo-image {
  height: 64px;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-accent {
  color: var(--green);
}

.main-nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(248, 248, 242, 0.08);
  border-color: rgba(10, 189, 198, 0.45);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(113, 28, 145, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(113, 28, 145, 0.24);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 72px;
  overflow: hidden;
}

.hero > .container {
  max-width: 1400px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #101119;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: translateY(40px) scale(1.04);
  transform-origin: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(14, 15, 23, 0.98) 0%, rgba(18, 20, 29, 0.95) 26%, rgba(26, 28, 39, 0.84) 42%, rgba(31, 34, 46, 0.52) 58%, rgba(40, 42, 54, 0.16) 76%, rgba(40, 42, 54, 0.04) 100%),
    radial-gradient(circle at 18% 24%, rgba(113, 28, 145, 0.22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(248, 248, 242, 0.18), transparent 24%);
  pointer-events: none;
}


.gradient-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(113, 28, 145, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(10, 189, 198, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(10, 189, 198, 0.06) 0%, transparent 65%);
  animation: mesh-float 18s ease-in-out infinite;
}

@keyframes mesh-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(24px, -18px, 0) scale(1.04);
  }
  66% {
    transform: translate3d(-18px, 14px, 0) scale(0.98);
  }
}

.grid-dots {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: radial-gradient(circle, rgba(248, 248, 242, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
  min-height: calc(100vh - 120px);
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-left {
  flex: 1 1 0;
  max-width: 660px;
}

.hero-right {
  flex: 0 1 560px;
  width: min(100%, 560px);
  margin-left: auto;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(10, 189, 198, 0.1);
  border: 1px solid rgba(10, 189, 198, 0.22);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  animation: badge-pulse 3s ease-in-out infinite;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: badge-dot 2s ease-in-out infinite;
}

@keyframes badge-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.25);
  }
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(10, 189, 198, 0.16);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(10, 189, 198, 0);
  }
}

.hero-title {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(248, 248, 242, 0.86);
  font-size: 1.08rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-actions .btn {
  width: 100%;
  min-height: 64px;
  padding: 16px 24px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: flex-start;
}

.info-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(248, 248, 242, 0.92);
  transition: color 0.2s ease, transform 0.2s ease;
}

.info-card:hover {
  transform: translateX(2px);
  color: var(--text-primary);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 189, 198, 0.28);
  background:
    linear-gradient(135deg, rgba(113, 28, 145, 0.24) 0%, rgba(10, 189, 198, 0.16) 100%),
    rgba(18, 20, 29, 0.82);
  box-shadow: 0 10px 22px rgba(8, 10, 16, 0.2);
  font-size: 1rem;
}

.info-label {
  max-width: 32ch;
  text-wrap: pretty;
}

.code-terminal {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 248, 242, 0.08);
  background: #1f2230;
  box-shadow:
    0 25px 60px rgba(12, 13, 18, 0.45),
    0 0 0 1px rgba(248, 248, 242, 0.03);
  animation: terminal-float 6s ease-in-out infinite;
}

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

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #242836;
  border-bottom: 1px solid rgba(248, 248, 242, 0.06);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red {
  background: #ff5555;
}

.terminal-dot.yellow {
  background: #f1fa8c;
}

.terminal-dot.green {
  background: var(--green);
}

.terminal-title {
  margin-left: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.terminal-body {
  position: relative;
  padding: 20px;
}

.terminal-body pre {
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.js .terminal-code {
  visibility: hidden;
}

.js .terminal-code.is-typing,
.js .terminal-code.is-complete {
  visibility: visible;
}

.code-keyword {
  color: var(--pink);
}

.code-class {
  color: var(--orange);
}

.code-func {
  color: var(--green);
}

.code-param {
  color: var(--text-primary);
}

.code-string {
  color: var(--orange);
}

.code-number {
  color: var(--green);
}

.code-comment {
  color: var(--text-muted);
  font-style: italic;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 18px;
  margin-top: 4px;
  border-radius: 2px;
  background: var(--green);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.trust-row {
  padding: 24px 0;
  border-top: 1px solid rgba(248, 248, 242, 0.06);
  border-bottom: 1px solid rgba(248, 248, 242, 0.06);
  background: rgba(50, 54, 72, 0.4);
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-check {
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
}

.programs,
.why-section,
.upcoming,
.testimonials {
  padding: 100px 0;
}

.programs .container {
  max-width: 1160px;
}

.programs .section-title {
  margin-bottom: 14px;
}

.programs .section-subtitle {
  max-width: 38rem;
  margin: 0 auto 52px;
  font-size: 1.05rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.programs-grid > .program-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 560px;
  width: 100%;
  justify-self: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card,
.testimonial-card,
.placeholder-section {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 38px 32px 28px;
  border-color: rgba(10, 189, 198, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 23, 37, 0.96) 0%, rgba(20, 24, 37, 0.92) 100%);
  box-shadow:
    0 24px 48px rgba(8, 10, 16, 0.22),
    inset 0 1px 0 rgba(248, 248, 242, 0.03);
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 189, 198, 0.2), rgba(10, 189, 198, 0.02) 72%, transparent);
}

.program-card:hover,
.testimonial-card:hover,
.placeholder-section:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  box-shadow: 0 24px 48px rgba(12, 13, 18, 0.28);
}

.program-card:hover {
  border-color: rgba(10, 189, 198, 0.24);
  background:
    linear-gradient(180deg, rgba(22, 27, 42, 0.98) 0%, rgba(24, 29, 43, 0.94) 100%);
}

.program-card.featured {
  border-color: rgba(113, 28, 145, 0.28);
  background:
    linear-gradient(180deg, rgba(34, 25, 42, 0.94) 0%, rgba(26, 24, 37, 0.96) 36%, rgba(20, 24, 37, 0.92) 100%);
}

.program-card.featured::before {
  background: linear-gradient(90deg, rgba(113, 28, 145, 0.32), rgba(10, 189, 198, 0.16) 72%, transparent);
}

.program-badge {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 4;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(113, 28, 145, 0.16);
}

.program-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(248, 248, 242, 0.08);
  background:
    radial-gradient(circle at 18% 22%, rgba(10, 189, 198, 0.16), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(113, 28, 145, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(11, 14, 24, 0.92) 0%, rgba(18, 22, 33, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(248, 248, 242, 0.04),
    0 16px 30px rgba(8, 10, 16, 0.2);
}

.program-media::before,
.program-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.program-media::before {
  background:
    linear-gradient(140deg, rgba(248, 248, 242, 0.02) 0%, transparent 48%),
    repeating-linear-gradient(135deg, rgba(248, 248, 242, 0.03) 0 12px, transparent 12px 26px);
  opacity: 0.85;
}

.program-media::after {
  inset: auto -14% -32% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 189, 198, 0.22) 0%, rgba(10, 189, 198, 0) 72%);
}

.program-card.featured .program-media {
  background:
    radial-gradient(circle at 78% 18%, rgba(113, 28, 145, 0.28), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(10, 189, 198, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(31, 20, 40, 0.94) 0%, rgba(23, 22, 34, 0.98) 100%);
}

.program-media.has-asset {
  background: rgba(11, 14, 24, 0.92);
}

.program-media.has-asset::before {
  background:
    linear-gradient(180deg, rgba(14, 16, 24, 0.12) 0%, rgba(14, 16, 24, 0.02) 48%, rgba(14, 16, 24, 0.34) 100%);
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.program-media.has-asset::after {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(248, 248, 242, 0.03) 0%, transparent 22%);
  z-index: 1;
  pointer-events: none;
}

.program-media-asset {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-media-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px 22px;
}

.program-media-chip {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248, 248, 242, 0.12);
  background: rgba(14, 17, 26, 0.56);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.program-media-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.program-media-caption {
  max-width: 22ch;
  color: rgba(248, 248, 242, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.program-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 18px;
  border: 1px solid rgba(248, 248, 242, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 14, 24, 0.86) 0%, rgba(18, 22, 33, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(248, 248, 242, 0.04),
    0 12px 24px rgba(8, 10, 16, 0.18);
  font-size: 2rem;
}

.program-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 18px;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 8px;
  border: 1px solid rgba(10, 189, 198, 0.16);
  background: rgba(10, 189, 198, 0.08);
  color: var(--green);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

.program-tag-secondary {
  border-color: rgba(248, 248, 242, 0.14);
  background: rgba(248, 248, 242, 0.06);
  color: rgba(248, 248, 242, 0.84);
}

.program-card p,
.testimonial-card p,
.why-card p,
.upcoming-info p,
.placeholder-section p,
.page-hero p,
.cta-content p,
.newsletter-box > p,
.footer-desc {
  color: var(--text-secondary);
}

.program-card p,
.why-card p,
.upcoming-info p,
.placeholder-section p {
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.program-details {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
  list-style: none;
}

.program-details li {
  padding: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.program-details li::before {
  content: "→ ";
  color: var(--orange);
  font-weight: 700;
}

.program-card .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(113, 28, 145, 0.18);
}

.program-card .btn-ghost {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--text-primary);
  padding: 14px 22px;
}

.program-card .btn-ghost:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(113, 28, 145, 0.24);
}

.stats-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(248, 248, 242, 0.06);
  border-bottom: 1px solid rgba(248, 248, 242, 0.06);
  background: linear-gradient(135deg, rgba(113, 28, 145, 0.08) 0%, rgba(10, 189, 198, 0.05) 50%, rgba(10, 189, 198, 0.05) 100%);
}

.stats-bar .container {
  max-width: 1320px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-number,
.stat-plus,
.stat-star {
  display: inline;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  font-weight: 700;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.stat-plus,
.stat-star {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.stat-label {
  display: block;
  margin-top: 4px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

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

.why-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  background: var(--bg-card);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  border-left-color: var(--accent);
  background: var(--bg-card-hover);
  box-shadow: 0 18px 40px rgba(12, 13, 18, 0.28);
}

.why-icon {
  margin-bottom: 12px;
  font-size: 2rem;
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.upcoming-grid {
  display: grid;
  gap: 24px;
}

.upcoming-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.upcoming-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  box-shadow: 0 18px 40px rgba(12, 13, 18, 0.28);
}

.upcoming-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 189, 198, 0.25);
  background: rgba(10, 189, 198, 0.1);
}

.date-month {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.date-days {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.upcoming-info h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.upcoming-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cta-banner {
  padding: 80px 0;
}

.cta-content {
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(113, 28, 145, 0.2);
  background: linear-gradient(135deg, rgba(113, 28, 145, 0.12) 0%, rgba(10, 189, 198, 0.08) 55%, rgba(10, 189, 198, 0.08) 100%);
  text-align: center;
}

.cta-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 189, 198, 0.12) 0%, transparent 72%);
  pointer-events: none;
}

.cta-content h2 {
  position: relative;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.cta-content p {
  position: relative;
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

.cta-actions {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-stars {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.newsletter {
  padding: 60px 0 100px;
}

.newsletter-box {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
}

.newsletter-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--pink), var(--green), var(--pink));
  background-size: 200% 100%;
  animation: rainbow-slide 4s linear infinite;
}

@keyframes rainbow-slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.newsletter-box h2 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.newsletter-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.newsletter-action .btn {
  min-width: 220px;
}

.newsletter-input-group {
  display: flex;
  gap: 12px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(40, 42, 54, 0.8);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(10, 189, 198, 0.12);
}

.newsletter-input-group input::placeholder {
  color: var(--text-muted);
}

.newsletter-success {
  margin-top: 12px;
  color: var(--green);
  font-size: 0.9rem;
}

.newsletter-success[hidden] {
  display: none;
}

.newsletter-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.site-footer {
  padding: 80px 0 30px;
  border-top: 1px solid rgba(248, 248, 242, 0.06);
  background: rgba(32, 34, 46, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-tagline {
  margin-top: 8px;
}

.footer-brand .logo-image {
  height: 68px;
}

.footer-tagline code {
  color: var(--green);
  font-size: 0.9rem;
}

.footer-desc {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-links h4 {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(248, 248, 242, 0.06);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.page-hero {
  position: relative;
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero .gradient-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(113, 28, 145, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(10, 189, 198, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(10, 189, 198, 0.06) 0%, transparent 65%);
}

.page-hero h1 {
  position: relative;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.page-content {
  padding: 60px 0 100px;
}

.page-content .container {
  max-width: 800px;
}

.page-content--grid .container {
  max-width: 1160px;
}

.page-sections--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.placeholder-section {
  margin-bottom: 24px;
  text-align: center;
}

.page-sections--grid .placeholder-section {
  margin-bottom: 0;
  min-height: 100%;
}

.page-inline-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 24px 52px;
  margin-top: 32px;
  padding: 42px 54px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 248, 242, 0.08);
  background:
    linear-gradient(135deg, rgba(113, 28, 145, 0.1) 0%, rgba(10, 189, 198, 0.08) 100%),
    rgba(50, 54, 72, 0.72);
  box-shadow:
    0 24px 48px rgba(12, 13, 18, 0.22),
    inset 0 1px 0 rgba(248, 248, 242, 0.03);
}

.page-inline-cta-copy {
  max-width: 46rem;
}

.page-inline-cta-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.page-inline-cta-copy p {
  max-width: 34rem;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
}

.page-inline-cta-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-self: end;
}

.page-inline-cta-actions .btn {
  min-width: 270px;
}

.page-inline-video {
  margin-top: 28px;
}

.page-inline-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 248, 242, 0.08);
  background:
    linear-gradient(135deg, rgba(113, 28, 145, 0.08) 0%, rgba(10, 189, 198, 0.08) 100%),
    rgba(50, 54, 72, 0.72);
  box-shadow:
    0 24px 48px rgba(12, 13, 18, 0.22),
    inset 0 1px 0 rgba(248, 248, 242, 0.03);
}

.page-inline-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.placeholder-icon {
  margin-bottom: 16px;
  font-size: 3rem;
}

.placeholder-section h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.placeholder-list {
  width: min(100%, 28rem);
  margin: 22px auto 0;
  padding-left: 1.2rem;
  text-align: left;
  color: var(--text-secondary);
}

.placeholder-list li + li {
  margin-top: 10px;
}

.placeholder-list li::marker {
  color: var(--green);
}

.coming-soon-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(10, 189, 198, 0.2);
  background: rgba(10, 189, 198, 0.08);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.placeholder-section .btn {
  margin-top: 8px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-secondary);
}

.contact-detail-icon {
  font-size: 1rem;
}

.contact-detail-label {
  color: var(--text-primary);
  font-weight: 600;
}

.contact-detail a {
  color: var(--orange);
  font-weight: 600;
}

.contact-detail a:hover {
  color: var(--text-primary);
}

.page-section-form {
  margin-top: 26px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(248, 248, 242, 0.08);
  background: rgba(248, 248, 242, 0.98);
  box-shadow:
    0 24px 48px rgba(12, 13, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.page-section-form iframe {
  display: block;
  width: 100%;
  height: clamp(1280px, 145vh, 1420px);
  border: 0;
  background: #fff;
}

.page-copy {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
}

.page-copy > * + * {
  margin-top: 16px;
}

.legal-page {
  padding: 140px 0 100px;
}

.legal-page .container {
  max-width: 860px;
}

.legal-header {
  margin-bottom: 22px;
}

.legal-header h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-header p,
.legal-copy {
  color: var(--text-secondary);
}

.legal-header p {
  max-width: 52rem;
  font-size: 1.05rem;
}

.legal-copy {
  font-size: 1rem;
  line-height: 1.68;
}

.legal-copy > * + * {
  margin-top: 12px;
}

.legal-copy h2,
.legal-copy h3 {
  color: var(--text-primary);
  margin-top: 24px;
}

.legal-copy a {
  color: var(--orange);
}

.legal-copy a:hover {
  color: var(--text-primary);
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.25rem;
}

.legal-copy li + li {
  margin-top: 6px;
}

.faq-page .container {
  max-width: 1160px;
}

.faq-hero p {
  max-width: 760px;
}

.faq-jump-nav {
  margin: 6px 0 34px;
}

.faq-jump-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.faq-jump-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(248, 248, 242, 0.1);
  background: rgba(50, 54, 72, 0.68);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.faq-jump-link:hover {
  color: var(--text-primary);
  border-color: rgba(10, 189, 198, 0.3);
  background: rgba(59, 64, 86, 0.92);
}

.faq-jump-icon,
.faq-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(10, 189, 198, 0.14);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1;
}

.faq-category-list {
  display: grid;
  gap: 26px;
}

.faq-category {
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 248, 242, 0.08);
  background:
    linear-gradient(135deg, rgba(113, 28, 145, 0.06) 0%, rgba(10, 189, 198, 0.06) 100%),
    rgba(50, 54, 72, 0.74);
  box-shadow:
    0 24px 48px rgba(12, 13, 18, 0.18),
    inset 0 1px 0 rgba(248, 248, 242, 0.03);
}

.faq-category-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.faq-category-copy {
  min-width: 0;
}

.faq-category-kicker {
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-category-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.faq-category-copy p {
  max-width: 42rem;
  color: var(--text-secondary);
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(248, 248, 242, 0.08);
  background: rgba(40, 42, 54, 0.54);
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 189, 198, 0.18);
  background: rgba(44, 47, 62, 0.8);
}

.faq-item.is-open {
  border-color: rgba(10, 189, 198, 0.26);
  background: rgba(45, 48, 66, 0.9);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(248, 248, 242, 0.12);
  background: rgba(248, 248, 242, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-toggle {
  border-color: rgba(10, 189, 198, 0.28);
  background: rgba(10, 189, 198, 0.08);
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 24px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer-inner {
  padding-bottom: 24px;
}

.faq-answer-inner > * {
  color: var(--text-secondary);
}

.faq-answer-inner p {
  margin-bottom: 0;
  line-height: 1.8;
}

.faq-answer-inner a {
  font-weight: 600;
}

.faq-final-cta {
  margin-top: 34px;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: flex-start;
}

.faq-final-cta .page-inline-cta-copy {
  max-width: none;
}

.faq-final-cta .page-inline-cta-copy p {
  max-width: 46rem;
}

.faq-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.faq-final-cta-actions .btn {
  min-width: 200px;
}

.about-page .container {
  max-width: 1240px;
}

.about-hero {
  position: relative;
  padding: 140px 0 78px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  gap: 56px;
  align-items: center;
}

.about-eyebrow,
.about-feature-kicker,
.about-list-kicker,
.about-card-kicker {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-eyebrow {
  margin-bottom: 18px;
}

.about-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.about-hero-copy h1 .gradient-text {
  display: inline-block;
}

.about-title-line {
  white-space: nowrap;
}

.about-hero-subtitle {
  max-width: 42rem;
  color: var(--text-primary);
  font-size: 1.22rem;
  line-height: 1.6;
}

.about-hero-intro {
  max-width: 39rem;
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 1.04rem;
  line-height: 1.8;
}

.about-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(248, 248, 242, 0.08);
  background:
    linear-gradient(135deg, rgba(113, 28, 145, 0.1) 0%, rgba(10, 189, 198, 0.08) 100%),
    rgba(50, 54, 72, 0.72);
  box-shadow:
    0 24px 48px rgba(12, 13, 18, 0.24),
    inset 0 1px 0 rgba(248, 248, 242, 0.04);
}

.about-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.about-section {
  padding: 24px 0 42px;
}

.about-section--cta {
  padding-bottom: 100px;
}

.about-section-header {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.about-section-header .section-title {
  margin-bottom: 14px;
}

.about-section-header .section-subtitle {
  margin-bottom: 0;
}

.about-section-header--left {
  max-width: none;
  margin: 0 0 18px;
  text-align: left;
}

.about-section-header--left .section-title,
.about-section-header--left .section-subtitle {
  text-align: left;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-feature-card,
.about-split-card,
.about-list-card,
.about-family-card,
.about-story-card,
.about-purpose-card,
.about-final-cta {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 248, 242, 0.08);
  background:
    linear-gradient(135deg, rgba(113, 28, 145, 0.08) 0%, rgba(10, 189, 198, 0.06) 100%),
    var(--bg-card);
  box-shadow:
    0 20px 42px rgba(12, 13, 18, 0.18),
    inset 0 1px 0 rgba(248, 248, 242, 0.03);
}

.about-feature-card {
  padding: 30px;
}

.about-feature-kicker,
.about-list-kicker,
.about-card-kicker {
  margin-bottom: 16px;
}

.about-feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.about-feature-card p,
.about-body-copy,
.about-check-item p,
.about-story-card p,
.about-purpose-card p,
.about-final-cta p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-split-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 30px;
  align-items: start;
  padding: 38px;
}

.about-body-copy {
  max-width: 40rem;
  font-size: 1.02rem;
}

.about-list-card {
  padding: 28px 28px 30px;
  background:
    linear-gradient(135deg, rgba(113, 28, 145, 0.05) 0%, rgba(10, 189, 198, 0.04) 100%),
    rgba(40, 42, 54, 0.7);
}

.about-list {
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

.about-list li + li {
  margin-top: 11px;
}

.about-list li::marker {
  color: var(--green);
}

.about-family-card {
  padding: 40px;
}

.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 10px;
}

.about-check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: rgba(40, 42, 54, 0.5);
  border: 1px solid rgba(248, 248, 242, 0.06);
}

.about-check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(10, 189, 198, 0.12);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.about-story-card,
.about-purpose-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 40px;
}

.about-story-card h2,
.about-purpose-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.about-purpose-closing {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  line-height: 1.45;
}

.about-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 28px 42px;
  align-items: center;
  padding: 42px 46px;
}

.about-final-cta-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.about-final-cta-copy p {
  max-width: 42rem;
}

.about-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.about-final-cta-actions .btn {
  min-width: 220px;
}

.holiday-page .container {
  max-width: 1160px;
}

.holiday-hero-intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
}

.holiday-section + .holiday-section {
  margin-top: 36px;
}

.holiday-section-header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.holiday-section-header .section-title {
  margin-bottom: 14px;
}

.holiday-section-header .section-subtitle {
  max-width: none;
  margin: 0;
}

.holiday-section-copy {
  color: var(--text-secondary);
}

.holiday-programs-grid,
.holiday-expectations-grid {
  display: grid;
  gap: 28px;
}

.holiday-programs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.holiday-programs-inline-cta,
.holiday-programs-grid--lower {
  margin-top: 28px;
}

.holiday-programs-grid > .holiday-program-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.holiday-expectations-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.holiday-program-card,
.holiday-feature-card,
.holiday-love-card,
.holiday-final-cta {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(113, 28, 145, 0.08) 0%, rgba(10, 189, 198, 0.06) 100%),
    var(--bg-card);
  box-shadow:
    0 20px 42px rgba(12, 13, 18, 0.18),
    inset 0 1px 0 rgba(248, 248, 242, 0.03);
}

.holiday-program-card,
.holiday-feature-card {
  padding: 34px 30px;
}

.holiday-program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  min-height: 100%;
  text-align: center;
}

.holiday-program-card .program-media {
  margin-bottom: 0;
}

.holiday-program-card-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
}

.holiday-program-card--side {
  align-items: stretch;
  text-align: left;
}

.holiday-program-card--side .holiday-program-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: 28px;
  width: 100%;
}

.holiday-program-card--side .program-media {
  aspect-ratio: 16 / 10;
  min-height: auto;
}

.holiday-program-card--side .holiday-program-card-copy {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 18px;
}

.holiday-program-card-head h3,
.holiday-feature-card h3,
.holiday-love-card h2,
.holiday-final-cta h2 {
  margin-bottom: 0;
}

.holiday-program-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  line-height: 1.65;
  text-transform: uppercase;
}

.holiday-program-card-head,
.holiday-program-body {
  width: min(100%, 28rem);
}

.holiday-program-card--side .holiday-program-card-head,
.holiday-program-card--side .holiday-program-body,
.holiday-program-card--side .holiday-program-list {
  width: 100%;
  max-width: none;
}

.holiday-program-card-head h3 {
  font-size: clamp(1.55rem, 2vw, 1.95rem);
}

.holiday-program-body,
.holiday-feature-card p,
.holiday-love-card p,
.holiday-final-cta p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.holiday-program-list {
  width: min(100%, 28rem);
  margin: 6px auto 0;
  text-align: left;
}

.holiday-program-list,
.holiday-love-list {
  padding-left: 1.2rem;
  color: var(--text-secondary);
}

.holiday-program-list li + li,
.holiday-love-list li + li {
  margin-top: 10px;
}

.holiday-program-list li::marker,
.holiday-love-list li::marker {
  color: var(--green);
}

.holiday-feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.holiday-love-card,
.holiday-final-cta {
  padding: 40px;
}

.holiday-love-card {
  max-width: 980px;
  margin: 0 auto;
}

.holiday-love-card h2 {
  margin-bottom: 16px;
  text-align: center;
}

.holiday-love-card p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.holiday-love-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  width: min(100%, 760px);
  margin: 24px auto 0;
}

.holiday-final-cta {
  text-align: center;
}

.holiday-final-cta.page-inline-cta {
  grid-template-columns: minmax(0, 1.32fr) auto;
  justify-items: stretch;
  text-align: left;
}

.holiday-final-cta.page-inline-cta .page-inline-cta-copy {
  max-width: 50rem;
}

.holiday-final-cta.page-inline-cta .page-inline-cta-copy h2 {
  font-size: clamp(2.05rem, 4vw, 3.3rem);
  line-height: 1.04;
}

.holiday-final-cta.page-inline-cta .page-inline-cta-copy p {
  max-width: 42rem;
  margin: 0;
}

.holiday-final-cta-highlights {
  display: grid;
  gap: 12px;
  max-width: 42rem;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.holiday-final-cta-highlights li {
  position: relative;
  padding: 12px 16px 12px 20px;
  border-left: 3px solid rgba(10, 189, 198, 0.7);
  border-radius: 14px;
  background: rgba(248, 248, 242, 0.05);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.6;
}

.holiday-final-cta p {
  max-width: 760px;
  margin: 16px auto 0;
}

.holiday-final-cta.page-inline-cta .page-inline-cta-actions {
  justify-self: end;
}

.holiday-final-cta.page-inline-cta .page-inline-cta-actions .btn {
  min-width: 340px;
}

.holiday-final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.holiday-final-cta-actions .btn {
  min-width: 240px;
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 140px);
  }

  .hero-left,
  .hero-subtitle {
    max-width: none;
  }

  .hero-right {
    width: min(100%, 720px);
    margin-left: 0;
  }

  .hero-actions,
  .hero-cards {
    justify-content: center;
  }

  .programs-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .page-sections--grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .holiday-programs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .holiday-expectations-grid,
  .holiday-love-list {
    grid-template-columns: 1fr;
  }

  .about-hero-grid,
  .about-story-grid,
  .about-split-card,
  .about-final-cta,
  .faq-final-cta {
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    text-align: center;
  }

  .faq-jump-links {
    justify-content: flex-start;
  }

  .faq-final-cta-actions {
    justify-content: flex-start;
  }

  .page-section-form iframe {
    height: 1380px;
  }

  .about-eyebrow,
  .about-hero-subtitle,
  .about-hero-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .about-section-header--left,
  .about-section-header--left .section-title,
  .about-section-header--left .section-subtitle {
    text-align: center;
  }

  .about-body-copy {
    margin: 0 auto;
  }

  .about-final-cta {
    justify-items: center;
    text-align: center;
  }

  .about-final-cta-actions {
    justify-content: center;
  }

  .page-inline-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 36px 28px;
  }

  .page-inline-cta-copy {
    max-width: 36rem;
  }

  .page-inline-cta-copy p {
    max-width: none;
  }

  .page-inline-cta-actions {
    justify-self: center;
  }

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

  .upcoming-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .upcoming-date,
  .upcoming-card .btn {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav.open {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    border-bottom: 1px solid rgba(248, 248, 242, 0.08);
    background: rgba(40, 42, 54, 0.98);
    backdrop-filter: blur(20px);
  }

  .main-nav.open .nav-link {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 32px;
  }

  .hero-content {
    min-height: calc(100vh - 140px);
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    max-width: 420px;
    width: 100%;
  }

  .hero-right {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-bg-video {
    object-position: center 42%;
    transform: scale(1.1);
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(14, 15, 23, 0.5) 0%, rgba(16, 17, 25, 0.7) 26%, rgba(18, 20, 29, 0.92) 58%, rgba(18, 20, 29, 0.98) 100%),
      linear-gradient(90deg, rgba(14, 15, 23, 0.76) 0%, rgba(18, 20, 29, 0.28) 100%);
  }

  .stats-grid {
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-box,
  .placeholder-section {
    padding: 36px 24px;
  }

  .faq-category {
    padding: 24px 20px;
  }

  .faq-category-header {
    gap: 12px;
    margin-bottom: 18px;
  }

  .faq-question {
    padding: 18px 18px;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-answer-inner {
    padding: 0 18px;
  }

  .faq-item.is-open .faq-answer-inner {
    padding-bottom: 18px;
  }

  .faq-final-cta-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .page-section-form iframe {
    height: 1500px;
  }

  .about-hero {
    padding: 126px 0 60px;
  }

  .about-section {
    padding: 20px 0 34px;
  }

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

  .about-feature-card,
  .about-family-card,
  .about-story-card,
  .about-purpose-card,
  .about-final-cta,
  .about-split-card {
    padding: 30px 24px;
  }

  .about-list-card {
    padding: 24px 22px 26px;
  }

  .about-final-cta-actions {
    width: 100%;
  }

  .about-final-cta-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .holiday-programs-grid,
  .holiday-expectations-grid {
    grid-template-columns: 1fr;
  }

  .holiday-program-card--side .holiday-program-card-layout {
    grid-template-columns: 1fr;
  }

  .holiday-program-card--side .program-media {
    aspect-ratio: 16 / 9;
  }

  .holiday-program-card--side .holiday-program-card-copy {
    align-items: center;
    text-align: center;
  }

  .holiday-program-card--side .holiday-program-card-head,
  .holiday-program-card--side .holiday-program-body {
    width: min(100%, 28rem);
  }

  .holiday-program-card--side .holiday-program-list {
    width: min(100%, 28rem);
  }

  .holiday-program-card,
  .holiday-feature-card,
  .holiday-love-card,
  .holiday-final-cta {
    padding: 32px 24px;
  }

  .holiday-final-cta.page-inline-cta {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 24px;
    text-align: center;
  }

  .holiday-final-cta.page-inline-cta .page-inline-cta-copy {
    max-width: none;
  }

  .holiday-final-cta.page-inline-cta .page-inline-cta-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .holiday-final-cta.page-inline-cta .page-inline-cta-copy p,
  .holiday-final-cta-highlights {
    max-width: none;
  }

  .holiday-final-cta-highlights {
    text-align: left;
  }

  .holiday-final-cta.page-inline-cta .page-inline-cta-actions {
    width: 100%;
    justify-self: stretch;
  }

  .holiday-final-cta.page-inline-cta .page-inline-cta-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .holiday-final-cta-actions .btn {
    width: 100%;
  }

  .holiday-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .upcoming-meta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    min-height: calc(100vh - 132px);
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .hero-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .info-card {
    width: 100%;
    justify-content: flex-start;
  }

  .info-label {
    max-width: none;
  }

  .hero-badge {
    padding: 8px 16px;
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: clamp(1.95rem, 10vw, 2.6rem);
  }

  .hero-subtitle,
  .hero-actions {
    max-width: 100%;
  }

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

  .holiday-section + .holiday-section {
    margin-top: 28px;
  }

  .holiday-section-header {
    margin-bottom: 28px;
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}






