/* Landing Space HUD layout */
.lc-parallax-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lc-section-parallax {
  position: absolute;
  inset: -14% 0;
  z-index: 0;
  pointer-events: none;
}
.lc-section-parallax-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0) scale(1.12);
  will-change: transform;
}
.lc-section-parallax-veil {
  position: absolute;
  inset: 0;
}
.lc-section-parallax-veil--top {
  background:
    linear-gradient(180deg, rgba(2, 11, 24, 0.35) 0%, rgba(2, 11, 24, 0.55) 42%, rgba(2, 11, 24, 0.72) 100%),
    radial-gradient(ellipse at 70% 28%, rgba(0, 212, 232, 0.14), transparent 50%),
    radial-gradient(ellipse at 20% 75%, rgba(27, 108, 255, 0.09), transparent 52%);
}
.lc-section-parallax-veil--hero {
  background:
    linear-gradient(180deg, rgba(2, 11, 24, 0.42), rgba(2, 11, 24, 0.72)),
    radial-gradient(ellipse at 70% 35%, rgba(0, 212, 232, 0.16), transparent 52%);
}
.lc-section-parallax-veil--why {
  background:
    linear-gradient(180deg, rgba(2, 11, 24, 0.55), rgba(2, 11, 24, 0.82)),
    radial-gradient(ellipse at 30% 20%, rgba(27, 108, 255, 0.14), transparent 50%);
}
.lc-top-sky .lc-section-parallax-bg {
  /* Tall 3:4 asset — cover without upscaling a 16:9 crop */
  background-size: cover;
  background-position: center top;
}
.lc-parallax-section > .lc-shell,
.lc-top-sky > .lc-hero,
.lc-top-sky > .lc-section {
  position: relative;
  z-index: 1;
}

.lc-hero {
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}
.lc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.lc-hero-brand {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 8px;
}
.lc-hero-kicker {
  display: block;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}
.lc-hero-subtitle {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 24px;
}
.lc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.lc-hud-gauge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 212, 232, 0.45);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 212, 232, 0.15);
}
.lc-hud-gauge::after {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e8f7ff 0%, #c5d0d8 38%, #8a93a0 72%, #5c6570 100%);
  box-shadow:
    inset -4px -2px 6px rgba(20, 24, 32, 0.45),
    0 0 14px rgba(200, 220, 240, 0.35);
}
.lc-hud-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lc-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.lc-orbit {
  position: absolute;
  inset: 8% 6%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 212, 232, 0.28);
  animation: lc-spin 48s linear infinite;
}
.lc-orbit-2 {
  inset: 18% 16%;
  border-style: solid;
  border-color: rgba(27, 108, 255, 0.25);
  animation-duration: 36s;
  animation-direction: reverse;
}
.lc-planet-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 212, 232, 0.2),
    0 0 60px rgba(0, 212, 232, 0.25),
    0 30px 80px rgba(0, 0, 0, 0.45);
}
.lc-planet-wrap img,
.lc-planet-wrap video.lc-hero-planet-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lc-planet-wrap video.lc-hero-planet-video {
  background: #020B18;
}

/* Moon satellite: slow orbit around Earth */
.lc-moon-orbit {
  position: absolute;
  z-index: 2;
  width: min(100%, 540px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: lc-moon-orbit-spin 72s linear infinite;
}
.lc-moon-orbit .lc-hud-gauge {
  position: absolute;
  top: 0;
  left: 50%;
  width: 52px;
  height: 52px;
  margin: 0 0 0 -26px;
  animation: lc-moon-counter-spin 72s linear infinite;
}
@keyframes lc-spin {
  to { transform: rotate(360deg); }
}
@keyframes lc-moon-orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes lc-moon-counter-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.lc-mid3,
.lc-mid6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lc-mid3 article h3,
.lc-mid6 article h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.lc-mid3 article p,
.lc-mid6 article p { color: var(--muted); font-size: 15px; }
.lc-mid3 article,
.lc-mid6 article {
  padding: 22px;
}
.lc-why-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lc-why-level {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.lc-why-illust {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  margin: 2px 0 6px;
  border: 1px solid rgba(0, 212, 232, 0.28);
  box-shadow: 0 0 24px rgba(0, 212, 232, 0.12);
  background: rgba(0, 212, 232, 0.06);
}
.lc-why-illust img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lc-cards4,
.lc-cards6 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lc-cards6 {
  grid-template-columns: repeat(3, 1fr);
}
.lc-cosmic-card {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  text-align: center;
}
.lc-cosmic-card .lc-cat {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.lc-cosmic-orb {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 232, 0.35);
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.2), transparent 45%), rgba(0, 212, 232, 0.08);
  box-shadow: 0 0 20px rgba(0, 212, 232, 0.2);
  overflow: hidden;
}
.lc-cosmic-orb svg { width: 34px; height: 34px; color: var(--accent); }
.lc-cosmic-orb-img {
  width: min(100%, 140px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 16px;
  background: rgba(0, 212, 232, 0.06);
}
.lc-cosmic-orb-img picture,
.lc-cosmic-orb-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lc-cosmic-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.lc-card-title-link {
  color: inherit;
  text-decoration: none;
}
.lc-card-title-link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lc-cosmic-card p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
  margin-bottom: 16px;
}

