:root {
  --color-primary: #7424ac;
  --color-primary-dark: #56198e;
  --color-primary-light: #a76bdb;
  --color-accent: #fcd739;
  --color-accent-dark: #f0c915;
  --color-surface: #ffffff;
  --color-surface-alt: rgba(255, 255, 255, 0.9);
  --color-text: #1d1135;
  --color-muted: #594076;
  --color-border: rgba(116, 36, 172, 0.18);
  --shadow-sm: 0 12px 30px rgba(45, 16, 83, 0.12);
  --shadow-md: 0 24px 60px rgba(45, 16, 83, 0.16);
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-surface);
  background: radial-gradient(circle at 12% 18%, #8a33d1 0%, #601ba5 40%, #3b0f70 70%, #1f0a3a 100%);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-logo .logo {
  max-height: 60px;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(10px);
  background: rgba(252, 215, 57, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

.header-container {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  background: white;
  color: var(--color-primary-dark);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(34, 4, 70, 0.2);
  color: var(--color-primary);
}

.nav-button.primary {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  box-shadow: 0 12px 24px rgba(252, 215, 57, 0.35);
}

.nav-button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(252, 215, 57, 0.45);
}

.nav-button.danger {
  background: linear-gradient(120deg, #ef524f 0%, #d43144 100%);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.nav-button.danger:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

main.landing {
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 96px;
  color: var(--color-surface);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  margin: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.hero-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.hero-cta-button.primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #3a1060;
  box-shadow: 0 22px 40px rgba(252, 215, 57, 0.35);
}

.hero-cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 48px rgba(252, 215, 57, 0.45);
}

.hero-cta-button.ghost {
  background: rgba(64, 15, 110, 0.34);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-cta-button.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 30px rgba(58, 6, 110, 0.28);
  background: rgba(64, 15, 110, 0.55);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(51, 12, 94, 0.7);
  box-shadow: inset 0 0 0 1px rgba(252, 215, 57, 0.16), 0 20px 45px rgba(21, 12, 42, 0.28);
}

.meta-heading {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-weight: 600;
}

.meta-body {
  font-size: 16px;
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(239, 218, 255, 0.96) 100%);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(252, 215, 57, 0.2);
  color: var(--color-text);
}

.hero-card h2 {
  margin: 0 0 20px;
  font-size: 22px;
  color: var(--color-primary-dark);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.hero-card li {
  padding-left: 32px;
  position: relative;
  color: var(--color-muted);
}

.hero-card li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.highlights h2 {
  margin: 0;
  font-size: 32px;
  text-align: center;
  color: var(--color-accent);
}

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

.highlight-grid article {
  background: rgba(56, 12, 102, 0.74);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(252, 215, 57, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(15, 4, 40, 0.28);
}

.highlight-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--color-accent);
}

.highlight-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.programme {
  display: grid;
  gap: 28px;
  background: rgba(37, 7, 70, 0.78);
  padding: 48px;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(252, 215, 57, 0.18);
}

.programme-header h2 {
  margin: 0 0 12px;
  font-size: 30px;
  color: var(--color-accent);
}

.programme-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

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

.programme-timeline li {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: start;
  gap: 24px;
  padding: 20px 24px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(116, 36, 172, 0.6) 0%, rgba(67, 14, 110, 0.85) 100%);
  border: 1px solid rgba(252, 215, 57, 0.18);
}

.programme-timeline .time {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}

.programme-timeline h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.programme-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.membership {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: stretch;
}

.membership-card {
  background: linear-gradient(140deg, #7424ac 0%, #56198e 45%, #40106b 100%);
  color: #ffffff;
  padding: 40px;
  border-radius: 32px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 24px;
}

.membership-card h2 {
  margin: 0;
  font-size: 30px;
}

.membership-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.membership-card li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
}

.membership-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-size: 28px;
  line-height: 0.8;
}

.membership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.membership-actions .hero-cta-button {
  padding: 12px 24px;
  font-size: 15px;
}

.membership-actions .hero-cta-button.ghost {
  background: rgba(252, 215, 57, 0.18);
  color: #ffffff;
  border-color: rgba(252, 215, 57, 0.32);
}

