/* Access, Downloads + Admin Pages */

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.downloads-heading {
  margin-bottom: 1.5rem;
}

.access-shell .lead {
  margin-bottom: 1.35rem;
}

.access-form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}

.access-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 700;
}

.access-form input[type="email"] {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(235, 201, 119, 0.26);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: rgba(10, 14, 18, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 28px rgba(0, 0, 0, 0.14);
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.access-form input[type="email"]::placeholder {
  color: rgba(244, 238, 228, 0.42);
}

.access-form input[type="email"]:focus {
  border-color: rgba(235, 201, 119, 0.78);
  background: rgba(13, 18, 23, 0.9);
  box-shadow:
    0 0 0 3px rgba(235, 201, 119, 0.16),
    0 14px 32px rgba(0, 0, 0, 0.18);
}

.access-form .button {
  width: fit-content;
}

.access-notice {
  position: relative;
  margin: 1.2rem 0 1.6rem;
  padding: 1rem 1.15rem 1rem 3rem;
  border-color: rgba(111, 191, 125, 0.34);
  color: #f4f8ef;
  background:
    linear-gradient(135deg, rgba(44, 112, 69, 0.22), rgba(20, 26, 33, 0.88)),
    var(--panel);
}

.access-notice::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: #75d68a;
  box-shadow: 0 0 0 0.35rem rgba(117, 214, 138, 0.14);
  transform: translateY(-50%);
}

.order-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.order-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.order-product h2 {
  margin-bottom: 0.35rem;
}

.order-product p {
  margin: 0.18rem 0;
}

.order-cover {
  width: 72px;
  aspect-ratio: 2 / 3;
  height: auto;
  flex: 0 0 auto;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(16, 12, 8, 0.24);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 15rem;
}

.filetype-icon {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 0.18rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(45, 30, 12, 0.18);
}

.compact {
  padding: 1rem 1.2rem;
}

.site-footer {
  margin-top: 2rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.microcopy {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .split-heading,
  .order-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-actions {
    width: 100%;
    justify-content: stretch;
  }

  .download-button {
    flex: 1 1 15rem;
    width: auto;
  }
}

