/* ============================================================
   LAUNCH LOCAL -- Main Stylesheet
   Theme Version: 1.0.0
   ============================================================ */

/* -- GOOGLE FONTS (loaded via functions.php wp_enqueue_style) -- */

/* -- TOKENS --------------------------------------------------- */
:root {
  --navy:          #0D1B5E;
  --magenta:       #D4337A;
  --magenta-light: #F0558F;
  --blush:         #FCF0F5;
  --off-white:     #F7F7F5;
  --gray:          #6B7280;
  --dark:          #111827;
  --white:         #FFFFFF;

  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Inter', sans-serif;

  --max-w:         1120px;
  --section-pad:   5rem 1.5rem;
}

/* -- RESET ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }

/* -- UTILITIES ------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75rem;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
}
.btn:hover         { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-primary       { background: var(--magenta); color: var(--white); }
.btn-outline       { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }

/* -- NAVBAR ---------------------------------------------------- */
.ll-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 94, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ll-navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.ll-navbar-brand span { color: var(--magenta-light); }
.ll-navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.ll-navbar-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.ll-navbar-links a:hover { color: var(--magenta-light); }

/* Mobile hamburger */
.ll-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.ll-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}
.ll-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ll-nav-toggle.open span:nth-child(2) { opacity: 0; }
.ll-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -- HERO ------------------------------------------------------ */
.ll-hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.ll-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 79px, rgba(255,255,255,0.03) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.03) 80px);
  pointer-events: none;
}
/* Signature: diagonal launch-ramp accent */
.ll-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -60px;
  width: 55%; height: 140%;
  background: linear-gradient(135deg, var(--magenta) 0%, #7B1FA2 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.12;
  pointer-events: none;
}
.ll-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  min-height: 500px;
}
.ll-hero-kicker {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.ll-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.ll-hero h1 em { font-style: normal; color: var(--magenta-light); }
.ll-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.ll-hero-ctas   { display: flex; gap: 1rem; flex-wrap: wrap; }
.ll-hero-stats  {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.ll-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--magenta-light);
  line-height: 1;
}
.ll-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Logo lockup (right column) */
.ll-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}
.ll-logo-lockup {
  width: 420px;
  height: 420px;
  background: #0D1B5E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  isolation: isolate;
}
.ll-custom-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  display: block;
}
.ll-logo-lockup a,
.ll-logo-lockup a:hover {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ll-rocket-fallback {
  width: 260px;
  height: 260px;
}
.ll-logo-text {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
}
.ll-logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
/* orbit ring removed */

/* -- SECTION DIVIDERS (angled launch-ramp) --------------------- */
.ll-divider-navy-down {
  height: 80px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}
.ll-divider-white-up {
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
  margin-top: -1px;
}
.ll-divider-navy-up {
  height: 80px;
  background: var(--navy);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}
.ll-divider-blush-down {
  height: 80px;
  background: var(--blush);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}

/* -- MISSION --------------------------------------------------- */
.ll-mission {
  padding: var(--section-pad);
  background: var(--off-white);
}
.ll-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ll-mission h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.ll-mission p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.ll-mission p strong { color: var(--dark); font-weight: 600; }
.ll-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ll-pillar {
  background: var(--white);
  border-left: 4px solid var(--magenta);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
}
.ll-pillar-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.ll-pillar p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* -- NEXT EVENT ------------------------------------------------ */
.ll-event {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.ll-event::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--magenta);
  opacity: 0.07;
  pointer-events: none;
}
.ll-event .eyebrow  { color: var(--magenta-light); }
.ll-event h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--white);
  margin-bottom: 2.5rem;
}
.ll-event-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 2rem;
  align-items: start;
}
.ll-event-div   { background: rgba(255,255,255,0.12); height: 100%; min-height: 80px; }
.ll-event-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta-light);
  margin-bottom: 0.5rem;
}
.ll-event-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.1;
}
.ll-event-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

/* -- SPONSORSHIP TIERS ----------------------------------------- */
.ll-sponsors {
  padding: 3rem 1.5rem 5rem;
  background: var(--white);
}
.ll-sponsors-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
}
.ll-sponsors-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}
.ll-sponsors-header p { color: var(--gray); font-size: 1rem; }
.ll-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ll-tier {
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ll-tier.presenting { background: var(--navy); color: var(--white); }
.ll-tier.champion   { background: var(--blush); }
.ll-tier.innovation { background: var(--off-white); }
.ll-tier.supporter  { background: var(--off-white); }
.ll-tier-icon  { font-size: 1.8rem; }
.ll-tier-name  {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}
.ll-tier.presenting .ll-tier-name { color: var(--white); }
.ll-tier:not(.presenting) .ll-tier-name { color: var(--navy); }
.ll-tier-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--magenta);
  line-height: 1;
}
.ll-tier.presenting .ll-tier-price { color: var(--magenta-light); }
.ll-tier-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--gray);
  flex-grow: 1;
}
.ll-tier.presenting .ll-tier-perks { color: rgba(255,255,255,0.7); }
.ll-tier-perks li::before { content: '\2713  '; color: var(--magenta); font-weight: 700; }
.ll-tier.presenting .ll-tier-perks li::before { color: var(--magenta-light); }
.ll-tier-cta {
  margin-top: auto;
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-align: center;
  background: var(--magenta);
  color: var(--white);
  transition: opacity 0.15s, transform 0.15s;
}
.ll-tier-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.ll-tier:not(.presenting) .ll-tier-cta { background: var(--navy); }
.ll-sponsor-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
}
.ll-sponsor-note a { color: var(--magenta); font-weight: 600; }