.lc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lc-step {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lc-step-level {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.lc-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #021018;
  background: var(--accent);
  margin-bottom: 12px;
}
.lc-step-illust {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 232, 0.28);
  box-shadow: 0 0 24px rgba(0, 212, 232, 0.12);
  background: rgba(0, 212, 232, 0.06);
}
.lc-step-illust img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lc-step h3 { margin-bottom: 0; font-size: 1.1rem; }
.lc-step p { color: var(--muted); font-size: 15px; flex: 1; }
.lc-step .lc-ghost-btn { margin-top: auto; width: 100%; }

.lc-plans {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.lc-plans-ppu {
  grid-template-columns: 1.35fr repeat(3, 1fr);
}
.lc-plan {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lc-plan.featured {
  border-color: rgba(0, 212, 232, 0.55);
  box-shadow: var(--glow);
}
.lc-plan-free {
  background: linear-gradient(160deg, rgba(0, 212, 232, 0.12), rgba(27, 108, 255, 0.06));
}
.lc-plan-illust {
  width: 100%;
  aspect-ratio: 1;
  max-height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 232, 0.28);
  background: rgba(0, 212, 232, 0.06);
}
.lc-plan-illust img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lc-plan-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: none;
}
.lc-plan-price {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 14px !important;
  padding-left: 0 !important;
}
.lc-plan h3 { font-size: 1.2rem; }
.lc-plan p,
.lc-plan ul {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  padding-left: 18px;
}
.lc-plan > p { padding-left: 0; }
.lc-plan .lc-plan-link { margin-top: auto; width: 100%; border-radius: var(--radius-sm); }

.lc-faq-grid {
  display: grid;
  gap: 10px;
  max-width: 820px;
}
.lc-faq-grid.lc-feature-faq,
#use-cases.lc-feature-faq {
  max-width: none;
  width: 100%;
}

.lc-cta-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  isolation: isolate;
}
.lc-cta-parallax {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  pointer-events: none;
}
.lc-cta-parallax-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.lc-cta-parallax-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 11, 24, 0.55), rgba(2, 11, 24, 0.78)),
    radial-gradient(ellipse at 50% 40%, rgba(0, 212, 232, 0.18), transparent 55%);
}
.lc-cta-section > .lc-shell {
  position: relative;
  z-index: 1;
}
.lc-cta-banner {
  margin: 0;
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 212, 232, 0.35);
  background: rgba(5, 22, 46, 0.62);
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.lc-cta-banner h2 { margin-bottom: 10px; }
.lc-cta-banner p { color: var(--muted); margin-bottom: 20px; }

@media (prefers-reduced-motion: reduce) {
  .lc-cta-parallax-bg,
  .lc-section-parallax-bg {
    transform: none !important;
    will-change: auto;
  }
}

.lc-compact-anchor {
  scroll-margin-top: 96px;
}

@media (max-width: 1100px) {
  .lc-plans { grid-template-columns: repeat(3, 1fr); }
  .lc-plans-ppu { grid-template-columns: 1fr 1fr; }
  .lc-plans-ppu .lc-plan-free { grid-column: 1 / -1; }
  .lc-mid6 { grid-template-columns: repeat(2, 1fr); }
  .lc-cards4,
  .lc-cards6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .lc-hero-grid {
    grid-template-columns: 1fr;
  }
  .lc-visual { order: 2; min-height: 320px; }
  .lc-hero-copy { order: 1; }
  .lc-moon-orbit {
    width: min(100%, 360px);
    animation-duration: 60s;
  }
  .lc-moon-orbit .lc-hud-gauge {
    width: 40px;
    height: 40px;
    margin-left: -20px;
    animation-duration: 60s;
  }
  .lc-moon-orbit .lc-hud-gauge::after {
    width: 16px;
    height: 16px;
  }
  .lc-mid3,
  .lc-mid6,
  .lc-steps {
    grid-template-columns: 1fr;
  }
  .lc-plans,
  .lc-plans-ppu { grid-template-columns: 1fr; }
  .lc-plans-ppu .lc-plan-free { grid-column: auto; }
}
@media (max-width: 560px) {
  .lc-cards4,
  .lc-cards6 { grid-template-columns: 1fr; }
}
