/* Satellite & EO Data capability page. Tokens only — no raw hex. */

/* Section rhythm */
.eo-section {
  padding-block: var(--space-6);
}

/* Hero */
.eo-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(64vh, 560px);
  color: var(--color-on-primary);
  overflow: hidden;
}

.eo-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eo-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--color-primary) 88%, transparent),
    color-mix(in srgb, var(--color-primary) 40%, transparent)
  );
}

.eo-hero__content {
  position: relative;
  padding-block: var(--space-7);
}

.eo-hero__content h1 {
  color: var(--color-on-primary);
  max-width: 16ch;
}

.eo-hero .eyebrow {
  color: var(--color-on-primary);
  opacity: 0.85;
}

.eo-hero__sub {
  font-size: var(--text-md);
  max-width: 52ch;
  margin-bottom: var(--space-4);
}

/* Overview band */
.eo-overview {
  background: var(--color-surface-alt);
}

.eo-overview .section-header {
  margin-bottom: 0;
  max-width: 54rem;
}

/* Alternating feature blocks */
.eo-feature {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.eo-feature + .eo-feature {
  margin-top: var(--space-7);
}

.eo-feature img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
}

@media (min-width: 800px) {
  .eo-feature {
    grid-template-columns: 1fr 1fr;
  }

  /* Alternate: even blocks put the image on the right */
  .eo-feature--reverse img {
    order: 2;
  }

  .eo-feature--reverse .eo-feature__copy {
    order: 1;
  }
}

.eo-feature__copy h2 {
  font-size: var(--text-lg);
}

/* Tier comparison table */
.eo-tiers {
  background: var(--color-surface-alt);
}

.eo-tiers__scroll {
  overflow-x: auto;
}

.eo-tiers__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.eo-tiers__table caption {
  text-align: left;
  font-size: var(--text-sm);
  color: var(--color-ink);
  opacity: 0.75;
  padding-block: var(--space-2);
  caption-side: bottom;
}

.eo-tiers__table th,
.eo-tiers__table td {
  padding: var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.eo-tiers__table thead th {
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eo-tiers__table tbody th {
  color: var(--color-ink-strong);
}

.eo-tiers__table tbody tr:last-child th,
.eo-tiers__table tbody tr:last-child td {
  border-bottom: 0;
}

.eo-tiers__table tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--color-surface-alt) 55%, var(--color-surface));
}

/* Pull quote */
.eo-quote {
  margin: 0 auto;
  max-width: 46rem;
  border-left: 4px solid var(--color-accent-green);
  padding-left: var(--space-4);
}

.eo-quote blockquote {
  margin: 0;
}

.eo-quote blockquote p {
  font-size: var(--text-md);
  color: var(--color-ink-strong);
  line-height: 1.5;
}

.eo-quote__attribution {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-ink);
  opacity: 0.75;
}

/* Closing CTA band */
.eo-cta {
  background: var(--color-surface-alt);
  text-align: center;
  padding-block: var(--space-7);
}

.eo-cta__lede {
  margin-inline: auto;
  margin-bottom: var(--space-4);
  max-width: 52ch;
}
