:root {
  --bg: #07111f;
  --panel: #0d1b2e;
  --text: #f5f7fb;
  --muted: #aab6c5;
  --accent: #64d2ff;
  --border: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #123456 0, var(--bg) 42%);
  color: var(--text);
}

.hero {
  min-height: 80vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin: .25rem 0;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin: .5rem 0;
}

.tagline {
  color: var(--muted);
  font-size: 1.25rem;
  margin: 1rem auto 2rem;
  max-width: 720px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #06101d;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.section {
  max-width: 1050px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: rgba(13, 27, 46, .9);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.5rem;
  font-weight: 800;
}

.compact-grid .card {
  min-height: 7rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.5rem;
}

.workflow-card {
  position: relative;
  min-height: 15rem;
  background: rgba(13, 27, 46, .9);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
  transition: border-color .18s ease, transform .18s ease, background-color .18s ease;
}

.workflow-card:hover {
  background: rgba(16, 35, 58, .95);
  border-color: rgba(100, 210, 255, .32);
  transform: translateY(-2px);
}

.workflow-step {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(100, 210, 255, .35);
  border-radius: 999px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
}

.workflow-card h3 {
  margin: 1rem 0 .75rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.workflow-card ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-card li {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}

.workflow-card li::before {
  content: "";
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-right: .5rem;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: .1rem;
}

.next-actions {
  margin-top: 1rem;
  background: rgba(13, 27, 46, .72);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}

.next-actions h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.next-actions ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-actions li {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.45;
}

.next-actions li::before {
  content: "";
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-right: .55rem;
  border: 1px solid rgba(100, 210, 255, .6);
  border-radius: 999px;
  vertical-align: .1rem;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.report-card {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(13, 27, 46, .9);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
}

.report-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.report-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.report-card .report-file {
  margin-top: .9rem;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: .78rem;
  overflow-wrap: anywhere;
}

.report-button {
  width: 100%;
  text-align: center;
}

footer {
  color: var(--muted);
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.shot-card {
  background: rgba(13, 27, 46, .9);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.shot-card img {
  width: 100%;
  display: block;
  cursor: zoom-in;
}

.shot-card p {
  padding: 1rem;
  margin: 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(3rem, 1fr) minmax(0, 1120px) minmax(3rem, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 4.5rem 1.25rem 2rem;
  background: rgba(3, 8, 15, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-content {
  grid-column: 2;
  margin: 0;
  max-height: calc(100vh - 7rem);
  display: grid;
  gap: .9rem;
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 10rem);
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(13, 27, 46, .95);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .5);
}

.lightbox-caption {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.lightbox button {
  border: 1px solid var(--border);
  background: rgba(13, 27, 46, .88);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  background: rgba(100, 210, 255, .18);
  border-color: rgba(100, 210, 255, .6);
}

.lightbox button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .75rem 1rem;
  border-radius: 999px;
}

.lightbox-nav {
  width: 4.25rem;
  min-height: 4.25rem;
  border-radius: 999px;
}

.lightbox-prev {
  grid-column: 1;
  justify-self: end;
}

.lightbox-next {
  grid-column: 3;
  justify-self: start;
}

@media (max-width: 980px) {
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .workflow-card {
    min-height: auto;
  }

  .next-actions ul {
    grid-template-columns: 1fr;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    padding: 4.5rem 1rem 1.25rem;
  }

  .lightbox-content {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox-image {
    max-height: calc(100vh - 12rem);
    border-radius: .75rem;
  }

  .lightbox-nav {
    grid-row: 2;
    width: 100%;
    min-height: 3rem;
  }

  .lightbox-prev,
  .lightbox-next {
    justify-self: stretch;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }
}

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

  .report-card {
    min-height: auto;
  }
}

.support-section {
  padding: 4rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.support-section .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