.membership-actions .hero-cta-button.ghost:hover {
  background: rgba(252, 215, 57, 0.32);
}

.membership-stats {
  background: rgba(45, 10, 78, 0.75);
  border-radius: 28px;
  padding: 32px;
  display: grid;
  gap: 20px;
  align-content: center;
  border: 1px solid rgba(252, 215, 57, 0.24);
  box-shadow: var(--shadow-sm);
}

.membership-stats div {
  display: grid;
  gap: 4px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.testimonials {
  background: linear-gradient(140deg, rgba(116, 36, 172, 0.4) 0%, rgba(252, 215, 57, 0.18) 100%);
  border-radius: 32px;
  padding: 52px;
  display: grid;
  gap: 28px;
}

.testimonials h2 {
  margin: 0;
  text-align: center;
  font-size: 32px;
  color: var(--color-accent);
}

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

.testimonial-grid figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 32px rgba(10, 3, 24, 0.32);
  border: 1px solid rgba(252, 215, 57, 0.16);
  display: grid;
  gap: 16px;
}

.testimonial-grid blockquote {
  margin: 0;
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial-grid figcaption {
  font-size: 14px;
  color: rgba(252, 215, 57, 0.72);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(120deg, rgba(116, 36, 172, 0.8) 0%, rgba(64, 11, 102, 0.9) 60%, rgba(252, 215, 57, 0.24) 100%);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(252, 215, 57, 0.16);
}

.cta-banner h2 {
  margin: 0 0 12px;
  font-size: 30px;
  color: var(--color-accent);
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
}

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

.faq {
  display: grid;
  gap: 28px;
}

.faq h2 {
  margin: 0;
  text-align: center;
  font-size: 32px;
  color: var(--color-accent);
}

.faq dl {
  margin: 0;
  display: grid;
  gap: 20px;
}

.faq-item {
  background: rgba(33, 6, 58, 0.82);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(252, 215, 57, 0.14);
}

.faq-item dt {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-accent);
}

.faq-item dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

/* ===== MOBILE-SIDEBAR / DRAWER ===== */

@media (max-width: 768px) {
  .header-container {
    padding: 18px 18px;
  }

  .site-title {
    position: static;
    transform: none;
    font-size: 18px;
    letter-spacing: 0.12em;
    white-space: normal;
    text-align: left;
  }

  .nav-buttons {
    display: none;
  }

  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    z-index: 1100;
  }

  .hamburger {
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    font-weight: bold;
  }

  .mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 230px;
    height: 100vh;
    background: linear-gradient(145deg, #7424ac 0%, #3d0a6b 100%);
    padding: 28px 20px;
    box-shadow: 24px 0 40px rgba(8, 2, 20, 0.45);
    border-right: 1px solid rgba(252, 215, 57, 0.2);
    transition: left 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-sidebar.open {
    left: 0;
  }

  .sidebar-nav {
    flex: 1;
    display: grid;
    gap: 12px;
    text-align: center;
    max-height: 10%;
  }

  .sidebar-link {
    display: block;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 16px;
    border: 1px solid rgba(252, 215, 57, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .sidebar-link:hover {
    background: rgba(252, 215, 57, 0.28);
    color: #1e0837;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }

  .logout-button {
    margin-top: auto;
    background: linear-gradient(120deg, #ef524f 0%, #d43144 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .logout-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }

  body.mobile-sidebar-open {
    overflow: hidden;
  }
}

@media (min-width: 769px) {
  .mobile-nav,
  .mobile-sidebar {
    display: none;
  }
}

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

  .hero-card {
    order: 0;
  }

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

  .programme-timeline li {
    grid-template-columns: 100px auto;
  }

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

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

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

@media (max-width: 720px) {
  main.landing {
    padding: 96px 20px 72px;
    gap: 72px;
  }

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

  .programme {
    padding: 32px 24px;
  }

  .programme-timeline li {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 50%;
  }

  .hero-cta-button {
    width: 100%;
  }

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

  .membership-card,
  .membership-stats,
  .testimonials,
  .cta-banner {
    padding: 28px 24px;
  }
}
