/* Design and Launch Section Styles */

.design-launch-section {
  position: relative;
  min-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #ffffff; */
  overflow: hidden;
}

/* Grid Background */
.design-launch-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin: 50px 0 50px 0;
}

/* Grid Lines Base Styles */
.grid-line {
  position: absolute;
  background: #00000047;
  opacity: 0.3;
  /* Убираем mix-blend-mode для лучшей производительности */
}

/* Vertical Lines */
.grid-line--vertical {
  width: 1px;
  height: 100%;
}

.grid-line--1 {
  left: 16.666%;
}

.grid-line--2 {
  left: 33.333%;
}

.grid-line--3 {
  left: 50%;
}

.grid-line--4 {
  left: 66.666%;
}

.grid-line--5 {
  left: 83.333%;
}

/* Horizontal Lines */
.grid-line--horizontal {
  height: 1px;
  width: 100%;
}

.grid-line--h1 {
  top: 0;
}

.grid-line--h2 {
  top: 25%;
}

.grid-line--h3 {
  top: 50%;
}

.grid-line--h4 {
  top: 75%;
}

.grid-line--h5 {
 bottom: 5%;
}

/* Content */
.design-launch-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 0 20px;
}

.design-launch-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.1;
  color: #1F1F1F;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}

/* Individual text lines */
.design-launch-line-1,
.design-launch-line-2,
.design-launch-line-3 {
  display: block;
  white-space: nowrap;
  color: #1F1F1F;
}

/* Gradient text for "No coding" */
.design-launch-gradient {
  background: linear-gradient(13deg, #CA5AFF 0%, #5E52F3 44%, #8EBBF3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
  .design-launch-gradient {
    color: #5E52F3;
    background: none;
  }
}

/* Button styles */
.design-launch-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 18px 32px;
  background: transparent;
  color: #1F1F1F !important;
  text-decoration: none;
  border: 1px solid #1F1F1F;
  border-radius: 999px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.design-launch-btn:hover {
  background: #1F1F1F;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 31, 31, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .design-launch-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .design-launch-section {
    min-height: 800px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .instant-setup-card{
    position: unset;
    width: 100%!important;
    max-width: 100%!important;
    margin: 0 auto;
    height: 350px;
    margin-bottom: 24px!important;
  }
  .design-launch-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .design-launch-line-1,
  .design-launch-line-2,
  .design-launch-line-3,
  .design-launch-line-4 {
    white-space: normal;
  }
  .design-launch-content{
    padding: 44px 0px;
  }
}

@media (max-width: 480px) {
  .design-launch-title {
    font-size: 2rem;
  }
  
  .design-launch-section {
    min-height: 600px;
  }
}

/* Grid lines are static - no animations */
.grid-line {
  opacity: 0.3;
}

/* No hover effects - static grid */

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .design-launch-title {
    color: #ffffff;
  }
  
  .grid-line {
    background: #404040;
    opacity: 0.2;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .grid-line {
    animation: none;
    opacity: 0.3;
  }
}

/* Print styles */
@media print {
  .design-launch-section {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  .grid-line {
    display: none;
  }
  
  .design-launch-gradient {
    color: #5E52F3 !important;
    -webkit-text-fill-color: #5E52F3 !important;
  }
} 