/* [project]/src/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-snap-type: y mandatory;
}

body {
  color: #e2e8f0;
  -webkit-font-smoothing: antialiased;
  background: #0a0f1a;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

.slide {
  scroll-snap-align: start;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 10%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slide:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(at 50% 0, #1b3a5c26, #0000 70%);
  position: absolute;
  inset: 0;
}

.slide-hero {
  background: linear-gradient(135deg, #0a0f1a 0%, #0d1b2a 40%, #1b3a5c 100%);
}

.slide-dark {
  background: #0d1b2a;
}

.slide-accent {
  background: linear-gradient(135deg, #1b3a5c 0%, #0d1b2a 100%);
}

.title-block {
  text-align: center;
  max-width: 900px;
}

.title-tag {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #60a5fa;
  background: #60a5fa1a;
  border: 1px solid #60a5fa33;
  border-radius: 100px;
  margin-bottom: 28px;
  padding: 6px 20px;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
}

.title-main {
  color: #f8fafc;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
}

.title-sub {
  color: #94a3b8;
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: 400;
}

.title-meta {
  color: #64748b;
  margin-top: 24px;
  font-size: .9rem;
}

.section-header {
  margin-bottom: 48px;
}

.section-label {
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 12px;
  font-size: .75rem;
  font-weight: 700;
}

.section-title {
  color: #f1f5f9;
  letter-spacing: -.01em;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  color: #94a3b8;
  max-width: 700px;
  margin-top: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
  display: grid;
}

.metric-card {
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color .2s;
}

.metric-card:hover {
  border-color: #60a5fa4d;
}

.metric-value {
  color: #f8fafc;
  margin-bottom: 6px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.metric-label {
  color: #94a3b8;
  font-size: .85rem;
  line-height: 1.4;
}

.metric-accent {
  color: #60a5fa;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 24px;
  display: grid;
}

.product-card {
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-radius: 10px;
  padding: 24px;
}

.product-num {
  color: #60a5fa;
  letter-spacing: .15em;
  margin-bottom: 8px;
  font-size: .7rem;
  font-weight: 700;
}

.product-name {
  color: #f1f5f9;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-desc {
  color: #94a3b8;
  font-size: .9rem;
  line-height: 1.5;
}

.highlight-box {
  background: #60a5fa14;
  border: 1px solid #60a5fa26;
  border-radius: 12px;
  max-width: 800px;
  margin-top: 32px;
  padding: 24px 28px;
}

.highlight-box p {
  color: #cbd5e1;
  font-size: .95rem;
  line-height: 1.6;
}

.highlight-box strong {
  color: #f8fafc;
}

.priority-list {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
  margin-top: 32px;
  display: grid;
}

.priority-item {
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-radius: 10px;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  display: flex;
}

.priority-num {
  color: #60a5fa;
  min-width: 40px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.priority-content h3 {
  color: #f1f5f9;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
}

.priority-content p {
  color: #94a3b8;
  font-size: .85rem;
  line-height: 1.5;
}

.divider {
  background: #60a5fa;
  border-radius: 2px;
  width: 60px;
  height: 3px;
  margin: 20px 0;
}

.nav-dots {
  z-index: 100;
  flex-direction: column;
  gap: 10px;
  display: flex;
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
}

.nav-dot {
  cursor: pointer;
  background: #fff3;
  border: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: all .2s;
}

.nav-dot:hover {
  background: #fff6;
}

.nav-dot.active {
  background: #60a5fa;
  box-shadow: 0 0 12px #60a5fa80;
}

.page-indicator {
  color: #475569;
  z-index: 100;
  font-size: .75rem;
  position: fixed;
  bottom: 28px;
  right: 28px;
}

@media (max-width: 768px) {
  .slide {
    padding: 60px 6%;
  }

  .title-main {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .product-grid, .priority-list {
    grid-template-columns: 1fr;
  }

  .nav-dots {
    display: none;
  }
}

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