:root {
  /* Dark Premium Palette */
  --bg-color: #050505;
  --card-bg: rgba(26, 26, 26, 0.6);
  --card-light: rgba(36, 36, 36, 0.6);
  --accent: #fbb308;
  --accent-hover: #e5a307;
  --accent-glow: rgba(251, 179, 8, 0.15);
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  
  /* Typography */
  --font-main: 'Rubik', sans-serif;
  --font-accent: 'Montserrat Alternates', sans-serif;
  
  /* Spacing & Borders */
  --radius-card: 32px;
  --radius-pill: 100px;
  --section-gap: 48px;           /* Gap BETWEEN card blocks */
  --card-padding: clamp(32px, 4vw, 52px); /* Internal padding inside cards */
  --header-h: 60px;              /* Fixed header height for offset calc */
  --content-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Glows */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 15% 50%, var(--accent-glow) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.02) 0%, transparent 50%);
}

img {
  max-width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

/* Typography Classes */
.heading-xl {
  font-family: var(--font-accent);
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(to right, #ffffff, #dcdcdc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-lg {
  font-family: var(--font-accent);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.heading-md {
  font-family: var(--font-accent);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: 12px;
}

.body-text {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.label-badge {
  display: inline-block;
  width: fit-content;                    /* ← fix: no stretching */
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

/* Layout */
.container {
  max-width: var(--content-width);
  margin-inline: auto;  /* horizontal centering only — don't zero vertical margins */
  padding: 0 24px;
}

/* Gap between top-level section blocks */
section.container {
  margin-bottom: var(--section-gap);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn--accent {
  background-color: var(--accent);
  color: #000;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn--accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(251, 179, 8, 0.3);
}

.btn--outline {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  border-color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
  background-color: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
  font-size: 15px;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 8px;
}

/* Toggle icons inside burger button */
.burger-btn .icon-hamburger { display: block; }
.burger-btn .icon-close    { display: none;  }
.burger-btn.is-active .icon-hamburger { display: none;  }
.burger-btn.is-active .icon-close    { display: block; }

/* Hero Section */
.hero {
  padding-top: 70px;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--section-gap);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  height: 82vh;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

.hero-tags span:not(:last-child)::after {
  content: "•";
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 75vh;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-position: center;
  border-radius: var(--radius-card);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #050505 0%, transparent 30%, transparent 70%, rgba(5,5,5,0.4) 100%);
  pointer-events: none;
}

/* Cards (Sections) */
.card-section {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  /* Viewport height minus header; capped so big monitors don't get giant blocks */
  height: min(calc(100svh - var(--header-h)), 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.card-section--light {
  background: var(--card-light);
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  flex: 1;
}

.problem-card {
  background: rgba(0, 0, 0, 0.35);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.1);
}

.problem-icon {
  font-size: 36px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.problem-card .problem-icon {
  margin-bottom: 0;
  grid-row: 1;
  grid-column: 1;
}

.problem-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.problem-card .problem-title {
  margin-bottom: 0;
  grid-row: 1;
  grid-column: 2;
}

.problem-card .problem-desc {
  grid-row: 2;
  grid-column: 1 / span 2;
}

/* Two Col Layouts (Program, Format, Expert) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;        /* Stretch so image col fills full card height */
  flex: 1;
  min-height: 0;               /* Allow shrinking inside flex parent */
}

.image-col {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.image-col img {
  width: 100%;
  height: 100%;                /* Fill the entire stretched column */
  min-height: 300px;           /* Ensure visible on short content blocks */
  object-fit: cover;
  object-position: center center;
  border-radius: 24px;
  display: block;
}

/* Program / Format List Items */
.program-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.program-item {
  display: flex;
  gap: 24px;
  align-items: center;          /* ← vertically center icon/num with item */
}

.program-num {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
  width: 40px;
  flex-shrink: 0;
  line-height: 1;
  text-align: center;
  align-self: center;           /* Extra guarantee */
}

/* Compact program item text */
.program-item .problem-title {
  margin-bottom: 4px;
  font-size: 17px;
}

.program-item .problem-desc {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.program-item .problem-icon {
  font-size: 40px;
  margin-bottom: 0;
}

/* Cases Grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  flex: 1;
}

.case-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.case-time {
  display: inline-block;
  color: #000;
  background-color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-card .problem-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.case-card .problem-desc {
  font-size: 13px;
}

/* Expert Tags */
.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.expert-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  transition: background 0.3s ease;
}

.expert-tag:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  font-family: var(--font-main);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  font-size: 28px;
  color: var(--accent);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
  font-size: 18px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 32px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Contact Options (Form + Messengers) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  flex: 1;
}

.contact-info {
  padding-right: 40px;
}

/* Social CTAs */
.social-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.social-btn {
  display: flex;
  align-items: center;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-btn svg {
  margin-right: 16px;
  color: var(--accent);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateX(8px);
}

/* Form */
.form-container {
  background: rgba(0, 0, 0, 0.3);
  padding: 48px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 16px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
}

select.form-input option {
  background-color: var(--card-bg);
  color: var(--text-main);
}

/* Validation error state */
.form-group.error .form-input {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.05);
}

.error-text {
  color: #f87171;
  font-size: 13px;
  margin-top: 6px;
  padding-left: 4px;
  display: block;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 400px;
  background-color: var(--accent);
  color: #000;
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  z-index: 90;
  box-shadow: 0 8px 32px rgba(251, 179, 8, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
}

.mobile-sticky-cta.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mobile-sticky-cta.hidden {
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  pointer-events: none;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  /* No border-top — clean separation handled by card gap */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.footer-col p, .footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 16px;
  display: block;
  font-size: 16px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 40px;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 28px;
  font-family: var(--font-accent);
  font-weight: 600;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero .container, .two-col, .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .two-col .image-col {
    order: -1;
  }
  
  .image-col img {
    aspect-ratio: 16 / 9;     /* Wider on tablet so doesn't feel tall */
    height: auto;
    min-height: unset;
  }

  .hero .container {
    height: auto;
  }
  
  /* On tablet keep image but constrain height */
  .hero-image-wrapper {
    height: 35vh;
    min-height: 180px;
    max-height: 280px;
    display: block;  /* stays visible on tablet */
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  
  .burger-btn {
    display: block;
  }
  
  .card-section {
    padding: 28px 20px;
    border-radius: 24px;
    /* Mobile: fill viewport minus header, but grow naturally if content is taller.
       This means Problems/Cases will be ~1.2-1.4× screen — expected and acceptable. */
    min-height: calc(100svh - var(--header-h));
    height: auto;
    overflow: hidden;     /* keep, but no Y scroll — block grows to fit content */
  }

  /* Hero: show only text on mobile, ⁠hide image column */
  .hero {
    padding-top: 80px;
    height: 100svh;
    min-height: unset;
    max-height: 100svh;
    align-items: flex-start;  /* top-align so content starts right under header */
  }

  .hero .container {
    grid-template-columns: 1fr;  /* Single column */
    align-items: flex-start;
    padding-top: 12px;
    height: auto;
  }

  .hero-image-wrapper {
    display: none;               /* ← hide image on mobile; no overflow or crop */
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100svh - 80px); /* fill available space below header */
  }
  
  /* On mobile: images in two-col use fixed height, object-position ensures
     sensible crop (not just the very top being shown) */
  .image-col img {
    height: 220px;
    width: 100%;
    object-position: center center;
    border-radius: 16px;
  }

  /* Remove heavy expert tags spacing on mobile */
  .expert-tags {
    margin-top: 20px;
    gap: 8px;
  }

  .expert-tag {
    padding: 8px 16px;
    font-size: 13px;
  }

  .problems-grid, .cases-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding-right: 0;
  }

  .form-container {
    padding: 28px 20px;
  }

  .mobile-sticky-cta {
    display: block;
  }
  
  .footer {
    padding-bottom: 120px;
  }
}

/* Privacy Modal */
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.privacy-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.privacy-content {
  background: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 800px;
  max-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.privacy-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s;
}

.privacy-close:hover {
  color: var(--accent);
}

.privacy-body {
  padding: 40px;
  overflow-y: auto;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.privacy-body h2 {
  font-family: var(--font-accent);
  font-size: 28px;
  color: var(--text-main);
  margin-bottom: 24px;
}

.privacy-body h3 {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--text-main);
  margin-top: 24px;
  margin-bottom: 12px;
}

.privacy-body p, .privacy-body ul {
  margin-bottom: 16px;
}

.privacy-body ul {
  padding-left: 24px;
}

.privacy-body a {
  color: var(--accent);
  text-decoration: none;
}

.privacy-body a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .privacy-content {
    max-height: 90vh;
    border-radius: 24px;
  }

  .privacy-body {
    padding: 52px 20px 28px;
  }

  .privacy-body h2 {
    font-size: 22px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .privacy-body h3 {
    font-size: 16px;
  }

  .privacy-close {
    top: 14px;
    right: 16px;
  }
}

/* LaLuna Logo Block */
.laluna-logo-block {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 24px;
  background: linear-gradient(145deg, #080814 0%, #140826 60%, #0a0a1a 100%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

/* subtle top-right nebula */
.laluna-logo-block::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
  top: -40px;
  right: -40px;
  pointer-events: none;
}


/* Moon fills the whole block; mix-blend-mode:screen removes black bg → sphere only */
.laluna-moon-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  z-index: 2;
  opacity: 0.88;
}

/* Huge LALUNA wordmark behind the moon */
.laluna-wordmark {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 8px;
  line-height: 1;
  z-index: 1; /* behind the moon via blend mode */
  user-select: none;
  white-space: nowrap;
}

/* Subtitle below the wordmark */
.laluna-subtitle {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 3;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.laluna-subtitle span {
  color: rgba(255,255,255,0.55);
  display: block;
}

/* LaLuna card variant */
.card-section--laluna {
  background: linear-gradient(145deg, #0d0b1f 0%, #130d28 100%);
  border-color: rgba(168, 85, 247, 0.15);
}

/* Content col compact overrides */
.laluna-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.laluna-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.laluna-link {
  color: #c084fc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.laluna-link:hover { color: #e9d5ff; }

/* Compact list items for LaLuna */
.laluna-list {
  gap: 12px;
  margin-bottom: 20px;
}

.laluna-list .program-item {
  gap: 14px;
  align-items: flex-start;
}

.laluna-icon-wrap {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}

.laluna-list .problem-title {
  font-size: 15px;
  margin-bottom: 2px;
}

.laluna-list .problem-desc {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255,255,255,0.5);
}

/* LaLuna CTA button — purple outline */
.btn--laluna {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(192, 132, 252, 0.5);
  color: #c084fc;
  background: rgba(168, 85, 247, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.btn--laluna:hover {
  border-color: #c084fc;
  background: rgba(168, 85, 247, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
}

/* Mobile */
@media (max-width: 900px) {
  .laluna-logo-block {
    min-height: 220px;
    height: 220px;
    border-radius: 16px;
  }

  .laluna-wordmark {
    font-size: clamp(32px, 11vw, 56px);
    letter-spacing: 5px;
    bottom: 26%;
  }

  .laluna-subtitle {
    font-size: 11px;
    bottom: 14px;
  }

  .laluna-desc {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .laluna-list {
    gap: 10px;
    margin-bottom: 16px;
  }
}
