/**
 * 🚀 UseVerb Static Landing Page - Compiled CSS
 * 
 * Purpose: All styles for static landing page (no SCSS preprocessing needed)
 * Compiled from: SimplifiedLandingPage.scss + ThemeProvider.scss + AuthHeader.scss
 * Total Size: ~25 KB (vs 200 KB React styles)
 */

/* ============================================
   1. CSS Reset & Base Styles
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  overflow-x: hidden;
}

.fullwh {
  width: 100%;
  height: 100%;
}

.overflowHidden {
  overflow: hidden;
}

/* ============================================
   2. Theme Provider - Dark Mode Variables
   ============================================ */
.ThemeProvider[data-uv-theme='dark'] {
  /* Semantic Colors */
  --bg-primary: #0f0f0f;
  --bg-primary-transparent: #0f0f0feb;
  --bg-light: #1c1c1c;
  --bg-secondary: #1c1c1c;
  --bg-tertiary: #252525;
  --bg-invert: #ffffff;
  --background-tertiary: #1b1b1b;
  --bg-muted: #262626;
  --surface: #191919;
  --border: #2a2a2a;
  --border-secondary: #3b3b3b;
  --text-primary: #e1e3e7;
  --text-secondary: #c7c9cf;
  --text-muted: #9aa1aa;
  --text-orange: #ff8c00;
  --shadow: rgba(247, 247, 247, 0.115);
  --shadow-muted: rgba(247, 247, 247, 0.03);
  
  /* Brand */
  --brand: #ff9900;
  --brand-contrast: #111111;
  
  /* Extended Palette */
  --white: #ffffff;
  --black: #000000;
  --grey-100: #0d0d0d;
  --grey-200: #1c1c1c;
  --grey-300: #2a2a2a;
  --grey-400: #c2c2c2;
  --grey-500: #e4e4e4;
  --grey-600: #f2f2f2;
  --orange-100: #ffc179;
  --orange-200: #ffa94d;
  --orange-300: #ff9000;
  
  color-scheme: dark;
}

/* ============================================
   3. Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.25);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ============================================
   4. Auth Header Styles
   ============================================ */
.AuthHeader {
  width: 100%;
  position: relative;
  z-index: 20;
}

.AuthHeader.mobile-top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Header Container */
.header-container {
  width: 100%;
  background: var(--bg-primary);
}

/* App Header */
.app__header {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Matches React inline style */
  flex-direction: row;
  width: 100%;
  height: 75px;
  background: var(--bg-primary);
  box-shadow: 0px 5px 35px rgba(17, 17, 17, 0.03);
  border-radius: 0px 0px 10px 10px;
  position: relative;
  z-index: 20;
  gap: 0.3rem; /* Matches React inline gap */
}

/* Logo */
.header__logo {
  display: flex;
  z-index: 20;
}

/* ==== DEFAULT (MOBILE-FIRST): No margin on small screens ==== */
.homepage-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3px 18px;
  gap: 9px;
  border-radius: 9px;
  transition: all 0.2s ease;
  margin-left: 0;
  /* Mobile: no left margin */
  width: fit-content;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

/* Icon */
.UseVerbIcon {
  width: 35px;
  height: 33px;
  min-height: 27px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Text */
.homepage-logo h1 {
  font-size: 1.375rem;
  margin: 0;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ==== DESKTOP: Add margin only on larger screens ==== */
@media (min-width: 769px) {
  .homepage-logo {
    margin-left: 2rem;
    /* Only on desktop */
  }
}

/* Desktop Navigation */
.header__desktop-nav {
  display: flex;
  z-index: 20;
  /* Force visibility for debugging */
  opacity: 1 !important;
  visibility: visible !important;
}

.header__navigation {
  display: flex;
}

.navigation {
  position: relative;
  z-index: 21;
}

.navigation__auth-container {
  margin-right: 0.75rem; /* 12px - matches React $spacing-m */
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  margin: 0;
}

.nav-list {
  display: flex;
  width: fit-content;
  height: 100%;
  padding: 0;
  list-style-type: none;
}

.nav-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 100%;
  cursor: pointer;
}

.nav-list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.5rem 1.5rem;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: ease-out 100ms;
}

.nav-list__link:hover {
  color: var(--brand);
}

.nav-list__link.is-active {
  color: var(--text-orange);
}

.nav-list__link.is-active:hover {
  color: #ff7a00;
}

