/* ── Nav active state ── */
.navbar .nav-active {
  color: #a78bfa;
}

/* ── Page layout ── */
.page-main {
  min-height: calc(100vh - 65px);
  padding-bottom: 80px;
}

.page-hero {
  text-align: center;
  padding: 80px 60px 48px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #0891b2);
  border-radius: 2px;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
}

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

/* ── Prose (privacy / eula) ── */
.prose-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prose-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.prose-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #a78bfa;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.prose-card ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prose-card ul li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.prose-card a {
  color: #38bdf8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.prose-card a:hover { color: #7dd3fc; }

/* ── Contact primary ── */
.contact-primary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  padding: 56px 40px;
  text-align: center;
  margin-bottom: 24px;
}

.contact-email-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-primary h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.contact-primary p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 32px;
}

.email-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.email-label-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(167,139,250,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.email-address {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.email-address:hover { color: #fff; }

/* ── Contact secondary ── */
.contact-secondary {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-secondary-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 22px;
}

.secondary-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }

.secondary-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(167,139,250,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.secondary-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.secondary-link {
  color: #38bdf8;
  transition: color 0.2s;
}

.secondary-link:hover { color: #7dd3fc; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-hero { padding: 60px 24px 40px; }
  .page-hero h1 { font-size: 2rem; }
  .prose-card { padding: 28px 20px; }
  .contact-card { max-width: 100%; }
}
