/* Eclipse Landing - Technology Page Styles */

/* HERO (dark) */
.tech-hero {
  background: var(--navy);
  padding: 100px 64px 80px;
}

.tech-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tech-hero .section-label { color: #93C5FD; }

.tech-hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: white;
  max-width: 720px;
  margin: 0 auto 24px;
}

.tech-hero .hero-sub {
  font-size: 19px;
  color: #9CA3AF;
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

/* COMPARISON GRID */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.comparison-card {
  border-radius: 14px;
  padding: 32px;
}

.comparison-card.generic {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.comparison-card.eclipse {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.comparison-header i {
  font-size: 22px;
}
.comparison-header h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.comparison-card.generic .comparison-header { color: #991B1B; }
.comparison-card.eclipse .comparison-header { color: var(--blue); }

.comparison-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-card li {
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.comparison-card li > i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
}

.comparison-card.generic li { color: #7F1D1D; }
.comparison-card.generic li > i { color: #DC2626; }
.comparison-card.eclipse li { color: #1E3A5F; }
.comparison-card.eclipse li > i { color: var(--blue); }

/* Utility Classes */
.tech-models-section {
  background: var(--surface);
}

.tech-models-inner {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* MODEL GRID */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.model-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.model-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 12px 32px rgba(37,99,235,0.12);
  transform: translateY(-4px);
}
.model-card:hover .model-icon {
  transform: scale(1.1);
}

.model-icon {
  width: 42px;
  height: 42px;
  transition: transform 0.2s ease;
  border-radius: 10px;
  background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--blue);
}

.model-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.model-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* PIPELINE */
.pipeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
}

.pipeline-step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 32px;
}

.pipeline-step:last-child { padding-bottom: 0; }

.pipeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.pipeline-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pipeline-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 4px;
}

.pipeline-step:last-child .pipeline-line { display: none; }

.pipeline-content {
  padding-top: 6px;
}

.pipeline-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pipeline-content h3 i {
  font-size: 18px;
  color: var(--blue);
}

.pipeline-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* DARK SECTION */
.dark-section {
  background: var(--navy);
  padding: 96px 64px;
}

.dark-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dark-section .section-label { color: #93C5FD; }
.dark-section .section-title { color: white; }
.dark-section .section-sub { color: #9CA3AF; }

.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}

.integration-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.integration-col h3 i {
  font-size: 20px;
  color: #93C5FD;
}

.integration-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.integration-list li {
  font-size: 15px;
  color: #D1D5DB;
  line-height: 1.5;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.integration-list li > i {
  font-size: 18px;
  color: #60A5FA;
  flex-shrink: 0;
}

/* TRUST GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.trust-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 12px 32px rgba(37,99,235,0.12);
  transform: translateY(-4px);
}
.trust-card:hover .trust-icon {
  transform: scale(1.1);
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EFF6FF, #EDE9FE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.2s ease;
  font-size: 20px;
  color: var(--blue);
}

.trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.trust-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* CTA */
.cta-section {
  padding: 100px 64px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta-section p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tech-hero, .dark-section, .cta-section { padding-left: 24px; padding-right: 24px; }
  .comparison-grid, .model-grid, .trust-grid, .integration-grid { grid-template-columns: 1fr; }
}
