:root {
  --bg: #0a0e17;
  --bg-alt: #111827;
  --surface: #1a2236;
  --text: #e8ecf4;
  --muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);

  --accent: #7c6cf0;
  --accent-soft: rgba(124, 108, 240, 0.15);
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --gold: #e8c547;

  --radius: 14px;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  color-scheme: dark;
  overflow-y: scroll;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.eyebrow--center {
  text-align: center;
}

.text-center {
  text-align: center;
}

.about-subtitle {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-weight: 500;
  max-width: 22rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.logo span {
  /* Keep full brand name in one color */
  color: inherit;
}

.nav {
  display: none;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--whatsapp));
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  pointer-events: auto;
}

.nav-backdrop.is-open {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 160;
  width: min(300px, 88vw);
  max-height: 100vh;
  max-height: 100dvh;
  flex-direction: column;
  gap: 0.5rem;
  padding: 4.5rem 1.25rem 1.5rem;
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: var(--text);
  padding: 0.65rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav .btn {
  margin-top: 0.75rem;
}

@media (max-width: 767px) {
  .header__inner {
    padding: 0.6rem 0;
  }

  .logo {
    font-size: 1rem;
    max-width: 58vw;
    line-height: 1.25;
  }

  .header__inner .btn--whatsapp {
    display: none;
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .menu-toggle,
  .mobile-nav,
  .nav-backdrop {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 0.75rem 1.4rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.btn--lg {
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #5b4fd4);
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 108, 240, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 36px rgba(124, 108, 240, 0.45);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(124, 108, 240, 0.4);
  background: var(--accent-soft);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 2rem;
  overflow: visible;
  background: linear-gradient(180deg, #121a2e 0%, var(--bg) 100%);
}

.hero__glow {
  position: absolute;
  top: -25%;
  left: 50%;
  width: min(90vw, 720px);
  height: 55vh;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero--center {
  text-align: center;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.hero__title--accent {
  color: var(--accent);
}

.hero__lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

.date-card--hero {
  max-width: 420px;
  margin: 2rem auto 0;
  text-align: left;
  opacity: 1;
  visibility: visible;
}

.stats {
  padding: 2rem 0 2.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stats__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--accent);
  line-height: 1.1;
}

.stats__item span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.hero__highlights li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.hero__highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--whatsapp);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__note {
  font-size: 0.85rem;
  color: var(--muted);
}

.date-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.date-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.date-card__date {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.35rem 0;
}

.date-card__mode {
  font-size: 0.9rem;
  color: var(--muted);
}

.date-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.date-card__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
}

.date-card__price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.date-card__price strong {
  font-size: 1.75rem;
  color: var(--gold);
}

/* Sections */
.section,
.stats,
.hero {
  scroll-margin-top: 5rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .section__split {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.prose p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.about-block {
  display: grid;
  gap: 1.1rem;
}

.about-grid {
  margin-top: 0.25rem;
}

.about-grid > div {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-grid dt {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.about-grid dd {
  color: var(--muted);
  font-weight: 400;
}

.about-title {
  margin: 0.75rem 0 0;
  color: var(--text);
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.about-points li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(124, 108, 240, 0.14);
}

.course-wrap {
  margin-top: 2.25rem;
  display: grid;
  justify-items: center;
}

.course-card {
  width: min(980px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.course-card__top {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 800px) {
  .course-card__top {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
  }
}

.course-card__label {
  margin: 0 0 0.4rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-card__title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
}

.course-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.course-card__price {
  background: var(--accent-soft);
  border: 1px solid rgba(124, 108, 240, 0.22);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  text-align: left;
}

.course-card__price span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.course-card__price strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 2rem;
  color: var(--gold);
}

.course-card__list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.course-card__list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.course-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.course-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Experts */
.experts-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.expert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.expert-card__photo-wrap {
  width: min(280px, 100%);
  margin: 0 auto 1.25rem;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 3px solid var(--accent-soft);
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.expert-card__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.expert-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.expert-card__role {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.45;
}

.expert-card__bio {
  text-align: left;
}

.expert-card__bio p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.expert-card__bio p:last-child {
  margin-bottom: 0;
}

.vision-box {
  margin-top: 2.5rem;
  text-align: center;
  background: var(--accent-soft);
  border: 1px solid rgba(124, 108, 240, 0.22);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.5rem;
}

.vision-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.vision-box p {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card__icon {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.details-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .details-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .details-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.details-list > div {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.details-list dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.details-list dd {
  margin: 0;
  font-weight: 500;
}

.section--cta {
  padding: 2rem 0 4rem;
}

.cta-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(124, 108, 240, 0.22);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 4px);
  padding: 3rem 1.5rem;
}

.cta-box p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 0.25rem 1.25rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--accent);
}

.faq p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 2rem 0 5rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer__wa {
  color: var(--whatsapp);
  font-weight: 600;
}

/* FAB */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.15s;
}

.fab:hover {
  transform: scale(1.06);
}

.fab svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* Modal */
.modal {
  border: none;
  padding: 0;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  max-width: 420px;
  width: calc(100% - 2rem);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal__form {
  padding: 2rem 1.75rem;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.modal__close:hover {
  color: var(--text);
}

.modal h2 {
  font-size: 1.5rem;
}

.modal__hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.modal label {
  display: block;
  margin-bottom: 1rem;
}

.modal label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.modal input,
.modal select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--text);
}

.modal input:focus,
.modal select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .hero__glow {
    animation: glowPulse 7s ease-in-out infinite;
  }

  .hero-enter {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.75s ease forwards;
  }

  .reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal--d1 {
    transition-delay: 0.1s;
  }
  .reveal--d2 {
    transition-delay: 0.2s;
  }
  .reveal--d3 {
    transition-delay: 0.3s;
  }

  .course-card,
  .expert-card,
  .date-card,
  .details-list > div {
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      border-color 0.28s ease;
  }

  .course-card:hover,
  .expert-card:hover,
  .date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }

  .btn--primary,
  .btn--whatsapp {
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease;
  }

  .btn--primary:hover,
  .btn--whatsapp:hover {
    transform: translateY(-2px);
  }

  .fab {
    animation: fabPulse 2.5s ease-in-out infinite;
  }

  .modal[open] .modal__form {
    animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav.is-open {
    animation: slideMenu 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-backdrop.is-open {
    animation: fadeIn 0.25s ease;
  }

  .scroll-progress__bar {
    box-shadow: 0 0 12px rgba(124, 108, 240, 0.6);
    transition: width 0.08s linear;
  }

  .header--scrolled {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  }

  .header--scrolled .header__inner {
    padding: 0.5rem 0;
  }

  .hero__title--accent {
    background: linear-gradient(
      120deg,
      #a89bff,
      var(--accent),
      #6ee7b7,
      var(--accent)
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 6s ease infinite;
  }

  .date-card--hero.hero-date-visible {
    animation: floatCard 5s ease-in-out infinite;
    animation-delay: 0.5s;
    opacity: 1;
  }

  .btn--primary {
    position: relative;
    overflow: hidden;
  }

  .btn--primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.28),
      transparent
    );
    animation: btnShine 3.5s ease-in-out infinite;
  }

  .nav a {
    position: relative;
  }

  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .nav a:hover::after {
    transform: scaleX(1);
  }

  .expert-card__photo-wrap {
    transition: transform 0.4s ease;
  }

  .expert-card:hover .expert-card__photo-wrap {
    transform: scale(1.04);
  }

  .expert-card:hover .expert-card__photo {
    transform: scale(1.06);
  }

  .expert-card__photo {
    transition: transform 0.4s ease;
  }

  .vision-box {
    animation: visionGlow 4s ease-in-out infinite;
  }

  .faq details {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .faq details[open] {
    border-color: rgba(124, 108, 240, 0.35);
    box-shadow: 0 8px 28px rgba(124, 108, 240, 0.12);
  }

  .faq summary {
    transition: color 0.2s ease, padding-left 0.25s ease;
  }

  .faq details[open] summary {
    padding-left: 0.35rem;
  }

  .list-enter {
    opacity: 0;
    transform: translateX(-12px);
    animation: listSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .about-points .list-enter {
    transform: translateX(-10px);
  }

  .reveal--scale:not(.is-visible) {
    transform: translateY(26px) scale(0.97);
  }

  .reveal--scale.is-visible {
    transform: translateY(0) scale(1);
  }

  .reveal--left:not(.is-visible) {
    transform: translateX(-28px);
  }

  .reveal--left.is-visible {
    transform: translateX(0);
  }

  .stats__item strong {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .stats__item.is-visible strong {
    animation: statPop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .eyebrow {
    animation: eyebrowFade 1s ease 0.2s both;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@keyframes btnShine {
  0%,
  70%,
  100% {
    left: -120%;
  }
  85% {
    left: 140%;
  }
}

@keyframes visionGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(124, 108, 240, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(124, 108, 240, 0.18);
  }
}

@keyframes listSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes statPop {
  0% {
    transform: scale(0.85);
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes eyebrowFade {
  from {
    opacity: 0;
    letter-spacing: 0.2em;
  }
  to {
    opacity: 1;
    letter-spacing: 0.12em;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fabPulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideMenu {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
