:root {
  color-scheme: light dark;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: radial-gradient(circle at top, #1f1b45, #0d0c1d 60%);
  color: #f5f5f5;
}

.site-header {
  text-align: center;
  max-width: 720px;
}

.header-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #8f96ff;
}

.lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.cta {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: inherit;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  border-color: #ffffff;
}

.hero-media {
  margin: 3rem auto 0;
  max-width: 360px;
  filter: drop-shadow(0 20px 35px rgba(8, 5, 16, 0.6));
  border-radius: 1.5rem;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

section {
  margin-top: 3rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 1.5rem;
  border-radius: 1.25rem;
  max-width: 720px;
}

ol {
  padding-left: 1.25rem;
}

.contact-page {
  width: 100%;
  max-width: 720px;
}

.contact-form,
.contact-success {
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #8f96ff;
  border-color: transparent;
}

.contact-form button, .contact-success .button {
  margin-top: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #4c3cff, #8f96ff);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 150ms ease;
  width: fit-content;
  align-self: center;
  text-decoration: none;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

.error-banner {
  margin: 1rem 0;
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 99, 132, 0.6);
  background: rgba(255, 99, 132, 0.15);
  color: #ff9db1;
  font-weight: 600;
}

.contact-success blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid rgba(255, 255, 255, 0.4);
}

.muted {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.site-footer {
  width: 100%;
  max-width: 720px;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.footer-divider {
  border: none;
  height: 1px;
  width: 100%;
  margin: 0 0 1.5rem;
  background: rgba(255, 255, 255, 0.2);
}

.cta-inline-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-inline-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-inline-list a {
  color: inherit;
  text-decoration: none;
}

.cta-inline-list a:hover {
  color: #ffffff;
}