/* Auth Buttons */
.auth-container {
  display: flex !important;
  align-items: center;
  gap: 15px;
  /* Force visibility */
  opacity: 1 !important;
  visibility: visible !important;
}

.tertiaryButton {
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  background: transparent;
  color: var(--grey-500);
  border: 1px solid var(--border);
}

.tertiaryButton:hover {
  background: var(--bg-secondary);
  border-color: var(--border-secondary);
}

/* Mobile Menu Button */
.header__menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  width: 80px;
  height: 100%;
  padding: 20px 4px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.hamburger {
  display: block;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 27px;
  height: 0;
  border: 1.5px solid #ff9000;
  border-radius: 1.5px;
  background-color: #ff9000;
  transition: transform 200ms ease-out;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: -1.5px;
}

.hamburger::before {
  bottom: 9px;
}

.hamburger::after {
  top: 9px;
}

/* Hamburger animation - matches React exactly */
/* Middle line rotates and becomes transparent */
.hamburger.hamburger_opened {
  transform: rotate(-45deg);
  background: transparent;
}

/* Bottom line disappears */
.hamburger_opened.hamburger::before {
  opacity: 0;
}

/* Top line rotates 90deg and translates to form X */
.hamburger_opened.hamburger::after {
  transform: rotate(90deg) translate(-10px);
}

/* Mobile Navigation */
.header__mobile-nav {
  display: none;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 2rem;
}

.AuthHeader.mobileNavOpen .header__mobile-nav {
  display: block;
}

/* Mobile navigation wrapper - CRITICAL: This is the parent container */
.header__mobile-nav .header__navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}

/* Nav element inside mobile navigation */
.header__mobile-nav .navigation__nav {
  width: 100%;
  display: block;
}

/* Navigation links section */
.header__mobile-nav .nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0; /* Remove margin-bottom in mobile */
  padding: 0;
  width: 100%;
}

.header__mobile-nav .nav-list__item {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__mobile-nav .nav-list__link {
  width: 100%;
  padding: 0;
  line-height: 50px;
  text-align: center;
  font-size: 1.125rem;
}

/* Auth buttons - single column at bottom, full width */
.header__mobile-nav .auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.72rem;
  margin: 0; 
  padding: 0;
}

.header__mobile-nav .auth-container .tertiaryButton,
.header__mobile-nav .auth-container .secondaryButton {
  width: 100%;
  max-width: 400px;
  height: 50px;
  font-size: 1.125rem;
}

/* Orange Shadow Layer Effect - Subtle radial glow behind header */
.header__orange-bg-shadow {
  position: absolute;
  top: -10px;
  right: 0;
  width: 100%;
  height: 95px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 144, 0, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  filter: blur(10px);
  transform: rotate(180deg);
  z-index: 19;
  transition: width 200ms ease-out;
}

/* ============================================
   5. Landing Page Main Styles
   ============================================ */
