/* [project]/src/app/page.css [app-client] (css) */
.hero {
  align-items: center;
  min-height: 480px;
  padding: 6rem 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  z-index: 0;
  position: absolute;
  inset: 0;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(to right, #0a0a0aeb 0%, #0a0a0ab3 50%, #0a0a0a4d 100%);
  position: absolute;
  inset: 0;
}

.hero-content {
  z-index: 2;
  max-width: 640px;
  position: relative;
}

.hero-title {
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-accent {
  color: var(--accent);
}

.hero-subtitle {
  color: #ffffffb3;
  max-width: 500px;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.hero-actions {
  gap: .75rem;
  margin-bottom: 2.5rem;
  display: flex;
}

.hero-outline-btn {
  color: #ffffffd9;
  border-color: #ffffff40;
}

.hero-outline-btn:hover {
  color: #fff;
  background-color: #ffffff14;
  border-color: #fff6;
  text-decoration: none;
}

.hero-trust {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.trust-item {
  flex-direction: column;
  display: flex;
}

.trust-value {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.trust-label {
  color: #fff6;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .6875rem;
}

.trust-divider {
  background-color: #ffffff1a;
  width: 1px;
  height: 32px;
}

.features {
  padding: 3.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  display: grid;
}

.feature-card {
  text-align: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow .2s, border-color .2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: #bbb;
}

.feature-icon {
  background-color: var(--accent-light);
  width: 48px;
  height: 48px;
  color: var(--accent);
  border-radius: var(--radius-lg);
  justify-content: center;
  align-items: center;
  margin-bottom: .875rem;
  display: inline-flex;
}

.feature-card h3 {
  margin-bottom: .375rem;
  font-size: .9375rem;
}

.feature-card p {
  margin: 0;
  font-size: .8125rem;
  line-height: 1.5;
}

.showcase {
  padding: 2rem 0 3.5rem;
}

.showcase-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  display: grid;
}

.showcase-card {
  border-radius: var(--radius-lg);
  cursor: pointer;
  height: 320px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #0003;
}

.showcase-image {
  position: absolute;
  inset: 0;
}

.showcase-overlay {
  z-index: 1;
  background: linear-gradient(to top, #000000d9 0%, #0000001a 60%);
  position: absolute;
  inset: 0;
}

.showcase-content {
  z-index: 2;
  padding: 1.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.showcase-content h3 {
  color: #fff;
  margin-bottom: .25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.showcase-content p {
  color: #ffffffb3;
  margin: 0;
  font-size: .8125rem;
  line-height: 1.5;
}

.cta-section {
  padding: 0 0 3.5rem;
}

.cta-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a2332 100%);
  padding: 2.5rem;
}

.cta-content {
  max-width: 500px;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: .625rem;
  font-size: 1.5rem;
}

.cta-content p {
  color: #ffffff8c;
  margin-bottom: 1.25rem;
  font-size: .9375rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid, .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 360px;
    padding: 3rem 0;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card:last-child {
    grid-column: auto;
  }

  .showcase-card {
    height: 240px;
  }

  .cta-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

/*# sourceMappingURL=src_app_page_06d6_o2.css.map*/