/* ═══════════════════════════════════════════════════
   SUBPAGES SPECIFIC LAYOUT STYLES
   ═══════════════════════════════════════════════════ */

.page-header {
  padding: 130px 0 40px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: var(--font-size-lead);
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 60px;
}

/* ═══════════════════════════════════════════════════
   ENTERPRISE PAGE STYLES
   ═══════════════════════════════════════════════════ */
.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 15px;
  color: var(--color-ink);
  outline: none;
  transition: border-color 0.15s ease;
}

.form-control:focus {
  border-color: var(--color-accent-mid);
  box-shadow: 0 0 0 3px rgba(233, 64, 87, 0.1);
}

.form-consent {
  font-size: 13px;
  color: var(--color-subtle);
  margin-top: 12px;
}

.form-consent a {
  color: var(--color-accent-mid);
  text-decoration: none;
}

/* Honeypot hidden input */
.hp-field {
  display: none !important;
}

/* ═══════════════════════════════════════════════════
   DOWNLOAD CENTER STYLES
   ═══════════════════════════════════════════════════ */
.download-hero-card {
  text-align: center;
  padding: 60px 32px;
}

.manifest-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-subtle);
  flex-wrap: wrap;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.spec-box {
  background: var(--color-bg);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.spec-label {
  font-size: 13px;
  color: var(--color-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.spec-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
}

.checksum-block {
  background: #0f172a;
  color: #e2e8f0;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 13px;
  word-break: break-all;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════
   RELEASE NOTES & SUPPORT STYLES
   ═══════════════════════════════════════════════════ */
.timeline-item {
  border-left: 2px solid var(--color-border);
  padding-left: 24px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent-mid);
}

.release-version {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-ink);
}

.release-date {
  font-size: 13.5px;
  color: var(--color-subtle);
  margin-bottom: 12px;
}

.release-changes {
  list-style: disc;
  margin-left: 20px;
  color: var(--color-muted);
  font-size: 15px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .enterprise-grid,
  .specs-grid {
    grid-template-columns: 1fr;
  }
}