.ThemeProvider[data-uv-theme='dark'] .simplified-landing-page {
  background: var(--bg-primary);
  color: var(--text-primary);
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Main Hero Section */
.main-hero-section {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 5rem; /* Space for fixed header */
}

.hero-container {
  padding: 1.8rem 3.6rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Secondary Title */
.secondary-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.4;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.secondary-title .highlight-text {
  font-weight: 350;
  color: var(--text-primary);
}

/* Hero Image */
.hero-image-wrapper {
  margin: 0 auto 3rem auto;
  max-width: 750px;
  animation: fadeInScale 1s ease-out 0.4s both;
  filter: drop-shadow(0 15px 30px rgba(255, 140, 0, 0.1));
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 35px 80px rgba(255, 140, 0, 0.15);
}

.image-glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
  z-index: -1;
  animation: glow 6s ease-in-out infinite alternate;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, transparent 30%, rgba(74, 158, 255, 0.1) 100%);
  z-index: 3;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.hero-image-container:hover .image-overlay {
  opacity: 0.4;
}

/* Main Title */
.main-title {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.main-title .bold-text {
  font-weight: 700;
}

.gradient-text {
  background: var(--text-primary);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
}

/* Title Underline */
.title-underline {
  width: 80px;
  height: 4px;
  margin: 0 auto 1rem auto;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.underline-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ff9000, transparent);
  border-radius: 2px;
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

/* Hero Description */
.hero-description {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.5;
  font-weight: 350;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.emphasis-text {
  color: var(--text-primary);
  font-weight: 500;
  background: linear-gradient(135deg, #ff9000, #ff6b35);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CTA Button */
.main-cta-button {
  position: relative;
  background: linear-gradient(135deg, var(--brand, #ff7a00) 0%, #ff7a00 50%, #ff9000 100%);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 140, 0, 0.15);
}

.button-text {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 600;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.landing-page-double-arrow {
  color: #000000;
  font-weight: bold;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.3em;
  vertical-align: middle;
}

.main-cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  opacity: 0;
}

.main-cta-button.button-animated {
  animation: fadeInScale 1s ease-out 0.3s both;
}

.main-cta-button.button-animated:hover {
  background: linear-gradient(135deg, #ff9000 0%, #ff9000 50%, #ffa500 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 140, 0, 0.2);
}

.main-cta-button.button-animated:hover::before {
  width: 200px;
  height: 200px;
  opacity: 1;
}

.main-cta-button.button-animated:active {
  transform: translateY(-1px) scale(1);
}

/* Tech Note */
.tech-note {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 5rem;
  animation: fadeInUp 0.8s ease-out 1s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Company Logos */
.company-logos-section {
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 1.1s both;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.company-logo-item {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: fadeInScale 0.6s ease-out both;
}

.company-logo-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.1);
}

.company-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.company-logo:hover {
  filter: brightness(1.1);
}

/* Industry Section */
.industry-section {
  margin-bottom: 6rem;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.industry-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(255, 140, 0, 0.1);
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1.5rem;
}

.industry-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ff9000, transparent);
  border-radius: 2px;
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.industry-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
}

/* Video Section */
.bottom-video-section {
  margin-top: 6rem;
  animation: fadeInUp 0.8s ease-out 1.3s both;
  margin-bottom: 4rem;
}

.video-embed-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  background: #000;
  border: 1px solid rgba(255, 140, 0, 0.1);
  transition: all 0.4s ease;
}

.video-embed-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 35px 90px rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.2);
}

.embedded-video {
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Lazy Loading Styles */
.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #000;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.video-placeholder:hover .video-thumbnail {
  opacity: 0.7;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 1;
}

.play-button-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 0.9;
}

.play-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Loading spinner when video is being loaded */
.video-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 140, 0, 0.2);
  border-top-color: var(--text-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ============================================
   5. Footer Styles (Matching Main Site)
   ============================================ */

/* Footer Container */
.footerBoxShadow {
  background: var(--bg-primary);
  margin-top: 4rem;
}

.landingPageFooter {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 3rem 2rem;
}

/* Main content section with links and logo */
.footerMainContent {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .footerMainContent {
    flex-direction: column-reverse;
    align-items: center;
  }
}

/* Links section */
.footerLinksSection {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

/* Logo and tagline on right */
.footerBrandSection {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .footerBrandSection {
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }
}

.footerLogo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footerLogo h1 {
  margin: 0;
}

.footerTagline {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

/* Bottom section with copyright and social links */
.footerBottomSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

@media screen and (max-width: 768px) {
  .footerBottomSection {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.footerBottomSectionLeft {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.copyrightText {
  color: #999;
  font-size: 14px;
  margin: 0;
}

/* Footer site map and links */
.footerSiteMapContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

@media screen and (max-width: 768px) {
  .footerSiteMapContainer {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
}

.footer-list {
  display: flex;
  flex-direction: column;
  min-width: 145px;
}

@media screen and (max-width: 768px) {
  .footer-list {
    align-items: center;
    text-align: center;
  }
}

.footer-list__title {
  margin-bottom: 1rem;
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.2;
}

.footer-list__link {
  display: inline-block;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-list__link:hover {
  color: #ff8c00;
}

/* Social links section */
.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social-links__item {
  display: inline-block;
}

.footer-social-links__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  color: white;
  transition: background-color 0.2s ease;
}

.footer-social-links__link:hover {
  background-color: #ff8c00;
}

.footer-social-links__image {
  width: 20px;
  height: 20px;
}

/* ============================================
   6. Button Styles (Matching Main Site _buttons.scss)
   ============================================ */

/* Primary Button - Orange gradient */
.primaryButton {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 0 0 auto;
  width: auto;
  height: 3rem;
  border-radius: 0.5rem;
  padding: 0 2rem;
  gap: 0.75rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.02em;
  white-space: pre;
  cursor: pointer;
  border: none;
  background: #ffc179;
  color: #ffffff;
  transition: all 0.2s ease;
}

.primaryButton:hover {
  background: linear-gradient(180deg, #ff9000 0%, #ffc179 100%);
}

.primaryButton:disabled {
  color: #e4e4e4;
  background: #2a2a2a;
  cursor: not-allowed;
  pointer-events: none;
}

/* Secondary Button - Outlined orange */
.secondaryButton {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 0 0 auto;
  width: auto;
  min-width: 120px; /* Ensure button has minimum width */
  height: 2.5rem; /* 40px - matches React $spacing-btn-height */
  border-radius: 0.5rem;
  padding: 0 2rem;
  gap: 0.75rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.02em;
  white-space: nowrap; /* Changed from 'pre' to 'nowrap' for better rendering */
  cursor: pointer;
  background: var(--bg-primary); /* Changed back to match React - transparent was wrong */
  color: #ff9f0a; /* $orange-100 from React */
  border: 1px solid #ff9f0a; /* $orange-100 from React */
  transition: all 0.2s ease;
  /* Ensure button is visible */
  opacity: 1 !important;
  visibility: visible !important;
  /* Force rendering */
  position: relative;
  z-index: 10;
}

.secondaryButton:hover {
  color: #ff7a00; /* $orange-300 from React */
  border-color: #ff7a00; /* $orange-300 from React */
}

.secondaryButton:disabled {
  color: #2a2a2a;
  border-color: #2a2a2a;
  background-color: transparent;
  cursor: not-allowed;
  pointer-events: none;
}

/* Tertiary Button - Gradient text */
.tertiaryButton {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 0 0 auto;
  width: auto;
  height: 2.5rem;
  border-radius: 0.5rem;
  padding: 0 2rem;
  gap: 0.75rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.02em;
  white-space: pre;
  cursor: pointer;
  border: none;
  background: linear-gradient(180deg, #ffc179 0%, #ff9000 100%);
  background-size: 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  transition: all 0.2s ease;
}

.tertiaryButton:hover {
  background: #ff9000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.tertiaryButton:disabled {
  background: #2a2a2a;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================
   7. Utility Classes
   ============================================ */
.displayFlex {
  display: flex;
}

.justifyCenter {
  justify-content: center;
}

.fullWidth {
  width: 100%;
}

.maxWidth1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.textCenter {
  text-align: center;
}

.marginBottom0 {
  margin-bottom: 0;
}

.marginTop0 {
  margin-top: 0;
}

.fontSize22 {
  font-size: 1.375rem;
}

.fontSize30 {
  font-size: 1.875rem;
}

/* ============================================
   8. Responsive Design - Mobile
   ============================================ */
@media screen and (max-width: 768px) {
  /* Header Mobile */
  .header__desktop-nav {
    display: none;
  }
  
  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 19;
  }
  
  /* Hero Container */
  .hero-container {
    padding: 6rem 1rem;
  }
  
  .secondary-title {
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  
  .hero-image-wrapper {
    margin-bottom: 3rem;
    max-width: 500px;
  }
  
  .main-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
  
  .title-underline {
    margin-bottom: 2rem;
    width: 60px;
  }
  
  .hero-description {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
  }
  
  .main-cta-button {
    width: 100%;
    max-width: 320px;
    padding: 1rem 2rem;
  }
  
  .button-text {
    font-size: 1.1rem;
  }
  
  .tech-note {
    margin-bottom: 3rem;
    font-size: 0.9rem;
  }
  
  .company-logos-section {
    margin-bottom: 3rem;
  }
  
  .logos-container {
    gap: 1rem;
  }
  
  .company-logo-item {
    width: 70px;
    height: 70px;
  }
  
  .industry-section {
    margin-bottom: 4rem;
  }
  
  .industry-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 1.5rem;
  }
  
  .industry-title::after {
    width: 40px;
    height: 2px;
  }
  
  .industry-description {
    font-size: 0.9rem;
  }
  
  .bottom-video-section {
    margin-top: 5rem;
  }
  
  .video-embed-container {
    max-width: 380px;
    border-radius: 16px;
  }
  
  .hero-image-container {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .hero-image-container:hover {
    transform: translateY(-2px) scale(1.01);
  }
}

/* Utility Classes */
.fontSize22 {
  font-size: 1.375rem;
}

.textCenter {
  text-align: center;
}

.marginBottom0 {
  margin-bottom: 0;
}

.marginTop0 {
  margin-top: 0;
}

.text-weight-500 {
  font-weight: 500;
}


/* ============================================
   SIGN-IN FORM - Matches React auth-form-container
   ============================================ */

/* Sign-in container - no backdrop, just positioned dropdown */
.signin-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 18; /* Below header (header is z-index: 19) so it slides behind */
  pointer-events: auto; /* Allow clicks for click-outside-to-close */
  background: transparent; /* Transparent background, modal has its own background */
}

.signin-overlay.active {
  display: block;
  pointer-events: auto; /* Enable clicks when active */
}

/* Sign-in form container - matches React auth-form-container.open */
.signin-modal {
  position: absolute;
  top: 75px; /* Position below header */
  right: 0; /* Align to right edge */
  width: 346px;
  height: fit-content;
  padding: 10px;
  background-color: var(--bg-primary, #0f0f0f); /* Solid background with fallback */
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 4px 11px -5px rgba(0, 0, 0, 0.15);
  z-index: 18; /* Below header so it slides behind */
  transform: translateY(-300px); /* Start position - hidden behind header */
  transition: transform 400ms ease-out; /* Matches React transition */
  pointer-events: auto; /* Modal itself receives clicks */
}

.signin-overlay.active .signin-modal {
  transform: translateY(0); /* Slide down to visible position */
}

.signin-overlay.closing .signin-modal {
  transform: translateY(-300px); /* Slide back up behind header when closing */
}

/* Background blur layers - matches React decorative backgrounds */
.signin-modal::before,
.signin-modal::after {
  content: '';
  position: absolute;
  left: 20px;
  width: calc(100% - 40px);
  height: 100%;
  border-radius: 30px;
  filter: blur(25px);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.signin-modal::before {
  top: 0;
  background: rgba(17, 17, 17, 1); /* Fully opaque - removed transparency */
  background-blend-mode: multiply;
  z-index: 16;
}

.signin-modal::after {
  top: 5px;
  background: var(--bg-primary, #0f0f0f); /* Fully opaque - removed transparency */
  background-blend-mode: lighten;
  z-index: 17;
}

/* Form element positioning */
.signin-modal form {
  position: relative;
  z-index: 19;
  padding-bottom: 0.9rem; /* Add bottom padding to both sign-in and forgot password forms */
}

.signin-modal > * {
  position: relative;
  z-index: 19;
}

/* Form groups - matches React form__row */
.form-group {
  position: relative;
  margin-bottom: 0.625rem; /* 10px - matches form__input margin-bottom */
}

.form-group:last-of-type {
  margin-bottom: 0.1875rem; /* 3px - matches last form__input */
}

.form-group label {
  display: none; /* Hide labels - use placeholders only */
}

/* Form inputs - matches React form__input and form-input */
.form-group input {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border: 1px solid #3b3b3b; /* Lighter border visible on dark background (was var(--border) #2a2a2a) */
  border-radius: 6px;
  outline: none;
  font-size: 15px;
  line-height: 100%;
  background: transparent;
  color: var(--text-primary); /* Inherit text color from theme */
  box-sizing: border-box;
  appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: none;
  transition: border-color 0.2s ease;
}

/* Password input with toggle button - add right padding */
.form-group input.form-input-password {
  padding-right: 40px;
}

.form-group input::placeholder {
  color: var(--text-muted, #9aa1aa);
}

/* ERROR STATE - Must come after other input styles for proper specificity */
/* Apply to any input with .error class, regardless of type or other classes */
/* Covers: sign-in email (type="text"), password (type="password"), forgot password email (type="email") */
input.error,
.form-group input.error,
.form-group input.form-input-password.error,
.form-group input[type="text"].error,
.form-group input[type="password"].error,
.form-group input[type="email"].error,
input.error:focus,
.form-group input.error:focus,
.form-group input.form-input-password.error:focus,
.form-group input[type="text"].error:focus,
.form-group input[type="password"].error:focus,
.form-group input[type="email"].error:focus,
input.error:focus-visible,
.form-group input.error:focus-visible,
.form-group input.form-input-password.error:focus-visible,
.form-group input[type="text"].error:focus-visible,
.form-group input[type="password"].error:focus-visible,
.form-group input[type="email"].error:focus-visible {
  border: 1px solid #f05050 !important; /* Matches React $text-red */
  border-color: #f05050 !important; /* Extra specificity */
  color: #f05050 !important;
  outline: none !important;
}

.form-group input:focus {
  text-shadow: none;
  border-color: #3b3b3b; /* Keep visible border on focus (was var(--border)) */
  caret-color: var(--text-primary); /* Ensure blinking cursor is visible */
}

.form-group input:focus-visible {
  outline: none;
  text-shadow: none;
  caret-color: var(--text-primary); /* Ensure blinking cursor is visible */
}

/* Ensure input text is visible when typing */
.form-group input:not(:placeholder-shown) {
  color: var(--text-primary, #e1e3e7); /* Light text for entered values */
}

/* Error messages */
.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 0.625rem; /* 10px - matches form__link */
  margin-left: 10px;
  display: none;
  animation: fadeIn 0.2s ease-in-out;
}

.error-message.show {
  display: block;
}

/* Show/Hide Password Toggle Button - matches React */
.show-password {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 50px;
  border: none;
  color: var(--text-muted, #9aa1aa);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10; /* Above input field */
  padding: 0;
  margin: 0;
}

.show-password:hover {
  color: var(--text-secondary, #c7c9cf);
}

.show-password:active {
  color: var(--text-primary);
}

.show-password__icon {
  width: 18px;
  height: auto;
  transform: translateY(1px);
  pointer-events: none; /* Ensure clicks go to button, not SVG */
}

/* Submit button - matches React form__submit and primaryButton */
.signin-button {
  width: 100%;
  height: 2.5rem; /* 40px */
  margin-top: 10px;
  padding: 0 2rem;
  background: linear-gradient(135deg, #ff7a00 0%, #ff7a00 50%, #ff9000 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Disabled state for Sign In button - matches React .btn_disabled */
.signin-button.btn_disabled {
  color: var(--grey-500, #808080);
  background: var(--grey-300, #5e5e5e);
  cursor: pointer; /* Still clickable for validation */
}

.signin-button:hover:not(:disabled):not(.btn_disabled) {
  background: linear-gradient(135deg, #ff9000 0%, #ff9000 50%, #ffa500 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 154, 0, 0.4);
}

.signin-button:active:not(:disabled):not(.btn_disabled) {
  transform: translateY(0);
}

.signin-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Tertiary Button for Sign-in Modal - gradient text button matching React */
.signin-modal .tertiaryButton {
  width: 100%;
  height: 2.5rem; /* 40px */
  margin-top: 10px;
  padding: 0 2rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7a00;
  background: linear-gradient(180deg, #ff7a00 0%, #ff9933 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.signin-modal .tertiaryButton:hover {
  color: #ff9933;
  background: #ff9933;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.signin-modal .tertiaryButton:disabled {
  color: #808080;
  background: #808080;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Forgot Password link - matches React .forgot-password class */
.forgot-password-link {
  cursor: pointer;
  font-weight: 375;
  color: var(--text-orange, #ff7a00);
  padding: 0.5rem 0 0 0.5rem;
  margin: 0;
  margin-bottom: 10px; /* Matches React .form__link */
  font-size: 12px; /* Matches React .forgot-password */
  line-height: 150%; /* Matches React .forgot-password */
  text-decoration: none;
  transition: color 0.2s ease;
}


.forgot-password-link:hover {
  color: #ff9933;
}

/* Text weight utility - matches React */
.text-weight-400 {
  font-weight: 375;
}

/* Forgot password link - matches React form__link */
.signin-modal a {
  color: var(--brand, #ff9900);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-left: 10px;
  transition: color 0.2s ease;
}

.signin-modal a:hover {
  color: #ff7a00;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Mobile - Match React auth-form-container mobile styles */
  .signin-overlay {
    top: 0; /* Full screen overlay */
    right: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
  }
  
  .signin-modal {
    width: 100%; /* Full width on mobile */
    max-width: 100%;
    left: 0;
    right: 0;
    top: 75px; /* Below header */
    padding-top: 45px; /* Match React padding-top */
    transform: translateY(-332px); /* Hidden position - adjusted for padding */
  }
  
  .signin-overlay.active .signin-modal {
    transform: translateY(0); /* Visible position */
  }
  
  .signin-overlay.closing .signin-modal {
    transform: translateY(-332px); /* Slide back up */
  }
  
  .signin-modal::before,
  .signin-modal::after {
    background: unset; /* Remove blur effects on mobile */
  }
  
  .form-group input {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
}

