/* Eclipse Landing - Why ALDC Page Styles */

/* HERO */
.why-hero {
  text-align: center;
  padding: 80px 64px 40px;
  max-width: 820px;
  margin: 0 auto;
}
.why-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.why-hero h1 span { color: var(--blue); }
.why-hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FLYWHEEL GRAPHIC */
.flywheel-graphic {
  max-width: 480px;
  margin: 0 auto 40px;
}
.flywheel-graphic svg {
  width: 100%;
  height: auto;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.flywheel-arrows {
  transform-origin: 250px 250px;
  animation: spin-slow 30s linear infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
.flywheel-glow {
  animation: pulse-glow 4s ease-in-out infinite;
}

/* FLYWHEEL INTRO */
.flywheel-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 64px 60px;
}
.flywheel-intro p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.flywheel-loop {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  background: var(--surface);
  border-left: 3px solid var(--blue);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  line-height: 1.7;
}
.flywheel-kicker {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* PIPELINE STAGES */
.pipeline-section {
  background: var(--surface);
  padding: 80px 64px;
}
.pipeline-section .section-label,
.pipeline-section h2 {
  text-align: center;
}
.pipeline-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.stage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.stage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.stage-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.stage-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.stage-stat {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

/* STRENGTHS */
.strengths-section {
  padding: 80px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.strengths-section .section-label,
.strengths-section h2 {
  text-align: center;
}
.strengths-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.strength-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.strength-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.strength-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* QUADRANT */
.quadrant-section {
  background: var(--navy);
  padding: 36px 64px;
  color: white;
}
.quadrant-section .section-label { color: var(--blue-light); }
.quadrant-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.quadrant-wrapper {
  max-width: 720px;
  margin: 0 auto;
}
.quadrant-chart {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto 36px;
  border-left: 2px solid rgba(255,255,255,0.2);
  border-bottom: 2px solid rgba(255,255,255,0.2);
}
.q-axis-label {
  position: absolute;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.q-axis-y-top { top: 4px; left: -4px; transform: translateX(-100%); }
.q-axis-y-bottom { bottom: 4px; left: -4px; transform: translateX(-100%); }
.q-axis-x-left { bottom: -24px; left: 0; }
.q-axis-x-right { bottom: -24px; right: 0; }
.q-dot {
  position: absolute;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.q-dot:hover { transform: translate(-50%, -50%) scale(1.08); }
.q-dot.competitor {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.q-dot.aldc {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: white;
  box-shadow: 0 0 20px rgba(99,102,241,0.4);
  font-size: 14px;
}
.q-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  width: 260px;
  white-space: normal;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 10;
  text-align: left;
}
.q-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}
.q-dot:hover .q-tooltip,
.q-dot.active .q-tooltip { display: block; }
/* Quadrant Dot Positions */
.q-dot-glean { left: 38%; bottom: 58%; }
.q-dot-copilot { left: 52%; bottom: 40%; }
.q-dot-chatgpt { left: 65%; bottom: 22%; }
.q-dot-aldc { left: 82%; bottom: 85%; }

.q-tooltip strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.q-tooltip p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.quadrant-notes {
  max-width: 480px;
  margin: 0 auto;
}
.quadrant-notes li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  padding-left: 8px;
  line-height: 1.6;
}

/* MARKET */
.market-section {
  padding: 80px 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.market-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}
.market-rings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}
.market-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ring-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--accent));
}
.ring-circle.tam { width: 140px; height: 140px; font-size: 28px; }
.ring-circle.sam { width: 110px; height: 110px; font-size: 24px; opacity: 0.85; }
.ring-circle.som { width: 80px; height: 80px; font-size: 20px; opacity: 0.7; }
.ring-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ring-desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 180px;
}
.market-target {
  font-size: 15px;
  color: var(--muted);
  margin-top: 16px;
}

/* BOTTOM LINE */
.bottomline-section {
  background: var(--surface);
  padding: 80px 64px;
}
.bottomline-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.bottomline-inner h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.bottomline-inner p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.bottomline-inner .highlight {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 80px 64px;
}
.cta-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-hero { padding: 48px 24px 40px; }
  .why-hero h1 { font-size: 32px; }
  .flywheel-intro { padding: 0 24px 40px; }
  .pipeline-section { padding: 48px 24px; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .strengths-section { padding: 48px 24px; }
  .strengths-grid { grid-template-columns: 1fr; }
  .quadrant-section { padding: 48px 24px; }
  .market-section { padding: 48px 24px; }
  .market-rings { flex-direction: column; gap: 24px; }
  .bottomline-section { padding: 48px 24px; }
  .cta-section { padding: 48px 24px; }
}