/* -- HOW IT WORKS ---------------------------------------------- */
.ll-how {
  padding: var(--section-pad);
  background: var(--blush);
}
.ll-how-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.ll-how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--navy);
}
.ll-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ll-step {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
}
.ll-step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--magenta);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -0.75rem;
}
.ll-step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.ll-step-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
}

/* -- CTA BAND -------------------------------------------------- */
.ll-cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--navy) 40%, #2D1B69 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ll-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212,51,122,0.2);
  pointer-events: none;
}
.ll-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.ll-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.ll-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* -- FOOTER ---------------------------------------------------- */
.ll-footer {
  background: var(--dark);
  padding: 2.5rem 1.5rem;
}
.ll-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ll-footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.08em;
}
.ll-footer-brand span { color: var(--magenta); }
.ll-footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.2rem;
}
.ll-footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.ll-footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.ll-footer-links a:hover { color: var(--magenta-light); }
.ll-footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* -- WORDPRESS ALIGNMENT HELPERS ------------------------------- */
.alignleft   { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright  { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
.wp-block-image img { height: auto; }

/* -- ADMIN BAR OFFSET ------------------------------------------ */
.admin-bar .ll-navbar { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .ll-navbar { top: 46px; } }

/* -- RESPONSIVE ------------------------------------------------ */
@media (max-width: 1024px) {
  .ll-tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ll-hero-inner     { grid-template-columns: 1fr; }
  .ll-hero-visual    { display: none; }
  .ll-mission-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .ll-steps          { grid-template-columns: 1fr 1fr; }
  .ll-event-card     { grid-template-columns: 1fr; }
  .ll-event-div      { display: none; }
  .ll-navbar-links   { display: none; }
  .ll-nav-toggle     { display: block; }
  /* Mobile nav open state */
  .ll-navbar.nav-open .ll-navbar-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13, 27, 94, 0.98);
    padding: 1.5rem;
    gap: 1.25rem;
  }
}
@media (max-width: 600px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .ll-tiers  { grid-template-columns: 1fr; }
  .ll-steps  { grid-template-columns: 1fr; }
  .ll-hero-stats { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .ll-logo-lockup::before { animation: none; }
  .btn, .ll-tier-cta      { transition: none; }
}

/* -- PHOTO GALLERY ------------------------------------------------- */
.ll-gallery {
  background: var(--dark);
  padding-bottom: 3rem;
  overflow: hidden;
}
.ll-gallery-header {
  padding: 4rem 0 2.5rem;
}
.ll-gallery-header .eyebrow { color: var(--magenta-light); }
.ll-gallery-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.ll-gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--white);
  line-height: 1;
}
.ll-gallery-track-wrap {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}
.ll-gallery-track-wrap:active { cursor: grabbing; }
.ll-gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: ll-gallery-scroll 40s linear infinite;
}
.ll-gallery-track:hover { animation-play-state: paused; }
.ll-gallery-slide {
  flex-shrink: 0;
  width: 480px;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
}
.ll-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ll-gallery-slide:hover img { transform: scale(1.04); }
@keyframes ll-gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .ll-gallery-slide { width: 320px; height: 213px; }
}

/* -- SIGNUP SECTION ------------------------------------------------ */
.ll-signup {
  background: var(--blush);
  padding: var(--section-pad);
}
.ll-signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ll-signup .eyebrow { color: var(--magenta); }
.ll-signup-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.ll-signup-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
}
.ll-signup-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.ll-form-row {
  margin-bottom: 1.25rem;
}
.ll-form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ll-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ll-form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ll-form-group label span {
  color: var(--magenta);
}
.ll-form-group input {
  padding: 0.75rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
}
.ll-form-group input:focus {
  border-color: var(--magenta);
}
.ll-form-group input::placeholder {
  color: #9CA3AF;
}
.ll-signup-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.15s, transform 0.15s;
}
.ll-signup-btn:hover {
  background: var(--magenta-light);
  transform: translateY(-1px);
}
.ll-signup-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 0.85rem;
}
@media (max-width: 900px) {
  .ll-signup-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ll-form-row--2 { grid-template-columns: 1fr; }
}