/* Base Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background-color: #fafafa;
  color: #1a1a1a;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Master Layout Grid */
.welcome-container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

/* Content Panel Layout */
.content-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
}

/* Typography & Navigation Branding */
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.logo span {
  color: #4f46e5;
}

.hero-text {
  margin: auto 0;
  max-width: 540px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #111827;
}

.hero-text p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

/* Button Component Styles */
.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #4f46e5;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #4338ca;
}

.btn-secondary {
  background-color: #f3f4f6;
  color: #1f2937;
}

.btn-secondary:hover {
  background-color: #e5e7eb;
}

/* Trust Badges section */
.social-proof {
  margin-top: 2rem;
}

.social-proof p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.logos {
  display: flex;
  gap: 2rem;
  font-weight: 700;
  color: #cbd5e1;
  font-size: 1.1rem;
}

/* Visual Panel Layout & Graphic Elements */
.visual-side {
  display: none;
  background-color: #eff6ff;
  position: relative;
  overflow: hidden;
}

.abstract-shape {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 120%;
  height: 80%;
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
  border-radius: 2rem;
  transform: rotate(-6deg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Responsive Viewports (Desktop Optimization) */
@media (min-width: 960px) {
  .welcome-container {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .content-side {
    padding: 4rem 5rem;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .visual-side {
    display: block;
  }
}
