/* ==========================================
   CLEAN COHESIVE THEME FOR SUBPAGES ONLY
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::selection {
  background-color: #9333ea;
  color: #ffffff;
}
html {
  scroll-behavior: smooth;
  font-size: 18px;
}
body {
  background-color: #09090b;
  color: #f4f4f5;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* STRUCTURAL CONTAINER */
.max-w-7xl {
  max-width: 85rem;
  width: 100%;
  margin: 0 auto;
}
.max-w-3xl {
  max-width: 48rem;
  width: 100%;
  margin: 0 auto;
}
.flex-1 {
  flex: 1 1 0%;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, monospace;
}

/* SHARED HEADER & FOOTER STYLES */
header {
  border-bottom: 1px solid #1f1f23;
  background-color: rgba(24, 24, 27, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.5rem 2rem;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.logo-icon {
  background: linear-gradient(135deg, #9333ea, #ec4899);
  padding: 0.85rem;
  border-radius: 0.85rem;
  font-size: 1.75rem;
  font-weight: 900;
}
h1 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}
.subtitle {
  color: #f472b6;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

footer {
  border-top: 1px solid #18181b;
  background-color: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(4px);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 1rem;
  color: #71717a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}
footer a {
  color: #71717a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
footer a:hover {
  color: #c084fc;
}
.bullet {
  display: none;
  color: #27272a;
}

@media (min-width: 640px) {
  footer {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
  .bullet {
    display: inline;
  }
}

/* CONTENT LAYOUT & TYPOGRAPHY */
.content-wrapper {
  padding: 2.5rem 1.5rem;
}
@media (min-width: 1024px) {
  .content-wrapper {
    padding: 4rem 0;
  }
}
.page-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.last-updated {
  font-size: 0.85rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.prose h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #e4e4e7;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.prose p {
  color: #a1a1aa;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* NAVIGATION LINK */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover {
  color: #c084fc;
}

/* CONTACT FORM ELEMENTS */
.contact-form {
  background-color: #18181b;
  border: 1px solid #27272a;
  border-radius: 1.25rem;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.4);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.form-group input[type='text'],
.form-group input[type='email'],
.form-group textarea {
  width: 100%;
  background-color: #09090b;
  border: 1px solid #27272a;
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  color: #f4f4f5;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 1px #a855f7;
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
  font-weight: 500;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: linear-gradient(to right, #9333ea, #ec4899, #f97316);
  color: white;
  font-weight: 900;
  padding: 1.25rem;
  border-radius: 0.85rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 20px -3px rgba(236, 72, 153, 0.25);
  transition: filter 0.2s;
}
.btn:hover {
  filter: brightness(1.1);
}
