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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

.min-h-screen {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background */
.background-container {
  position: absolute;
  inset: 0;
  background-color: #000;
}

.background-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Header */
.header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.logo-container {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  z-index: 51;
}

/* Added styles for text logo */
.logo-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s;
  position: relative;
  z-index: 51;
}

.logo-text:hover {
  color: #f97316;
}

.logo {
  width: 2rem;
  height: 2rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
  z-index: 51;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 51;
  padding: 0.5rem 0.75rem;
}

.nav-link:hover {
  color: #f97316;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #fff;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 51;
  position: relative;
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.desktop-only {
  display: none;
}

/* Shimmer Button */
.shimmer-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(to right, #f97316, #ea580c);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
}

.shimmer-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.shimmer-button:hover {
  background: linear-gradient(to right, #ea580c, #c2410c);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 40;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 70vh;
  padding: 1rem 1rem;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-top: 1rem;
}

.trial-badge-container {
  margin-bottom: 1rem;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
}

.trial-text {
  color: #fff;
  font-size: 0.75rem;
}

.hero-title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.line-shadow-text {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(45deg, transparent 45%, #fff 45%, #fff 55%, transparent 0);
  background-size: 0.06em 0.06em;
  background-clip: text;
  -webkit-background-clip: text;
  animation: line-shadow 15s linear infinite;
}

@keyframes line-shadow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% -100%;
  }
}

.hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.desktop-break {
  display: none;
}

.mobile-space {
  display: inline;
}

/* CTA Button */
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(to right, #f97316, #ea580c);
  color: #fff;
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
  transition: all 0.3s;
}

.cta-button:hover {
  background: linear-gradient(to right, #ea580c, #c2410c);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px) scale(1.05);
}

.cta-button:hover .arrow-icon {
  transform: translateX(4px) rotate(-12deg);
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.button-highlight {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.cta-button:hover .button-highlight {
  opacity: 1;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .header {
    padding: 1rem 3rem;
  }

  .logo-container {
    padding-left: 3rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
  }

  .mobile-menu-btn {
    display: none;
  }

  .desktop-only {
    display: inline-flex;
  }

  .main-content {
    padding: 3rem 3rem;
    padding-left: 3rem;
    justify-content: center;
    margin-top: -3rem;
    min-height: 70vh;
  }

  .trial-badge-container {
    margin-bottom: 2rem;
  }

  .trial-text {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .desktop-break {
    display: block;
  }

  .mobile-space {
    display: none;
  }

  .cta-button {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
  }

  .arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .footer {
    padding: 4rem 3rem 2rem;
  }

  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-section:first-child {
    grid-column: auto;
  }

  .footer-title {
    font-size: 1.5rem;
  }

  .footer-heading {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .logo-text {
    font-size: 1.75rem;
  }

  .logo {
    width: 3rem;
    height: 3rem;
  }

  .nav-desktop {
    gap: 2.5rem;
  }

  .nav-link {
    font-size: 1rem;
  }

  .main-content {
    padding-left: 5rem;
    margin-top: -6rem;
    min-height: 70vh;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-description {
    font-size: 1.5rem;
  }

  .cta-button {
    font-size: 1.125rem;
  }

  .footer {
    padding: 5rem 5rem 2rem;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 6rem;
  }
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(249, 115, 22, 0.3);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  /* Improved mobile footer layout */
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-title {
  color: #f97316;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #f97316;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Added tablet-specific footer layout */
@media (min-width: 640px) {
  .footer {
    padding: 3.5rem 2rem 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-section:first-child {
    grid-column: 1 / -1;
  }
}
