/* =========================================================================
   Least Action Technologies Inc. - Pure Dark & Graphite Design System
   ========================================================================= */

:root {
  /* Color Palette: True Pitch Black */
  --bg-deep: #000000;
  --border-subtle: rgba(255, 255, 255, 0.12);

  /* Typography Colors */
  --text-primary: #ffffff;
  --text-secondary: #e4e4e7;
  --text-muted: #a1a1aa;

  /* Layout & Spacing */
  --container-max: 1100px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-deep);
}

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================================
   Hero Section with Bright Video & Clean Copy
   ========================================================================= */
.hero-section {
  position: relative;
  flex: 1;
  min-height: calc(100vh - 80px);
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: var(--bg-deep);
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Bright video visibility */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  opacity: 0.92;
}

/* Light overlay to maintain text contrast while keeping video vivid */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: 
    radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 85%, #000000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main Logo Positioned at Very Top (Transparent PNG) */
.hero-logo-container {
  margin-top: 8px;
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-logo-main {
  width: min(92%, 620px);
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform var(--transition-normal);
}

/* Mission Statement */
.hero-description {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 400;
  max-width: 780px;
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

/* Stay Tuned Banner */
.hero-stay-tuned {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* Contact Pill */
.hero-contact-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.contact-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-email {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-email:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.hero-location-tag {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* =========================================================================
   Minimal Footer with Square Logo
   ========================================================================= */
.footer {
  padding: 32px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-square-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
  transition: transform var(--transition-fast);
}

.footer-square-logo:hover {
  transform: scale(1.05);
}

.footer-legal {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsive */
@media (max-width: 640px) {
  .hero-section {
    padding-top: 28px;
  }

  .hero-logo-main {
    width: 95%;
  }

  .hero-contact-wrapper {
    flex-direction: column;
    gap: 4px;
    padding: 10px 18px;
  }

  .footer {
    padding: 24px 0;
  }
}
